]> git.tdb.fi Git - builder.git/blob - source/gnucompiler.cpp
Add a utility function for setting the executable for a Tool
[builder.git] / source / gnucompiler.cpp
1 #include <msp/fs/dir.h>
2 #include <msp/fs/utils.h>
3 #include <msp/strings/format.h>
4 #include "architecture.h"
5 #include "builder.h"
6 #include "component.h"
7 #include "externaltask.h"
8 #include "gnucompiler.h"
9 #include "objectfile.h"
10 #include "sourcefile.h"
11 #include "sourcepackage.h"
12
13 using namespace std;
14 using namespace Msp;
15
16 GnuCompiler::GnuCompiler(Builder &b, const Architecture &a, const string &t, const string &c):
17         Tool(b, a, t),
18         command(c)
19 {
20         if(architecture->is_native())
21                 system_path.push_back("/usr/include");
22         else
23                 system_path.push_back("/usr/"+architecture->get_cross_prefix()+"/include");
24 }
25
26 Target *GnuCompiler::create_target(const list<Target *> &sources, const string &)
27 {
28         if(sources.size()!=1)
29                 throw invalid_argument("GnuCCompiler::create_target");
30         SourceFile &source = dynamic_cast<SourceFile &>(*sources.front());
31         ObjectFile *obj = new ObjectFile(builder, *source.get_component(), source);
32         obj->set_tool(*this);
33         return obj;
34 }
35
36 string GnuCompiler::create_build_signature(const BuildInfo &binfo) const
37 {
38         string result = FS::basename(executable->get_path());
39         if(!architecture->get_cpu().empty())
40         {
41                 result += ",m";
42                 result += architecture->get_cpu();
43         }
44         result += ',';
45         if(binfo.debug)
46                 result += 'g';
47         if(binfo.optimize)
48         {
49                 result += 'O';
50                 result += (binfo.optimize>0 ? '0'+binfo.optimize : 's');
51         }
52         return result;
53 }
54
55 void GnuCompiler::do_prepare()
56 {
57         set_executable(command, true);
58 }
59
60 Task *GnuCompiler::run(const Target &target) const
61 {
62         const ObjectFile &object = dynamic_cast<const ObjectFile &>(target);
63         const Component &comp = *object.get_component();
64
65         ExternalTask::Arguments argv;
66         argv.push_back(executable->get_path().str());
67         argv.push_back("-c");
68
69         const BuildInfo &binfo = comp.get_build_info_for_path(object.get_source().get_path());
70         if(binfo.warning_level>=1)
71         {
72                 argv.push_back("-Wall");
73                 if(binfo.warning_level>=2)
74                 {
75                         argv.push_back("-Wextra");
76                         argv.push_back("-Wundef");
77                 }
78                 if(binfo.warning_level>=3)
79                 {
80                         argv.push_back("-pedantic");
81                         argv.push_back("-Wno-long-long");
82                         argv.push_back("-Wshadow");
83                         if(tag=="CC")
84                         {
85                                 argv.push_back("-Wc++-compat");
86                                 argv.push_back("-Wstrict-prototypes");
87                         }
88                 }
89                 if(binfo.warning_level>=4)
90                 {
91                         // Some truly paranoid warnings
92                         argv.push_back("-Wstrict-overflow=4");
93                         argv.push_back("-Wfloat-equal");
94                         argv.push_back("-Wconversion");
95                         argv.push_back("-Wwrite-strings");
96                         argv.push_back("-Winline");
97                 }
98                 if(binfo.fatal_warnings)
99                         argv.push_back("-Werror");
100         }
101         for(BuildInfo::PathList::const_iterator i=binfo.local_incpath.begin(); i!=binfo.local_incpath.end(); ++i)
102         {
103                 argv.push_back("-iquote");
104                 argv.push_back(i->str());
105         }
106         for(BuildInfo::PathList::const_iterator i=binfo.incpath.begin(); i!=binfo.incpath.end(); ++i)
107                 argv.push_back("-I"+i->str());
108         for(BuildInfo::DefineMap::const_iterator i=binfo.defines.begin(); i!=binfo.defines.end(); ++i)
109         {
110                 if(i->second.empty())
111                         argv.push_back(format("-D%s", i->first));
112                 else
113                         argv.push_back(format("-D%s=%s", i->first, i->second));
114         }
115         if(binfo.debug)
116                 argv.push_back("-ggdb");
117         if(binfo.optimize)
118         {
119                 if(binfo.optimize<0)
120                         argv.push_back("-Os");
121                 else
122                         argv.push_back(format("-O%d", binfo.optimize));
123         }
124         if(binfo.threads)
125                 argv.push_back("-pthread");
126         if((comp.get_type()==Component::LIBRARY || comp.get_type()==Component::MODULE) && architecture->get_system()!="windows")
127                 argv.push_back("-fPIC");
128
129         const Architecture &native_arch = builder.get_native_arch();
130         if(architecture->get_bits()!=native_arch.get_bits())
131                 argv.push_back(format("-m%d", architecture->get_bits()));
132
133         const string &cpu = architecture->get_cpu();
134         if(!cpu.empty())
135                 argv.push_back("-march="+cpu);
136
137         FS::Path obj_path = object.get_path();
138         FS::Path src_path = object.get_source().get_path();
139         FS::Path work_dir = comp.get_package().get_source_directory();
140
141         argv.push_back("-o");
142         argv.push_back(relative(obj_path, work_dir).str());
143         argv.push_back(relative(src_path, work_dir).str());
144
145         return new ExternalTask(argv, work_dir);
146 }