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 running ubsan, there is an error reported in the fadd.opt unit test.
I only see this when using clang++ as the compiler and with the -fno-sanitize-recover=undefined flag added. Using g++ with the same CXXFLAGS does not seem to show the error.
I noticed that https://github.com/regehr/alive2/blob/master/.github/workflows/build.yml is meant to run the tests with sanitizers, but I think that the environment variables should be named CXX and CXXFLAGS instead of their CMAKE_ versions. Also, -fno-sanitize-recover is needed, otherwise it only prints the violation and continues the program.
The text was updated successfully, but these errors were encountered:
When running ubsan, there is an error reported in the fadd.opt unit test.
I only see this when using clang++ as the compiler and with the
-fno-sanitize-recover=undefined
flag added. Using g++ with the same CXXFLAGS does not seem to show the error.This is 332cbac and clang version:
I noticed that https://github.com/regehr/alive2/blob/master/.github/workflows/build.yml is meant to run the tests with sanitizers, but I think that the environment variables should be named CXX and CXXFLAGS instead of their CMAKE_ versions. Also, -fno-sanitize-recover is needed, otherwise it only prints the violation and continues the program.
The text was updated successfully, but these errors were encountered: