X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnucompiler.cpp;h=9e7eb390220d451dabac88c0a971ba698c095e97;hb=aa053d637e8259755af7d2e4b510a242f4d29c7b;hp=064b0a0f6e1faafc86d778c778afd4e6feae3573;hpb=cb0be83edbfeea6c649705a045dc3a3b990e9ce3;p=builder.git diff --git a/source/gnucompiler.cpp b/source/gnucompiler.cpp index 064b0a0..9e7eb39 100644 --- a/source/gnucompiler.cpp +++ b/source/gnucompiler.cpp @@ -69,10 +69,10 @@ Target *GnuCompiler::create_source(const FS::Path &path) const return new CSourceFile(builder, path); } -Target *GnuCompiler::create_target(const list &sources, const string &) +Target *GnuCompiler::create_target(const vector &sources, const string &) { if(sources.size()!=1) - throw invalid_argument("GnuCCompiler::create_target"); + throw invalid_argument("GnuCompiler::create_target"); SourceFile &source = dynamic_cast(*sources.front()); ObjectFile *obj = new ObjectFile(builder, *source.get_component(), source); obj->set_tool(*this); @@ -84,13 +84,14 @@ string GnuCompiler::create_build_signature(const BuildInfo &binfo) const if(!executable) return string(); - string result = FS::basename(executable->get_path()); + string result = Tool::create_build_signature(binfo); if(!architecture->get_cpu().empty()) { result += ",m"; result += architecture->get_cpu(); } - result += ','; + if(binfo.debug || binfo.optimize) + result += ','; if(binfo.debug) result += 'g'; if(binfo.optimize) @@ -150,7 +151,7 @@ void GnuCompiler::prepare_syspath() start = newline+1; } } - catch(const runtime_error &e) + catch(const runtime_error &) { } } @@ -162,7 +163,7 @@ void GnuCompiler::prepare_syspath() else if(architecture->is_native()) system_path.push_back("/usr/include"); else - system_path.push_back("/usr/"+architecture->get_cross_prefix()+"/include"); + system_path.push_back(format("/usr/%s/include", architecture->get_cross_prefix())); } } @@ -210,9 +211,9 @@ Task *GnuCompiler::run(const Target &target) const string tag_for_std = (tag=="OBJC" ? "CC" : tag); if(binfo.standards.count(tag_for_std)) - argv.push_back("-std="+get_item(binfo.standards, tag_for_std)); + argv.push_back("-std="+get_item(binfo.standards, tag_for_std).str()); if(tag=="OBJC" && binfo.standards.count(tag)) - argv.push_back("-fobjc-std="+get_item(binfo.standards, tag)); + argv.push_back("-fobjc-std="+get_item(binfo.standards, tag).str()); if(binfo.warning_level>=1) { @@ -254,20 +255,20 @@ Task *GnuCompiler::run(const Target &target) const const FS::Path &sysroot = binfo.sysroot; if(!sysroot.empty()) argv.push_back("--sysroot="+sysroot.str()); - for(BuildInfo::PathList::const_iterator i=binfo.local_incpath.begin(); i!=binfo.local_incpath.end(); ++i) + for(const FS::Path &p: binfo.local_incpath) { argv.push_back("-iquote"); - argv.push_back(i->str()); + argv.push_back(p.str()); } - for(BuildInfo::PathList::const_iterator i=binfo.incpath.begin(); i!=binfo.incpath.end(); ++i) - argv.push_back("-I"+i->str()); + for(const FS::Path &p: binfo.incpath) + argv.push_back("-I"+p.str()); - for(BuildInfo::DefineMap::const_iterator i=binfo.defines.begin(); i!=binfo.defines.end(); ++i) + for(const auto &kvp: binfo.defines) { - if(i->second.empty()) - argv.push_back(format("-D%s", i->first)); + if(kvp.second.empty()) + argv.push_back(format("-D%s", kvp.first)); else - argv.push_back(format("-D%s=%s", i->first, i->second)); + argv.push_back(format("-D%s=%s", kvp.first, kvp.second)); } if(binfo.debug) @@ -278,6 +279,8 @@ Task *GnuCompiler::run(const Target &target) const argv.push_back("-Os"); else argv.push_back(format("-O%d", binfo.optimize)); + if(binfo.debug) + argv.push_back("-fno-omit-frame-pointer"); } if(binfo.threads && architecture->get_system()!="windows" && architecture->get_system()!="darwin") argv.push_back("-pthread"); @@ -303,9 +306,17 @@ Task *GnuCompiler::run(const Target &target) const { if(architecture->get_type()=="x86") { - argv.push_back("-mfpmath="+architecture->get_fpu()); + if(architecture->get_fpu()=="387") + argv.push_back("-mfpmath=387"); + else if(!architecture->get_fpu().compare(0, 3, "sse")) + argv.push_back("-mfpmath=sse"); + if(architecture->get_fpu()=="sse") argv.push_back("-msse2"); + else if(architecture->get_fpu()=="sse3") + argv.push_back("-msse3"); + else if(architecture->get_fpu()=="sse4.1") + argv.push_back("-msse4.1"); } else if(architecture->get_type()=="arm") {