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 1010!ifdef <%normalize(uc(compiler))%>
1111CC = <%cc%>
1212OPTIMIZE_CFLAGS = <%optimize_flags%>
13+ PDB_FLAGS = <%pdb_flags%>
1314DEBUG_CFLAGS = <%debug_flags%>
1415RELEASE_CFLAGS = <%release_flags%>
1516CC_CFLAGS = <%ccflags%>
@@ -129,7 +130,7 @@ OBJFILES = \
129130LFLAGS = \
130131 $(LINKER_PATHS) \
131132<%if(debug_prj)%>
132- -v \
133+ -v $(PDB_FLAGS) \
133134 -r \
134135<%endif%>
135136<%if(linkflags)%>
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ bcc32 {
1818debug_flags = -v -y -Od -vi- -k
1919release_flags =
2020optimize_flags = -O1
21+ pdb_flags =
2122warn_flags = -w-rvl -w-rch -w-ccc -w-obs -w-aus -w-pia -w-inl -w-mls
2223cc = bcc32
2324thr_flags = -tWM
@@ -44,6 +45,7 @@ bcc32c {
4445debug_flags = -Od -vi-
4546release_flags =
4647optimize_flags = -O3
48+ pdb_flags =
4749warn_flags =
4850cc = bcc32c
4951binary_flags = -tR -tD
@@ -69,6 +71,7 @@ bcc64 {
6971debug_flags = -g -O0
7072release_flags =
7173optimize_flags = -O3
74+ pdb_flags =
7275warn_flags =
7376cc = bcc64
7477binary_flags = -tR -tD
@@ -94,6 +97,7 @@ bcc64x {
9497debug_flags = -g -O0
9598release_flags = -Wno-ignored-attributes
9699optimize_flags = -O3
100+ pdb_flags = -pdb $(OUTPUTDIR)$(NAME).pdb
97101warn_flags =
98102cc = bcc64x
99103binary_flags = -tR -tD
You can’t perform that action at this time.
0 commit comments