We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc69353 commit 78437a1Copy full SHA for 78437a1
regression/cbmc-concurrency/CMakeLists.txt
@@ -1,4 +1,4 @@
1
-if(NOT WIN32)
+if((NOT WIN32) AND (NOT APPLE))
2
add_test_pl_tests(
3
"$<TARGET_FILE:cbmc>"
4
)
regression/cbmc-concurrency/Makefile
@@ -3,7 +3,9 @@ default: tests.log
include ../../src/config.inc
include ../../src/common
5
6
-ifeq ($(BUILD_ENV_),MSVC)
+ifeq ($(filter-out OSX MSVC,$(BUILD_ENV_)),)
7
+ # no POSIX threads on Windows
8
+ # for OSX we'd need sound handling of pointers in multi-threaded programs
9
no_pthread = -X pthread
10
endif
11
0 commit comments