From db9e62aa52fe611d28a168ebbce4c454e349830c Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Sat, 26 Aug 2017 10:10:38 +0200 Subject: test/: add a CCOMPOPTS make variable to pass additional compile-time flags E.g. "-Os" for testing in "optimize for size" mode, or "-mthumb" for testing ARM in Thumb2 mode. --- test/regression/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/regression') diff --git a/test/regression/Makefile b/test/regression/Makefile index 25b47c7e..fd34bb1b 100644 --- a/test/regression/Makefile +++ b/test/regression/Makefile @@ -1,7 +1,7 @@ include ../../Makefile.config CCOMP=../../ccomp -CCOMPFLAGS=-stdlib ../../runtime -dparse -dc -dclight -dasm -fall +CCOMPFLAGS=$(CCOMPOPTS) -stdlib ../../runtime -dparse -dc -dclight -dasm -fall LIBS=$(LIBMATH) -- cgit