]> git.tdb.fi Git - builder.git/blob - source/compile.cpp
fd802bbb54e76d2a960ae140e40003a174aa03a4
[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         {
24                 tool="CXX";
25                 argv.push_back("g++");
26         }
27         else
28         {
29                 tool="CC";
30                 argv.push_back("gcc");
31         }
32         argv.push_back("-c");
33         
34         const BuildInfo &binfo=comp.get_build_info();
35         for(list<string>::const_iterator i=binfo.cflags.begin(); i!=binfo.cflags.end(); ++i)
36                 argv.push_back(*i);
37         for(list<string>::const_iterator i=binfo.incpath.begin(); i!=binfo.incpath.end(); ++i)
38                 argv.push_back("-I"+*i);
39         for(list<string>::const_iterator i=binfo.defines.begin(); i!=binfo.defines.end(); ++i)
40                 argv.push_back("-D"+*i);
41         
42         Path::Path opath=obj.get_name();
43         argv.push_back("-o");
44         argv.push_back(opath.str());
45         argv.push_back(spath.str());
46
47         if(!builder.get_dry_run())
48                 Path::mkpath(opath.subpath(0, opath.size()-1), 0755);
49
50         announce(comp.get_package().get_name(), tool, relative(opath, comp.get_package().get_source()).str());
51
52         launch();
53 }