From 3095eef6230e0c871917a4b63701c7d03d939d42 Mon Sep 17 00:00:00 2001 From: Peter Colberg Date: Thu, 12 Nov 2015 22:37:28 -0500 Subject: [PATCH] Add make variable NOOPT to disable optimization flags This is used by Debian to build an unoptimized variant for debugging. --- Make.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Make.inc b/Make.inc index 030f2d7..9609331 100644 --- a/Make.inc +++ b/Make.inc @@ -45,7 +45,11 @@ ifeq ($(ARCH),mingw32) $(error "the mingw32 compiler you are using fails the openblas testsuite. please see the Julia README.windows.md document for a replacement") endif -CFLAGS_add += -std=c99 -Wall -O3 -I$(OPENLIBM_HOME) -I$(OPENLIBM_HOME)/include -I$(OPENLIBM_HOME)/ld80 -I$(OPENLIBM_HOME)/$(ARCH) -I$(OPENLIBM_HOME)/src -DASSEMBLER -D__BSD_VISIBLE -Wno-implicit-function-declaration +CFLAGS_add += -std=c99 -Wall -I$(OPENLIBM_HOME) -I$(OPENLIBM_HOME)/include -I$(OPENLIBM_HOME)/ld80 -I$(OPENLIBM_HOME)/$(ARCH) -I$(OPENLIBM_HOME)/src -DASSEMBLER -D__BSD_VISIBLE -Wno-implicit-function-declaration + +ifneq ($(NOOPT),1) +CFLAGS_add += -O3 +endif default: all