]> git.tdb.fi Git - builder.git/blob - source/gnucompiler.cpp
Interrogate the compiler for the system path
[builder.git] / source / gnucompiler.cpp
1 #include <msp/core/maputils.h>
2 #include <msp/fs/utils.h>
3 #include <msp/strings/format.h>
4 #include <msp/strings/utils.h>
5 #include "architecture.h"
6 #include "builder.h"
7 #include "component.h"
8 #include "csourcefile.h"
9 #include "externaltask.h"
10 #include "gnucompiler.h"
11 #include "objcsourcefile.h"
12 #include "objectfile.h"
13 #include "sourcefile.h"
14 #include "sourcepackage.h"
15
16 using namespace std;
17 using namespace Msp;
18
19 namespace {
20
21 const char *cpus[] =
22 {
23         "athlonxp", "athlon-xp",
24         "armv7a",   "armv7-a",
25         0
26 };
27
28 }
29
30 GnuCompiler::GnuCompiler(Builder &b, const Architecture &a, const string &t, const FS::Path &sysroot):
31         Tool(b, a, t)
32 {
33         if(tag=="CC")
34         {
35                 input_suffixes.push_back(".c");
36                 aux_suffixes.push_back(".h");
37         }
38         else if(tag=="CXX")
39         {
40                 input_suffixes.push_back(".cpp");
41                 input_suffixes.push_back(".cc");
42                 aux_suffixes.push_back(".hpp");
43         }
44         else if(tag=="OBJC")
45         {
46                 input_suffixes.push_back(".m");
47                 build_info.libs.push_back("objc");
48         }
49         else
50                 throw invalid_argument("GnuCompiler::GnuCompiler");
51
52         set_command((tag=="CXX" ? "g++" : "gcc"), true);
53
54         if(!sysroot.empty())
55                 build_info.sysroot = sysroot;
56 }
57
58 Target *GnuCompiler::create_source(const Component &comp, const FS::Path &path) const
59 {
60         if(tag=="OBJC")
61                 return new ObjCSourceFile(builder, comp, path);
62         else
63                 return new CSourceFile(builder, comp, path);
64 }
65
66 Target *GnuCompiler::create_source(const FS::Path &path) const
67 {
68         if(tag=="OBJC")
69                 return new ObjCSourceFile(builder, path);
70         else
71                 return new CSourceFile(builder, path);
72 }
73
74 Target *GnuCompiler::create_target(const list<Target *> &sources, const string &)
75 {
76         if(sources.size()!=1)
77                 throw invalid_argument("GnuCCompiler::create_target");
78         SourceFile &source = dynamic_cast<SourceFile &>(*sources.front());
79         ObjectFile *obj = new ObjectFile(builder, *source.get_component(), source);
80         obj->set_tool(*this);
81         return obj;
82 }
83
84 string GnuCompiler::create_build_signature(const BuildInfo &binfo) const
85 {
86         string result = FS::basename(executable->get_path());
87         if(!architecture->get_cpu().empty())
88         {
89                 result += ",m";
90                 result += architecture->get_cpu();
91         }
92         result += ',';
93         if(binfo.debug)
94                 result += 'g';
95         if(binfo.optimize)
96         {
97                 result += 'O';
98                 result += (binfo.optimize>0 ? '0'+binfo.optimize : 's');
99         }
100         return result;
101 }
102
103 void GnuCompiler::do_prepare()
104 {
105         executable = builder.get_vfs().find_binary(command);
106         if(executable)
107         {
108                 ExternalTask::Arguments argv;
109                 argv.push_back(executable->get_path().str());
110                 argv.push_back("-Wp,-v");
111                 argv.push_back("-E");
112                 if(tag=="CXX")
113                         argv.push_back("-xc++");
114                 const FS::Path &sysroot = build_info.sysroot;
115                 if(!sysroot.empty())
116                         argv.push_back("--sysroot="+sysroot.str());
117                 argv.push_back("-");
118
119                 string prog = FS::basename(executable->get_path());
120                 builder.get_logger().log("auxcommands", format("Running %s", join(argv.begin(), argv.end())));
121                 try
122                 {
123                         string output = ExternalTask::run_and_capture_output(argv, FS::Path(), true);
124                         string::size_type start = 0;
125                         bool record_path = false;
126                         while(start<output.size())
127                         {
128                                 string::size_type newline = output.find('\n', start);
129                                 if(!output.compare(start, 34, "#include <...> search starts here:"))
130                                         record_path = true;
131                                 else if(!output.compare(start, 19, "End of search list."))
132                                         record_path = false;
133                                 else if(record_path)
134                                 {
135                                         FS::Path path = strip(output.substr(start, newline-start));
136                                         builder.get_logger().log("tools", format("Got %s (%s) system path: %s", prog, tag, path));
137                                         system_path.push_back(path);
138                                 }
139                                 start = newline+1;
140                         }
141                 }
142                 catch(const runtime_error &e)
143                 {
144                         problems.push_back("Unable to determine system path");
145                 }
146         }
147 }
148
149 Task *GnuCompiler::run(const Target &target) const
150 {
151         const ObjectFile &object = dynamic_cast<const ObjectFile &>(target);
152
153         ExternalTask::Arguments argv;
154         argv.push_back(executable->get_path().str());
155         argv.push_back("-c");
156
157         BuildInfo binfo;
158         target.collect_build_info(binfo);
159
160         string tag_for_std = (tag=="OBJC" ? "CC" : tag);
161         if(binfo.standards.count(tag_for_std))
162                 argv.push_back("-std="+get_item(binfo.standards, tag_for_std));
163         if(tag=="OBJC" && binfo.standards.count(tag))
164                 argv.push_back("-fobjc-std="+get_item(binfo.standards, tag));
165
166         if(binfo.warning_level>=1)
167         {
168                 argv.push_back("-Wall");
169                 if(binfo.warning_level>=2)
170                 {
171                         argv.push_back("-Wextra");
172                         argv.push_back("-Wundef");
173                 }
174                 if(binfo.warning_level>=3)
175                 {
176                         argv.push_back("-pedantic");
177                         argv.push_back("-Wno-long-long");
178                         argv.push_back("-Wshadow");
179                         if(tag=="CC")
180                         {
181                                 argv.push_back("-Wc++-compat");
182                                 argv.push_back("-Wstrict-prototypes");
183                         }
184                 }
185                 if(binfo.warning_level>=4)
186                 {
187                         // Some truly paranoid warnings
188                         argv.push_back("-Wstrict-overflow=4");
189                         argv.push_back("-Wfloat-equal");
190                         argv.push_back("-Wconversion");
191                         argv.push_back("-Wwrite-strings");
192                         argv.push_back("-Winline");
193                 }
194                 if(binfo.fatal_warnings)
195                 {
196                         argv.push_back("-Werror");
197                         argv.push_back("-Wno-error=deprecated-declarations");
198                 }
199         }
200
201         const FS::Path &sysroot = binfo.sysroot;
202         if(!sysroot.empty())
203                 argv.push_back("--sysroot="+sysroot.str());
204         for(BuildInfo::PathList::const_iterator i=binfo.local_incpath.begin(); i!=binfo.local_incpath.end(); ++i)
205         {
206                 argv.push_back("-iquote");
207                 argv.push_back(i->str());
208         }
209         for(BuildInfo::PathList::const_iterator i=binfo.incpath.begin(); i!=binfo.incpath.end(); ++i)
210                 argv.push_back("-I"+i->str());
211
212         for(BuildInfo::DefineMap::const_iterator i=binfo.defines.begin(); i!=binfo.defines.end(); ++i)
213         {
214                 if(i->second.empty())
215                         argv.push_back(format("-D%s", i->first));
216                 else
217                         argv.push_back(format("-D%s=%s", i->first, i->second));
218         }
219
220         if(binfo.debug)
221                 argv.push_back("-ggdb");
222         if(binfo.optimize)
223         {
224                 if(binfo.optimize<0)
225                         argv.push_back("-Os");
226                 else
227                         argv.push_back(format("-O%d", binfo.optimize));
228         }
229         if(binfo.threads && architecture->get_system()!="windows" && architecture->get_system()!="darwin")
230                 argv.push_back("-pthread");
231         if(object.is_used_in_shared_library() && architecture->get_system()!="windows")
232                 argv.push_back("-fPIC");
233
234         const Architecture &native_arch = builder.get_native_arch();
235         if(architecture->is_native() && architecture->get_bits()!=native_arch.get_bits())
236                 argv.push_back(format("-m%d", architecture->get_bits()));
237
238         string cpu = architecture->get_cpu();
239         if(!cpu.empty())
240         {
241                 for(unsigned i=0; cpus[i]; i+=2)
242                         if(cpu==cpus[i])
243                         {
244                                 cpu = cpus[i+1];
245                                 break;
246                         }
247                 argv.push_back("-march="+cpu);
248         }
249
250         if(!architecture->get_fpu().empty())
251         {
252                 if(architecture->get_type()=="x86")
253                 {
254                         argv.push_back("-mfpmath="+architecture->get_fpu());
255                         if(architecture->get_fpu()=="sse")
256                                 argv.push_back("-msse2");
257                 }
258                 else if(architecture->get_type()=="arm")
259                 {
260                         argv.push_back("-mfpu="+architecture->get_fpu());
261                         argv.push_back("-mfloat-abi=softfp");
262                 }
263         }
264
265         FS::Path obj_path = object.get_path();
266         FS::Path src_path = object.get_source().get_path();
267         FS::Path work_dir = object.get_component()->get_package().get_source_directory();
268
269         argv.push_back("-o");
270         argv.push_back(relative(obj_path, work_dir).str());
271         argv.push_back(relative(src_path, work_dir).str());
272
273         return new ExternalTask(argv, work_dir);
274 }