Commit 69b61b90 authored by Paul's avatar Paul
Browse files

Add no fallback to cxx flags

parent 55a1735c
...@@ -6,7 +6,7 @@ def rocmtestnode(variant, name, body) { ...@@ -6,7 +6,7 @@ def rocmtestnode(variant, name, body) {
rm -rf build rm -rf build
mkdir build mkdir build
cd build cd build
CXX=${compiler} CXXFLAGS='-Werror' cmake -DCMAKE_CXX_FLAGS_DEBUG='-g -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=undefined' ${flags} .. CXX=${compiler} CXXFLAGS='-Werror -Wno-fallback' cmake -DCMAKE_CXX_FLAGS_DEBUG='-g -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=undefined' ${flags} ..
CTEST_PARALLEL_LEVEL=32 make -j32 all doc check CTEST_PARALLEL_LEVEL=32 make -j32 all doc check
""" """
echo cmd echo cmd
......
...@@ -77,7 +77,6 @@ else() ...@@ -77,7 +77,6 @@ else()
-Wno-double-promotion -Wno-double-promotion
-Wno-exit-time-destructors -Wno-exit-time-destructors
-Wno-extra-semi -Wno-extra-semi
-Wno-fallback
-Wno-float-conversion -Wno-float-conversion
-Wno-gnu-anonymous-struct -Wno-gnu-anonymous-struct
-Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-zero-variadic-macro-arguments
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment