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
Copy file name to clipboardExpand all lines: CMakeLists.txt
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -284,14 +284,16 @@ if(SECP256K1_BUILD_BENCHMARK OR SECP256K1_BUILD_TESTS OR SECP256K1_BUILD_EXHAUST
284
284
enable_testing()
285
285
endif()
286
286
287
-
set(SECP256K1_APPEND_CFLAGS""CACHESTRING"Compiler flags that are added to the command line after all other flags added by the build system.")
288
-
include(AllTargetsCompileOptions)
287
+
set(SECP256K1_APPEND_CFLAGS""CACHESTRING"Compiler flags that are appended to the command line after all other flags added by the build system. This variable is intended for debugging and special builds.")
288
+
if(SECP256K1_APPEND_CFLAGS)
289
+
# Appending to this low-level rule variable is the only way to
290
+
# guarantee that the flags appear at the end of the command line.
0 commit comments