aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2023-04-25 11:47:02 +0200
committerTheo Buehler <tb@openbsd.org>2023-04-25 12:43:20 +0200
commit94763de52b947fbf7a6360f9dfc1e7b3363a9492 (patch)
tree63237b7e1f1cb4060bfee7e776e67ba95cf9852f /CMakeLists.txt
parent250713b30dfe57aeb97864e2ef843efe4310932a (diff)
downloadportable-94763de52b947fbf7a6360f9dfc1e7b3363a9492.tar.gz
portable-94763de52b947fbf7a6360f9dfc1e7b3363a9492.tar.bz2
portable-94763de52b947fbf7a6360f9dfc1e7b3363a9492.zip
Disable assembly on macos for now
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7847830..e05221c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -344,7 +344,7 @@ if(ENABLE_ASM)
344 endif() 344 endif()
345 add_definitions(-DHAVE_GNU_STACK) 345 add_definitions(-DHAVE_GNU_STACK)
346 elseif(APPLE AND "${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64") 346 elseif(APPLE AND "${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64")
347 set(HOST_ASM_MACOSX_X86_64 true) 347 set(ENABLE_ASM false)
348 elseif(MSVC AND ("${CMAKE_GENERATOR}" MATCHES "Win64" OR "${CMAKE_GENERATOR_PLATFORM}" STREQUAL "x64")) 348 elseif(MSVC AND ("${CMAKE_GENERATOR}" MATCHES "Win64" OR "${CMAKE_GENERATOR_PLATFORM}" STREQUAL "x64"))
349 set(HOST_ASM_MASM_X86_64 true) 349 set(HOST_ASM_MASM_X86_64 true)
350 ENABLE_LANGUAGE(ASM_MASM) 350 ENABLE_LANGUAGE(ASM_MASM)