[Openmp-commits] [openmp] r248200 - libomp on NetBSD needs libc, libpthread and libm.
Joerg Sonnenberger via Openmp-commits
openmp-commits at lists.llvm.org
Mon Sep 21 12:40:59 PDT 2015
Author: joerg
Date: Mon Sep 21 14:40:59 2015
New Revision: 248200
URL: http://llvm.org/viewvc/llvm-project?rev=248200&view=rev
Log:
libomp on NetBSD needs libc, libpthread and libm.
Modified:
openmp/trunk/runtime/cmake/LibompMicroTests.cmake
Modified: openmp/trunk/runtime/cmake/LibompMicroTests.cmake
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/cmake/LibompMicroTests.cmake?rev=248200&r1=248199&r2=248200&view=diff
==============================================================================
--- openmp/trunk/runtime/cmake/LibompMicroTests.cmake (original)
+++ openmp/trunk/runtime/cmake/LibompMicroTests.cmake Mon Sep 21 14:40:59 2015
@@ -169,6 +169,8 @@ add_custom_target(libomp-test-deps DEPEN
set(libomp_expected_library_deps)
if(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
set(libomp_expected_library_deps libc.so.7 libthr.so.3)
+elseif(CMAKE_SYSTEM_NAME MATCHES "NetBSD")
+ set(libomp_expected_library_deps libc.so.12 libpthread.so.1 libm.so.0)
elseif(APPLE)
set(libomp_expected_library_deps /usr/lib/libSystem.B.dylib)
elseif(WIN32)
More information about the Openmp-commits
mailing list