From bcc352a90d6340c4b00dbd24b39d045e34300415 Mon Sep 17 00:00:00 2001 From: Jeongseok Lee Date: Sun, 24 Mar 2024 22:03:59 -0700 Subject: [PATCH] [simd] Enable SIMD by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 867eaf80863ea..cf7846579e04c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -85,7 +85,7 @@ endif() # compile options, which may cause runtime errors especially memory alignment # errors. dart_option(DART_ENABLE_SIMD - "Build DART with all SIMD instructions on the current local machine" OFF) + "Build DART with all SIMD instructions on the current local machine" ON) dart_option(DART_BUILD_GUI_OSG "Build osgDart library" ON) dart_option(DART_BUILD_DARTPY "Build dartpy" ON) dart_option(DART_CODECOV "Turn on codecov support" OFF)