X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnucompiler.cpp;h=26570c702602978a286d9c146a689b5fe515d9e8;hb=8b133e26e29abbe79886c47d57637eb18ea9cb24;hp=3903c6a079983975fa42cc468c6552fd32cf1a4f;hpb=7c2db9e2b91da953701be233336c5bfa1f3c4af0;p=builder.git diff --git a/source/gnucompiler.cpp b/source/gnucompiler.cpp index 3903c6a..26570c7 100644 --- a/source/gnucompiler.cpp +++ b/source/gnucompiler.cpp @@ -72,7 +72,7 @@ Target *GnuCompiler::create_source(const FS::Path &path) const Target *GnuCompiler::create_target(const list &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); @@ -162,7 +162,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())); } }