]> git.tdb.fi Git - builder.git/commitdiff
Load builderrc from sys_data_dir to avoid the need of copying it to $HOME
authorMikko Rasa <tdb@tdb.fi>
Sat, 16 Aug 2008 08:21:21 +0000 (08:21 +0000)
committerMikko Rasa <tdb@tdb.fi>
Sat, 16 Aug 2008 08:21:21 +0000 (08:21 +0000)
Do not incorporate the from path in include hash for <> includes
Fix an error with C++ include path construction
Use package-relative filenames for storing dependencies
Detect if dependencies are ot found in deps cache and find them

source/builder.cpp
source/dependencycache.cpp
source/sourcefile.cpp

index 286f53b049cf8284b770821b0098fe58a4f2c77c..bb7b68ff01f444f86ff747423d109ce30a8975ad 100644 (file)
@@ -139,6 +139,7 @@ Builder::Builder(int argc, char **argv):
        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())
@@ -225,7 +226,8 @@ returned.
 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);
 
@@ -261,7 +263,7 @@ Target *Builder::get_header(const string &include, const string &from, const lis
                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]=='\"')
index 3afbf009c6a4cf42d203d68d75274ba918dce945..978a0e37b8ccb3bb96d7a56d43f0b9248fb3dbd2 100644 (file)
@@ -24,10 +24,8 @@ const StringList &DependencyCache::get_deps(const string &tgt) const
 {
        DepsMap::const_iterator i=deps.find(tgt);
        if(i==deps.end())
-       {
-               static StringList dummy;
-               return dummy;
-       }
+               throw KeyError("Unknown dependencies", tgt);
+
        return i->second;
 }
 
index af1c04a5cf4205be339b86a1e9cead91f8a02f90..70410355652ab34cb7d522d0100ef62e30462eff 100644 (file)
@@ -7,6 +7,7 @@ Distributed under the LGPL
 
 #include <fstream>
 #include <iostream>
+#include <msp/fs/utils.h>
 #include <msp/strings/regex.h>
 #include "builder.h"
 #include "component.h"
@@ -30,8 +31,22 @@ void SourceFile::find_depends()
        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;
@@ -46,10 +61,8 @@ void SourceFile::find_depends()
                        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;