disable DEBUG symbols for emscripten build

gitlab-maven
Benjamin Kampmann 2021-11-23 18:26:21 +01:00 committed by Hubert Chathi
parent 6f59e16b58
commit 336e1d56a8
1 changed files with 2 additions and 2 deletions

View File

@ -108,8 +108,8 @@ EMCCFLAGS_WASM += -s TOTAL_STACK=65536 -s TOTAL_MEMORY=262144
EMCCFLAGS_ASMJS += -s WASM=0
EMCC.c = $(EMCC) $(CFLAGS) $(CPPFLAGS) -c
EMCC.cc = $(EMCC) $(CXXFLAGS) $(CPPFLAGS) -c
EMCC.c = $(EMCC) $(CFLAGS) $(CPPFLAGS) -c -DNDEBUG
EMCC.cc = $(EMCC) $(CXXFLAGS) $(CPPFLAGS) -c -DNDEBUG
EMCC_LINK = $(EMCC) $(LDFLAGS) $(EMCCFLAGS)
AFL_CC = afl-clang-fast