summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-02-15 09:06:09 -0800
committerGitHub <noreply@github.com>2017-02-15 09:06:09 -0800
commite077c23cc9e7deb2c6b9733da08e7455d05859c4 (patch)
tree579a276e8d36a8637f099ea815f27b376626f5a1 /Makefile
parentae1782d3c6e024c56e12cc405cb19645520a59b1 (diff)
downloadwabt-e077c23cc9e7deb2c6b9733da08e7455d05859c4.tar.gz
wabt-e077c23cc9e7deb2c6b9733da08e7455d05859c4.tar.bz2
wabt-e077c23cc9e7deb2c6b9733da08e7455d05859c4.zip
add gcc-debug-cov code coverage build (#303)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9b67450d..da60a7ec 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,7 @@ DEFAULT_BUILD_TYPE = DEBUG
COMPILERS := GCC GCC_I686 GCC_FUZZ CLANG EMSCRIPTEN
BUILD_TYPES := DEBUG RELEASE
SANITIZERS := ASAN MSAN LSAN UBSAN
-CONFIGS := NORMAL $(SANITIZERS) NO_RE2C_BISON NO_TESTS
+CONFIGS := NORMAL $(SANITIZERS) COV NO_RE2C_BISON NO_TESTS
EXECUTABLES := wast2wasm wasm2wast wasm-interp wasmopcodecnt hexfloat_test \
wasmdump wast-desugar wasm-link
@@ -49,6 +49,7 @@ MSAN_DIR := msan/
LSAN_DIR := lsan/
UBSAN_DIR := ubsan/
NO_RE2C_BISON_DIR := no-re2c-bison/
+COV_DIR := cov/
NO_TESTS_DIR := no-tests/
# CMake flags
@@ -65,6 +66,7 @@ ASAN_FLAG := -DUSE_ASAN=ON
MSAN_FLAG := -DUSE_MSAN=ON
LSAN_FLAG := -DUSE_LSAN=ON
UBSAN_FLAG := -DUSE_UBSAN=ON
+COV_FLAG := -DCODE_COVERAGE=ON
NO_RE2C_BISON_FLAG := -DRUN_BISON=OFF -DRUN_RE2C=OFF
NO_TESTS_FLAG := -DBUILD_TESTS=OFF
@@ -81,6 +83,7 @@ ASAN_PREFIX := -asan
MSAN_PREFIX := -msan
LSAN_PREFIX := -lsan
UBSAN_PREFIX := -ubsan
+COV_PREFIX := -cov
NO_RE2C_BISON_PREFIX := -no-re2c-bison
NO_TESTS_PREFIX := -no-tests