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
When using ubsan: -fsanitize=undefined, the final build of cryptofuzz fails due to a linker failure. The workaround that has solved this for me is to manually link with -lubsan. However, this is not the recommended action
When taking the recommended approach (linking with Wl,-fsanitize=undefined) I see runtime errors, so I just wanted to share what's worked for me in case others also encounter it.
The text was updated successfully, but these errors were encountered:
Can I checking if the command to enter is
export CFLAGS="-fsanitize=address,fuzzer-no-link -O2 -g -lubsan" and
export CXXFLAGS="-fsanitize=address,fuzzer-no-link -D_GLIBCXX_DEBUG -O2 -g -lubsan"?
I have used this command but the modules cannot be compiled
When using ubsan:
-fsanitize=undefined
, the final build of cryptofuzz fails due to a linker failure. The workaround that has solved this for me is to manually link with-lubsan
. However, this is not the recommended actionWhen taking the recommended approach (linking with
Wl,-fsanitize=undefined
) I see runtime errors, so I just wanted to share what's worked for me in case others also encounter it.The text was updated successfully, but these errors were encountered: