aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarat Dukhan <marat@fb.com>2018-11-16 15:32:42 -0800
committerMarat Dukhan <marat@fb.com>2018-11-16 15:32:42 -0800
commitb742d1143724d646cd0f914646f1240eacf5bd73 (patch)
treef38ed41acdaac6ce8a75fa78c3590844fa30c61a
parent811b482bcd9e8d98ad80c6c78d5302bb830184b0 (diff)
downloadFXdiv-b742d1143724d646cd0f914646f1240eacf5bd73.tar.gz
Disable inline assembly by default
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 19a4453..9c90bdd 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -8,7 +8,7 @@ PROJECT(FXdiv C CXX)
# ---[ Options.
OPTION(FXDIV_BUILD_TESTS "Build FXdiv unit tests" ON)
OPTION(FXDIV_BUILD_BENCHMARKS "Build FXdiv micro-benchmarks" ON)
-OPTION(FXDIV_USE_INLINE_ASSEMBLY "Allow use of inline assembly in FXdiv" ON)
+OPTION(FXDIV_USE_INLINE_ASSEMBLY "Allow use of inline assembly in FXdiv" OFF)
# ---[ CMake options
IF(FXDIV_BUILD_TESTS)