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
Downstream projects may include libsecp test executables in their test
suites. In such cases, if a `-fsanitize=...` flag is passed via the
`SECP256K1_APPEND_CFLAGS` variable, the same flag must also be passed to
the linker.
set(SECP256K1_APPEND_LDFLAGS ""CACHESTRING"Linker 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.")
280
+
if(SECP256K1_APPEND_LDFLAGS)
281
+
# Appending to this low-level rule variable is the only way to
282
+
# guarantee that the flags appear at the end of the command line.
0 commit comments