native_arch->set_tool("LXX", "g++");
native_arch->set_tool("AR", "ar");
+ load_build_file((FS::get_sys_data_dir(argv[0], "builder")/"builderrc").str());
load_build_file((FS::get_home_dir()/".builderrc").str());
if(arch.empty())
Target *Builder::get_header(const string &include, const string &from, const list<string> &path)
{
string hash(8, 0);
- update_hash(hash, from);
+ if(include[0]=='\"')
+ update_hash(hash, from);
for(list<string>::const_iterator i=path.begin(); i!=path.end(); ++i)
update_hash(hash, *i);
syspath.push_back("/usr/include");
else
syspath.push_back("/usr/"+current_arch->get_prefix()+"/include");
- syspath.push_back((FS::Path("/usr/include/c++/")/cxx_ver/fn).str());
+ syspath.push_back((FS::Path("/usr/include/c++/")/cxx_ver).str());
Target *tgt=0;
if(include[0]=='\"')
{
DepsMap::const_iterator i=deps.find(tgt);
if(i==deps.end())
- {
- static StringList dummy;
- return dummy;
- }
+ throw KeyError("Unknown dependencies", tgt);
+
return i->second;
}
#include <fstream>
#include <iostream>
+#include <msp/fs/utils.h>
#include <msp/strings/regex.h>
#include "builder.h"
#include "component.h"
if(!comp)
return;
- DependencyCache &deps_cache=comp->get_package().get_deps_cache();
- if(mtime>deps_cache.get_mtime())
+ const SourcePackage &spkg=comp->get_package();
+ string relname=FS::relative(name, spkg.get_source()).str();
+ DependencyCache &deps_cache=spkg.get_deps_cache();
+ bool deps_found=false;
+ if(mtime<deps_cache.get_mtime())
+ {
+ try
+ {
+ includes=deps_cache.get_deps(relname);
+ deps_found=true;
+ }
+ catch(const KeyError &)
+ { }
+ }
+
+ if(!deps_found)
{
ifstream in(name.c_str());
if(!in) return;
if(RegMatch match=r_include.match(line))
includes.push_back(match[1].str);
- deps_cache.set_deps(name, includes);
+ deps_cache.set_deps(relname, includes);
}
- else
- includes=deps_cache.get_deps(name);
const StringList &incpath=comp->get_build_info().incpath;