summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index f5f4fdff0..003e1b324 100755
--- a/build.sh
+++ b/build.sh
@@ -36,6 +36,7 @@ NSS build tool options:
--test ignore map files and export everything we have
--fuzz enable fuzzing mode. this always enables test builds
--pprof build with gperftool support
+ --ct-verif build with valgrind for ct-verif
--scan-build run the build with scan-build (scan-build has to be in the path)
--scan-build=/out/path sets the output path for scan-build
--asan do an asan build
@@ -103,6 +104,7 @@ while [ $# -gt 0 ]; do
--sancov) enable_sancov ;;
--sancov=?*) enable_sancov "${1#*=}" ;;
--pprof) gyp_params+=(-Duse_pprof=1) ;;
+ --ct-verif) gyp_params+=(-Dct_verif=1) ;;
*) show_help; exit 2 ;;
esac
shift