Skip to content

Commit

Permalink
Merge pull request #188 from jwillemsen/jwi-ccflags
Browse files Browse the repository at this point in the history
Move ccflags into the compiler specific area
  • Loading branch information
jwillemsen authored Sep 19, 2023
2 parents 2b85184 + fb58ab6 commit 2009412
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion templates/bmakecommon.mpt
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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 {
Expand All @@ -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 {
Expand All @@ -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 {
Expand All @@ -88,4 +90,5 @@ startup_bits = 64
link = ilink64
common_libs = ws2_32$(LIB_EXT) import64$(LIB_EXT) cw64mti$(LIB_EXT)
tlib = tlib64
ccflags =
}

0 comments on commit 2009412

Please sign in to comment.