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%>
13
13
DEBUG_CFLAGS = <%debug_flags%>
14
14
RELEASE_CFLAGS = <%release_flags%>
15
15
CC_CFLAGS = <%ccflags%>
16
+ STACK_LFLAG = <%stack_flag%>
16
17
WARN_FLAGS = <%warn_flags%>
17
18
BINARY_FLAGS = <%binary_flags%>
18
19
THREAD_FLAGS = <%thr_flags%>
@@ -136,7 +137,7 @@ LFLAGS = \
136
137
<%linkflags%> \
137
138
<%endif%>
138
139
<%if(StackReserveSize)%>
139
- /S: <%StackReserveSize%> \
140
+ $(STACK_LFLAG) <%StackReserveSize%> \
140
141
<%endif%>
141
142
<%if(StackCommitSize)%>
142
143
/Sc:<%StackCommitSize%> \
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ debug_flags = -v -y -Od -vi- -k
19
19
release_flags =
20
20
optimize_flags = -O1
21
21
warn_flags = -w-rvl -w-rch -w-ccc -w-obs -w-aus -w-pia -w-inl -w-mls
22
+ stack_flag = /S:
22
23
cc = bcc32
23
24
thr_flags = -tWM
24
25
binary_flags = -tWR -tWD
@@ -45,6 +46,7 @@ debug_flags = -Od -vi-
45
46
release_flags =
46
47
optimize_flags = -O3
47
48
warn_flags =
49
+ stack_flag = /S:
48
50
cc = bcc32c
49
51
binary_flags = -tR -tD
50
52
thr_flags = -tM
@@ -70,6 +72,7 @@ debug_flags = -g -O0
70
72
release_flags =
71
73
optimize_flags = -O3
72
74
warn_flags =
75
+ stack_flag = /S:
73
76
cc = bcc64
74
77
binary_flags = -tR -tD
75
78
thr_flags = -tM
@@ -95,6 +98,7 @@ debug_flags = -g -O0
95
98
release_flags = -Wno-ignored-attributes
96
99
optimize_flags = -O3
97
100
warn_flags =
101
+ stack_flag = --stack=
98
102
cc = bcc64x
99
103
binary_flags = -tR -tD
100
104
thr_flags = -tM
You can’t perform that action at this time.
0 commit comments