File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ OPTIMIZE_CFLAGS = <%optimize_flags%>
1313DEBUG_CFLAGS = <%debug_flags%>
1414RELEASE_CFLAGS = <%release_flags%>
1515CC_CFLAGS = <%ccflags%>
16+ STACK_LFLAG = <%stack_flag%>
1617WARN_FLAGS = <%warn_flags%>
1718BINARY_FLAGS = <%binary_flags%>
1819THREAD_FLAGS = <%thr_flags%>
@@ -136,7 +137,7 @@ LFLAGS = \
136137 <%linkflags%> \
137138<%endif%>
138139<%if(StackReserveSize)%>
139- /S: <%StackReserveSize%> \
140+ $(STACK_LFLAG) <%StackReserveSize%> \
140141<%endif%>
141142<%if(StackCommitSize)%>
142143 /Sc:<%StackCommitSize%> \
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ debug_flags = -v -y -Od -vi- -k
1919release_flags =
2020optimize_flags = -O1
2121warn_flags = -w-rvl -w-rch -w-ccc -w-obs -w-aus -w-pia -w-inl -w-mls
22+ stack_flag = /S:
2223cc = bcc32
2324thr_flags = -tWM
2425binary_flags = -tWR -tWD
@@ -45,6 +46,7 @@ debug_flags = -Od -vi-
4546release_flags =
4647optimize_flags = -O3
4748warn_flags =
49+ stack_flag = /S:
4850cc = bcc32c
4951binary_flags = -tR -tD
5052thr_flags = -tM
@@ -70,6 +72,7 @@ debug_flags = -g -O0
7072release_flags =
7173optimize_flags = -O3
7274warn_flags =
75+ stack_flag = /S:
7376cc = bcc64
7477binary_flags = -tR -tD
7578thr_flags = -tM
@@ -95,6 +98,7 @@ debug_flags = -g -O0
9598release_flags = -Wno-ignored-attributes
9699optimize_flags = -O3
97100warn_flags =
101+ stack_flag = --stack=
98102cc = bcc64x
99103binary_flags = -tR -tD
100104thr_flags = -tM
You can’t perform that action at this time.
0 commit comments