From 8b9279c640797e27509d5ccd06862e3d7aceb29d Mon Sep 17 00:00:00 2001 From: xiaosuGW Date: Tue, 29 Jun 2021 10:53:20 -0500 Subject: [PATCH] add -O0 and -g options for compiling functions --- runtime/tests/Makefile.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/tests/Makefile.inc b/runtime/tests/Makefile.inc index c5b87ed..c2a879f 100644 --- a/runtime/tests/Makefile.inc +++ b/runtime/tests/Makefile.inc @@ -4,6 +4,7 @@ CC=clang # Source -> Native WASMCC=wasm32-unknown-unknown-wasm-clang # Source -> WebAssembly OPTFLAGS=-O3 -flto +# OPTFLAGS=-O0 -flto -g MEMC_64=64bit_nix.c # MEMC_NO=no_protection.c # MEMC_GEN=generic.c