From: Martin Kroeker Date: Wed, 13 Jan 2021 21:36:04 +0000 (+0100) Subject: Make compile-time BUFFERSIZE setting actually reach the compiler/preprocessor X-Git-Tag: upstream/0.3.21~21^2~50^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6bbe6d5b9203c92394463b8a96fd4995db73d9f4;p=platform%2Fupstream%2Fopenblas.git Make compile-time BUFFERSIZE setting actually reach the compiler/preprocessor --- diff --git a/Makefile.system b/Makefile.system index ca0879f..abc2c3d 100644 --- a/Makefile.system +++ b/Makefile.system @@ -1279,6 +1279,10 @@ CCOMMON_OPT += -DUSE_PAPI EXTRALIB += -lpapi -lperfctr endif +ifdef BUFFERSIZE +CCOMMON_OPT += -DBUFFERSIZE=$(BUFFERSIZE) +endif + ifdef DYNAMIC_THREADS CCOMMON_OPT += -DDYNAMIC_THREADS endif