We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ea4ab0 commit a8def79Copy full SHA for a8def79
projects/fast-dds/build.sh
@@ -47,6 +47,8 @@ cmake --build . --target install
47
)
48
49
# build project
50
+export CFLAGS="${CFLAGS} -Wno-error=nonnull"
51
+export CXXFLAGS="${CXXFLAGS} -Wno-error=nonnull"
52
mkdir build && cd build
53
cmake .. -DBUILD_SHARED_LIBS=OFF
54
make -j $(nproc)
@@ -58,4 +60,4 @@ done
58
60
59
61
find fuzz/ -type d -name 'fuzz_*_seed_corpus' | while read corpus_dir; do
62
zip -j $OUT/$(basename "$corpus_dir").zip $corpus_dir/*
-done
63
+done
0 commit comments