Kaydet (Commit) 471b8449 authored tarafından Michael Stahl's avatar Michael Stahl

gcc-wrappers: always pass -debug to linker

... like gbuild does; this causes a PDB file to be created, which
is required by BinScope.  Stops complaints about firebird's DLLs,
which are apparently the only DLLs linked with gcc-wrapper.

Change-Id: Ibe0e8053e0556748b1562b5f50f08480b2f2f89b
üst da745e2f
......@@ -97,7 +97,8 @@ string processccargs(vector<string> rawargs) {
// apparently these must be at the end
// otherwise configure tests may fail
string linkargs(" -link");
// note: always use -debug so a PDB file is created
string linkargs(" -link -debug");
for(vector<string>::iterator i = rawargs.begin(); i != rawargs.end(); ++i) {
args.append(" ");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment