You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Prepend default optimization level to COMMON_OPTs.
113
+
# These flags might be overridden by cmake's default flags.
114
+
if (CMAKE_BUILD_TYPEEQUAL"DEBUG")
115
+
set(COMMON_OPT "-Og ${COMMON_OPT}")
116
+
set(CCOMMON_OPT "-Og ${CCOMMON_OPT}")
117
+
set(FCOMMON_OPT "-Og ${FCOMMON_OPT}")
118
+
else ()
119
+
set(COMMON_OPT "-O2 ${COMMON_OPT}")
120
+
set(CCOMMON_OPT "-O2 ${CCOMMON_OPT}")
121
+
set(FCOMMON_OPT "-O2 ${FCOMMON_OPT}")
122
+
endif ()
123
+
endif ()
124
+
endif ()
125
+
90
126
message(WARNING "CMake support is experimental. It does not yet support all build options and may not produce the same Makefiles that OpenBLAS ships with.")
0 commit comments