forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompilerLocatorGCC.cpp
202 lines (172 loc) · 6.71 KB
/
CompilerLocatorGCC.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 The CodeLite Team
// file name : CompilerLocatorGCC.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "CompilerLocatorGCC.h"
#include <wx/filename.h>
#include "file_logger.h"
#include "globals.h"
CompilerLocatorGCC::CompilerLocatorGCC()
{
}
CompilerLocatorGCC::~CompilerLocatorGCC()
{
}
CompilerPtr CompilerLocatorGCC::Locate(const wxString& folder)
{
m_compilers.clear();
wxFileName gcc(folder, "gcc");
wxFileName tmpfn(folder, "");
wxString name;
if( tmpfn.GetDirCount() > 1 && tmpfn.GetDirs().Last() == "bin" ) {
tmpfn.RemoveLastDir();
name = tmpfn.GetDirs().Last();
}
#ifdef __WXMSW__
gcc.SetExt("exe");
#endif
bool found = gcc.FileExists();
if ( ! found ) {
// try to see if we have a bin folder here
gcc.AppendDir("bin");
found = gcc.FileExists();
}
if ( found ) {
CompilerPtr compiler( new Compiler(NULL) );
compiler->SetCompilerFamily(COMPILER_FAMILY_GCC);
// get the compiler version
compiler->SetName( name.IsEmpty() ? "GCC" : name );
compiler->SetGenerateDependeciesFile(true);
m_compilers.push_back( compiler );
// we path the bin folder
AddTools(compiler, gcc.GetPath());
return compiler;
}
return NULL;
}
bool CompilerLocatorGCC::Locate()
{
// Locate GCC under /usr/bin
m_compilers.clear();
wxArrayString gcc_versions;
gcc_versions.Add(""); // Default gcc
gcc_versions.Add("4.2");
gcc_versions.Add("4.3");
gcc_versions.Add("4.4");
gcc_versions.Add("4.5");
gcc_versions.Add("4.6");
gcc_versions.Add("4.7");
gcc_versions.Add("4.8");
gcc_versions.Add("4.9");
for(size_t i=0; i<gcc_versions.GetCount(); ++i) {
wxString suffix = gcc_versions.Item(i);
if ( !suffix.IsEmpty() ) {
suffix.Prepend("-");
}
wxFileName gccFile("/usr/bin", "gcc" + suffix);
if ( gccFile.FileExists() ) {
// add this compiler
CompilerPtr compiler( new Compiler(NULL) );
wxString toolchainName;
toolchainName << "GCC";
if ( !gcc_versions.Item(i).IsEmpty() ) {
toolchainName << " ( " << gcc_versions.Item(i) << " )";
}
compiler->SetName( toolchainName );
compiler->SetGenerateDependeciesFile(true);
compiler->SetCompilerFamily(COMPILER_FAMILY_GCC);
m_compilers.push_back( compiler );
AddTools(compiler, "/usr/bin", gcc_versions.Item(i));
}
}
// XCode GCC is installed under /Applications/Xcode.app/Contents/Developer/usr/bin
wxFileName xcodeGcc("/Applications/Xcode.app/Contents/Developer/usr/bin", "gcc");
if ( xcodeGcc.FileExists() ) {
// add this compiler
CompilerPtr compiler( new Compiler(NULL) );
compiler->SetCompilerFamily(COMPILER_FAMILY_GCC);
compiler->SetName("GCC ( XCode )");
m_compilers.push_back( compiler );
AddTools(compiler, xcodeGcc.GetPath());
}
return !m_compilers.empty();
}
void CompilerLocatorGCC::AddTools(CompilerPtr compiler,
const wxString& binFolder,
const wxString& suffix)
{
wxFileName masterPath(binFolder, "");
wxString defaultBinFolder = "/usr/bin";
compiler->SetCompilerFamily(COMPILER_FAMILY_GCC);
compiler->SetInstallationPath( binFolder );
CL_DEBUG("Found GNU GCC compiler under: %s. \"%s\"", masterPath.GetPath(), compiler->GetName());
wxFileName toolFile(binFolder, "");
// ++++-----------------------------------------------------------------
// With XCode installation, only
// g++, gcc, and make are installed under the Xcode installation folder
// the rest (mainly ar and as) are taken from /usr/bin
// ++++-----------------------------------------------------------------
toolFile.SetFullName("g++");
AddTool(compiler, "CXX", toolFile.GetFullPath(), suffix);
AddTool(compiler, "LinkerName", toolFile.GetFullPath(), suffix);
#ifndef __WXMAC__
AddTool(compiler, "SharedObjectLinkerName", toolFile.GetFullPath(), suffix, "-shared -fPIC");
#else
AddTool(compiler, "SharedObjectLinkerName", toolFile.GetFullPath(), suffix, "-dynamiclib -fPIC");
#endif
toolFile.SetFullName("gcc");
AddTool(compiler, "CC", toolFile.GetFullPath(), suffix);
toolFile.SetFullName("make");
wxString makeExtraArgs;
if ( wxThread::GetCPUCount() > 1 ) {
makeExtraArgs << "-j" << wxThread::GetCPUCount();
}
AddTool(compiler, "MAKE", toolFile.GetFullPath(), "", makeExtraArgs);
// ++++-----------------------------------------------------------------
// From this point on, we use /usr/bin only
// ++++-----------------------------------------------------------------
toolFile.AssignDir( defaultBinFolder );
toolFile.SetFullName("ar");
AddTool(compiler, "AR", toolFile.GetFullPath(), "", "rcu");
toolFile.SetFullName("windres");
AddTool(compiler, "ResourceCompiler", "", "");
toolFile.SetFullName("as");
AddTool(compiler, "AS", toolFile.GetFullPath(), "");
toolFile.SetFullName("gdb");
if(toolFile.Exists()) {
AddTool(compiler, "Debugger", toolFile.GetFullPath(), "");
}
}
void CompilerLocatorGCC::AddTool(CompilerPtr compiler, const wxString& toolname, const wxString& toolpath, const wxString& suffix, const wxString& extraArgs)
{
wxString tool = toolpath;
if ( !suffix.IsEmpty() ) {
tool << "-" << suffix;
}
::WrapWithQuotes(tool);
if(!extraArgs.IsEmpty()) {
tool << " " << extraArgs;
}
compiler->SetTool(toolname, tool);
CL_DEBUG("Adding tool: %s => %s", toolname, tool);
}