]> git.tdb.fi Git - builder.git/blob - source/compile.cpp
Add basic support for tools (not configurable yet)
[builder.git] / source / compile.cpp
1 #include <msp/path/utils.h>
2 #include "builder.h"
3 #include "buildinfo.h"
4 #include "compile.h"
5 #include "component.h"
6 #include "objectfile.h"
7 #include "package.h"
8
9 using namespace std;
10 using namespace Msp;
11
12 Compile::Compile(Builder &b, const ObjectFile &obj):
13         ExternalAction(b)
14 {
15         const Component &comp=obj.get_component();
16
17         const TargetList &deps=obj.get_depends();
18         Path::Path spath=deps.front()->get_name();
19
20         string ext=Path::splitext(spath.str()).ext;
21         const char *tool=0;
22         if(ext==".cpp" || ext==".cc")
23                 tool="CXX";
24         else
25                 tool="CC";
26
27         argv.push_back(builder.get_tool(tool, obj.get_package()->get_arch()));
28         argv.push_back("-c");
29         
30         const BuildInfo &binfo=comp.get_build_info();
31         for(list<string>::const_iterator i=binfo.cflags.begin(); i!=binfo.cflags.end(); ++i)
32                 argv.push_back(*i);
33         for(list<string>::const_iterator i=binfo.incpath.begin(); i!=binfo.incpath.end(); ++i)
34                 argv.push_back("-I"+*i);
35         for(list<string>::const_iterator i=binfo.defines.begin(); i!=binfo.defines.end(); ++i)
36                 argv.push_back("-D"+*i);
37         
38         Path::Path opath=obj.get_name();
39         argv.push_back("-o");
40         argv.push_back(opath.str());
41         argv.push_back(spath.str());
42
43         if(!builder.get_dry_run())
44                 Path::mkpath(opath.subpath(0, opath.size()-1), 0755);
45
46         announce(comp.get_package().get_name(), tool, relative(opath, comp.get_package().get_source()).str());
47
48         launch();
49 }