Kaydet (Commit) cdcb08c9 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Use -FS for VS 2013

Change-Id: I3beea86e97a4217128383c01049b2fc19c85c67a
üst 3efe9b29
......@@ -113,8 +113,12 @@ string processccargs(vector<string> rawargs) {
exit(1);
}
}
else if(*i == "-g")
else if(*i == "-g") {
args.append("-Zi");
#if _MSC_VER >= 1800
args.append(" -FS");
#endif
}
else if(!(*i).compare(0,2,"-D")) {
// need to re-escape strings for preprocessor
for(size_t pos=(*i).find("\"",0); pos!=string::npos; pos=(*i).find("\"",pos)) {
......
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