From fb58ab60220a9cc24892e137512ea64cb0c34a6b Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Tue, 19 Sep 2023 09:10:05 +0200 Subject: [PATCH] Move ccflags into the compiler specific area * templates/bmakecommon.mpt: --- templates/bmakecommon.mpt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/bmakecommon.mpt b/templates/bmakecommon.mpt index e0a0077b..4f11cb8b 100644 --- a/templates/bmakecommon.mpt +++ b/templates/bmakecommon.mpt @@ -14,7 +14,6 @@ exe_ext = .exe rc = brcc32 dllflags = -Tpd -Gi -x -Gn -w-dup libflags = /C -ccflags = -q exeflags = -Tpe -x -Gn bcc32 { @@ -34,6 +33,7 @@ link = ilink32 common_libs = ws2_32$(LIB_EXT) import32$(LIB_EXT) cw32mti$(LIB_EXT) $(CG_LIB) tlib = tlib pch = 1 +ccflags = -q } bcc32c { @@ -52,6 +52,7 @@ startup_bits = 32 link = ilink32 common_libs = ws2_32$(LIB_EXT) import32$(LIB_EXT) cw32mti$(LIB_EXT) tlib = tlib +ccflags = -q } bcc64 { @@ -70,6 +71,7 @@ startup_bits = 64 link = ilink64 common_libs = ws2_32$(LIB_EXT) import64$(LIB_EXT) cw64mti$(LIB_EXT) tlib = tlib64 +ccflags = -q } bcc64x { @@ -88,4 +90,5 @@ startup_bits = 64 link = ilink64 common_libs = ws2_32$(LIB_EXT) import64$(LIB_EXT) cw64mti$(LIB_EXT) tlib = tlib64 +ccflags = }