We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e6da5e commit d19af87Copy full SHA for d19af87
1 file changed
CMakeLists.txt
@@ -13,6 +13,11 @@ set(OpenBLAS_PATCH_VERSION 30.dev)
13
14
set(OpenBLAS_VERSION "${OpenBLAS_MAJOR_VERSION}.${OpenBLAS_MINOR_VERSION}.${OpenBLAS_PATCH_VERSION}")
15
16
+# A known problem of OpenBLAS.
17
+# It can not be built with -O0 optimization level.
18
+# https://stackoverflow.com/questions/63023087/inline-asm-fails-to-compile-without-optimization?utm_source=chatgpt.com
19
+add_compile_options(-Wno-everything -O3)
20
+
21
# Adhere to GNU filesystem layout conventions
22
include(GNUInstallDirs)
23
0 commit comments