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 10
10
!ifdef <%normalize(uc(compiler))%>
11
11
CC = <%cc%>
12
12
OPTIMIZE_CFLAGS = <%optimize_flags%>
13
+ PDB_FLAGS = <%pdb_flags%>
13
14
DEBUG_CFLAGS = <%debug_flags%>
14
15
RELEASE_CFLAGS = <%release_flags%>
15
16
CC_CFLAGS = <%ccflags%>
@@ -129,7 +130,7 @@ OBJFILES = \
129
130
LFLAGS = \
130
131
$(LINKER_PATHS) \
131
132
<%if(debug_prj)%>
132
- -v \
133
+ -v $(PDB_FLAGS) \
133
134
-r \
134
135
<%endif%>
135
136
<%if(linkflags)%>
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ bcc32 {
18
18
debug_flags = -v -y -Od -vi- -k
19
19
release_flags =
20
20
optimize_flags = -O1
21
+ pdb_flags =
21
22
warn_flags = -w-rvl -w-rch -w-ccc -w-obs -w-aus -w-pia -w-inl -w-mls
22
23
cc = bcc32
23
24
thr_flags = -tWM
@@ -44,6 +45,7 @@ bcc32c {
44
45
debug_flags = -Od -vi-
45
46
release_flags =
46
47
optimize_flags = -O3
48
+ pdb_flags =
47
49
warn_flags =
48
50
cc = bcc32c
49
51
binary_flags = -tR -tD
@@ -69,6 +71,7 @@ bcc64 {
69
71
debug_flags = -g -O0
70
72
release_flags =
71
73
optimize_flags = -O3
74
+ pdb_flags =
72
75
warn_flags =
73
76
cc = bcc64
74
77
binary_flags = -tR -tD
@@ -94,6 +97,7 @@ bcc64x {
94
97
debug_flags = -g -O0
95
98
release_flags = -Wno-ignored-attributes
96
99
optimize_flags = -O3
100
+ pdb_flags = -pdb $(OUTPUTDIR)$(NAME).pdb
97
101
warn_flags =
98
102
cc = bcc64x
99
103
binary_flags = -tR -tD
You can’t perform that action at this time.
0 commit comments