summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorTim Taubert <ttaubert@mozilla.com>2017-01-16 09:20:28 +0100
committerTim Taubert <ttaubert@mozilla.com>2017-01-16 09:20:28 +0100
commit4f26a6ed2034b9a6e24954444019254411912ad5 (patch)
treebc0da72cbd0ea91efe59fedd2910bf144370866b /build.sh
parent7a70f1b67f1c9b24de6190b70b4cb3141cd6aede (diff)
downloadnss-hg-4f26a6ed2034b9a6e24954444019254411912ad5.tar.gz
Bug 1330944 - GYP: Don't require Valgrind (ct_verif) for -Dtest_build=1 r=mt
Differential Revision: https://nss-review.dev.mozaws.net/D149
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