Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 1 | //===--- ToolChains.cpp - ToolChain Implementations ---------------------*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "ToolChains.h" |
| 11 | |
Daniel Dunbar | f3cad36 | 2009-03-25 04:13:45 +0000 | [diff] [blame] | 12 | #include "clang/Driver/Arg.h" |
| 13 | #include "clang/Driver/ArgList.h" |
Daniel Dunbar | 0f602de | 2010-05-20 21:48:38 +0000 | [diff] [blame] | 14 | #include "clang/Driver/Compilation.h" |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 15 | #include "clang/Driver/Driver.h" |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 16 | #include "clang/Driver/DriverDiagnostic.h" |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 17 | #include "clang/Driver/HostInfo.h" |
Daniel Dunbar | 27e738d | 2009-11-19 00:15:11 +0000 | [diff] [blame] | 18 | #include "clang/Driver/OptTable.h" |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 19 | #include "clang/Driver/Option.h" |
Daniel Dunbar | 265e9ef | 2009-11-19 04:25:22 +0000 | [diff] [blame] | 20 | #include "clang/Driver/Options.h" |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 21 | |
| 22 | #include "llvm/ADT/StringExtras.h" |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 23 | #include "llvm/Support/ErrorHandling.h" |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 24 | #include "llvm/Support/raw_ostream.h" |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 25 | #include "llvm/System/Path.h" |
| 26 | |
Daniel Dunbar | f36a06a | 2009-04-10 21:00:07 +0000 | [diff] [blame] | 27 | #include <cstdlib> // ::getenv |
| 28 | |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 29 | using namespace clang::driver; |
| 30 | using namespace clang::driver::toolchains; |
| 31 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 32 | /// Darwin - Darwin tool chain for i386 and x86_64. |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 33 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 34 | Darwin::Darwin(const HostInfo &Host, const llvm::Triple& Triple, |
Daniel Dunbar | cc8e189 | 2010-01-27 00:56:44 +0000 | [diff] [blame] | 35 | const unsigned (&_DarwinVersion)[3]) |
| 36 | : ToolChain(Host, Triple), TargetInitialized(false) |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 37 | { |
Daniel Dunbar | 02633b5 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 38 | llvm::raw_string_ostream(MacosxVersionMin) |
Daniel Dunbar | 5435fc9 | 2010-01-27 00:57:11 +0000 | [diff] [blame] | 39 | << "10." << std::max(0, (int)_DarwinVersion[0] - 4) << '.' |
| 40 | << _DarwinVersion[1]; |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Daniel Dunbar | eeff406 | 2010-01-22 02:04:58 +0000 | [diff] [blame] | 43 | // FIXME: Can we tablegen this? |
| 44 | static const char *GetArmArchForMArch(llvm::StringRef Value) { |
| 45 | if (Value == "armv6k") |
| 46 | return "armv6"; |
| 47 | |
| 48 | if (Value == "armv5tej") |
| 49 | return "armv5"; |
| 50 | |
| 51 | if (Value == "xscale") |
| 52 | return "xscale"; |
| 53 | |
| 54 | if (Value == "armv4t") |
| 55 | return "armv4t"; |
| 56 | |
| 57 | if (Value == "armv7" || Value == "armv7-a" || Value == "armv7-r" || |
| 58 | Value == "armv7-m" || Value == "armv7a" || Value == "armv7r" || |
| 59 | Value == "armv7m") |
| 60 | return "armv7"; |
| 61 | |
| 62 | return 0; |
| 63 | } |
| 64 | |
| 65 | // FIXME: Can we tablegen this? |
| 66 | static const char *GetArmArchForMCpu(llvm::StringRef Value) { |
| 67 | if (Value == "arm10tdmi" || Value == "arm1020t" || Value == "arm9e" || |
| 68 | Value == "arm946e-s" || Value == "arm966e-s" || |
| 69 | Value == "arm968e-s" || Value == "arm10e" || |
| 70 | Value == "arm1020e" || Value == "arm1022e" || Value == "arm926ej-s" || |
| 71 | Value == "arm1026ej-s") |
| 72 | return "armv5"; |
| 73 | |
| 74 | if (Value == "xscale") |
| 75 | return "xscale"; |
| 76 | |
| 77 | if (Value == "arm1136j-s" || Value == "arm1136jf-s" || |
| 78 | Value == "arm1176jz-s" || Value == "arm1176jzf-s") |
| 79 | return "armv6"; |
| 80 | |
| 81 | if (Value == "cortex-a8" || Value == "cortex-r4" || Value == "cortex-m3") |
| 82 | return "armv7"; |
| 83 | |
| 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | llvm::StringRef Darwin::getDarwinArchName(const ArgList &Args) const { |
| 88 | switch (getTriple().getArch()) { |
| 89 | default: |
| 90 | return getArchName(); |
| 91 | |
| 92 | case llvm::Triple::arm: { |
| 93 | if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) |
| 94 | if (const char *Arch = GetArmArchForMArch(A->getValue(Args))) |
| 95 | return Arch; |
| 96 | |
| 97 | if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) |
| 98 | if (const char *Arch = GetArmArchForMCpu(A->getValue(Args))) |
| 99 | return Arch; |
| 100 | |
| 101 | return "arm"; |
| 102 | } |
| 103 | } |
| 104 | } |
| 105 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 106 | DarwinGCC::DarwinGCC(const HostInfo &Host, const llvm::Triple& Triple, |
| 107 | const unsigned (&DarwinVersion)[3], |
Daniel Dunbar | cc8e189 | 2010-01-27 00:56:44 +0000 | [diff] [blame] | 108 | const unsigned (&_GCCVersion)[3]) |
| 109 | : Darwin(Host, Triple, DarwinVersion) |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 110 | { |
| 111 | GCCVersion[0] = _GCCVersion[0]; |
| 112 | GCCVersion[1] = _GCCVersion[1]; |
| 113 | GCCVersion[2] = _GCCVersion[2]; |
| 114 | |
| 115 | // Set up the tool chain paths to match gcc. |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 116 | ToolChainDir = "i686-apple-darwin"; |
Ted Kremenek | 55bac53 | 2009-10-07 03:21:11 +0000 | [diff] [blame] | 117 | ToolChainDir += llvm::utostr(DarwinVersion[0]); |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 118 | ToolChainDir += "/"; |
| 119 | ToolChainDir += llvm::utostr(GCCVersion[0]); |
| 120 | ToolChainDir += '.'; |
| 121 | ToolChainDir += llvm::utostr(GCCVersion[1]); |
| 122 | ToolChainDir += '.'; |
| 123 | ToolChainDir += llvm::utostr(GCCVersion[2]); |
| 124 | |
Daniel Dunbar | 74782b0 | 2009-10-20 19:25:43 +0000 | [diff] [blame] | 125 | // Try the next major version if that tool chain dir is invalid. |
Daniel Dunbar | 080fb19 | 2009-10-22 00:12:00 +0000 | [diff] [blame] | 126 | std::string Tmp = "/usr/lib/gcc/" + ToolChainDir; |
| 127 | if (!llvm::sys::Path(Tmp).exists()) { |
Daniel Dunbar | 74782b0 | 2009-10-20 19:25:43 +0000 | [diff] [blame] | 128 | std::string Next = "i686-apple-darwin"; |
| 129 | Next += llvm::utostr(DarwinVersion[0] + 1); |
| 130 | Next += "/"; |
| 131 | Next += llvm::utostr(GCCVersion[0]); |
| 132 | Next += '.'; |
| 133 | Next += llvm::utostr(GCCVersion[1]); |
| 134 | Next += '.'; |
| 135 | Next += llvm::utostr(GCCVersion[2]); |
| 136 | |
| 137 | // Use that if it exists, otherwise hope the user isn't linking. |
| 138 | // |
| 139 | // FIXME: Drop dependency on gcc's tool chain. |
Daniel Dunbar | 080fb19 | 2009-10-22 00:12:00 +0000 | [diff] [blame] | 140 | Tmp = "/usr/lib/gcc/" + Next; |
| 141 | if (llvm::sys::Path(Tmp).exists()) |
Daniel Dunbar | 74782b0 | 2009-10-20 19:25:43 +0000 | [diff] [blame] | 142 | ToolChainDir = Next; |
| 143 | } |
| 144 | |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 145 | std::string Path; |
| 146 | if (getArchName() == "x86_64") { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 147 | Path = getDriver().Dir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 148 | Path += "/../lib/gcc/"; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 149 | Path += ToolChainDir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 150 | Path += "/x86_64"; |
| 151 | getFilePaths().push_back(Path); |
| 152 | |
| 153 | Path = "/usr/lib/gcc/"; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 154 | Path += ToolChainDir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 155 | Path += "/x86_64"; |
| 156 | getFilePaths().push_back(Path); |
| 157 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 158 | |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 159 | Path = getDriver().Dir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 160 | Path += "/../lib/gcc/"; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 161 | Path += ToolChainDir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 162 | getFilePaths().push_back(Path); |
| 163 | |
| 164 | Path = "/usr/lib/gcc/"; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 165 | Path += ToolChainDir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 166 | getFilePaths().push_back(Path); |
| 167 | |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 168 | Path = getDriver().Dir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 169 | Path += "/../libexec/gcc/"; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 170 | Path += ToolChainDir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 171 | getProgramPaths().push_back(Path); |
| 172 | |
| 173 | Path = "/usr/libexec/gcc/"; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 174 | Path += ToolChainDir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 175 | getProgramPaths().push_back(Path); |
| 176 | |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 177 | getProgramPaths().push_back(getDriver().Dir); |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 180 | Darwin::~Darwin() { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 181 | // Free tool implementations. |
| 182 | for (llvm::DenseMap<unsigned, Tool*>::iterator |
| 183 | it = Tools.begin(), ie = Tools.end(); it != ie; ++it) |
| 184 | delete it->second; |
| 185 | } |
| 186 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 187 | Tool &Darwin::SelectTool(const Compilation &C, const JobAction &JA) const { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 188 | Action::ActionClass Key; |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 189 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 190 | Key = Action::AnalyzeJobClass; |
| 191 | else |
| 192 | Key = JA.getKind(); |
| 193 | |
Daniel Dunbar | 0f602de | 2010-05-20 21:48:38 +0000 | [diff] [blame] | 194 | // FIXME: This doesn't belong here, but ideally we will support static soon |
| 195 | // anyway. |
| 196 | bool HasStatic = (C.getArgs().hasArg(options::OPT_mkernel) || |
| 197 | C.getArgs().hasArg(options::OPT_static) || |
| 198 | C.getArgs().hasArg(options::OPT_fapple_kext)); |
| 199 | bool IsIADefault = IsIntegratedAssemblerDefault() && !HasStatic; |
| 200 | bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as, |
| 201 | options::OPT_no_integrated_as, |
| 202 | IsIADefault); |
| 203 | |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 204 | Tool *&T = Tools[Key]; |
| 205 | if (!T) { |
| 206 | switch (Key) { |
| 207 | case Action::InputClass: |
| 208 | case Action::BindArchClass: |
| 209 | assert(0 && "Invalid tool kind."); |
| 210 | case Action::PreprocessJobClass: |
Daniel Dunbar | 9120f17 | 2009-03-29 22:27:40 +0000 | [diff] [blame] | 211 | T = new tools::darwin::Preprocess(*this); break; |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 212 | case Action::AnalyzeJobClass: |
| 213 | T = new tools::Clang(*this); break; |
Daniel Dunbar | 9120f17 | 2009-03-29 22:27:40 +0000 | [diff] [blame] | 214 | case Action::PrecompileJobClass: |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 215 | case Action::CompileJobClass: |
Daniel Dunbar | 9120f17 | 2009-03-29 22:27:40 +0000 | [diff] [blame] | 216 | T = new tools::darwin::Compile(*this); break; |
Daniel Dunbar | 0f602de | 2010-05-20 21:48:38 +0000 | [diff] [blame] | 217 | case Action::AssembleJobClass: { |
| 218 | if (UseIntegratedAs) |
| 219 | T = new tools::ClangAs(*this); |
| 220 | else |
| 221 | T = new tools::darwin::Assemble(*this); |
| 222 | break; |
| 223 | } |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 224 | case Action::LinkJobClass: |
Daniel Dunbar | 8f28962 | 2009-09-04 17:39:02 +0000 | [diff] [blame] | 225 | T = new tools::darwin::Link(*this); break; |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 226 | case Action::LipoJobClass: |
| 227 | T = new tools::darwin::Lipo(*this); break; |
Daniel Dunbar | 6e0f254 | 2010-06-04 18:28:36 +0000 | [diff] [blame] | 228 | case Action::DsymutilJobClass: |
| 229 | T = new tools::darwin::Dsymutil(*this); break; |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 230 | } |
| 231 | } |
| 232 | |
| 233 | return *T; |
| 234 | } |
| 235 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 236 | void DarwinGCC::AddLinkSearchPathArgs(const ArgList &Args, |
| 237 | ArgStringList &CmdArgs) const { |
Daniel Dunbar | e3c153a | 2010-04-10 18:18:57 +0000 | [diff] [blame] | 238 | std::string Tmp; |
| 239 | |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 240 | // FIXME: Derive these correctly. |
| 241 | if (getArchName() == "x86_64") { |
| 242 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc/" + ToolChainDir + |
| 243 | "/x86_64")); |
| 244 | // Intentionally duplicated for (temporary) gcc bug compatibility. |
| 245 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc/" + ToolChainDir + |
| 246 | "/x86_64")); |
| 247 | } |
Daniel Dunbar | 8bc9c55 | 2010-04-10 01:24:22 +0000 | [diff] [blame] | 248 | |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 249 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/" + ToolChainDir)); |
Daniel Dunbar | e3c153a | 2010-04-10 18:18:57 +0000 | [diff] [blame] | 250 | |
| 251 | Tmp = getDriver().Dir + "/../lib/gcc/" + ToolChainDir; |
| 252 | if (llvm::sys::Path(Tmp).exists()) |
| 253 | CmdArgs.push_back(Args.MakeArgString("-L" + Tmp)); |
| 254 | Tmp = getDriver().Dir + "/../lib/gcc"; |
| 255 | if (llvm::sys::Path(Tmp).exists()) |
| 256 | CmdArgs.push_back(Args.MakeArgString("-L" + Tmp)); |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 257 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc/" + ToolChainDir)); |
| 258 | // Intentionally duplicated for (temporary) gcc bug compatibility. |
| 259 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc/" + ToolChainDir)); |
Daniel Dunbar | e3c153a | 2010-04-10 18:18:57 +0000 | [diff] [blame] | 260 | Tmp = getDriver().Dir + "/../lib/" + ToolChainDir; |
| 261 | if (llvm::sys::Path(Tmp).exists()) |
| 262 | CmdArgs.push_back(Args.MakeArgString("-L" + Tmp)); |
| 263 | Tmp = getDriver().Dir + "/../lib"; |
| 264 | if (llvm::sys::Path(Tmp).exists()) |
| 265 | CmdArgs.push_back(Args.MakeArgString("-L" + Tmp)); |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 266 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc/" + ToolChainDir + |
| 267 | "/../../../" + ToolChainDir)); |
| 268 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc/" + ToolChainDir + |
| 269 | "/../../..")); |
| 270 | } |
| 271 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 272 | void DarwinGCC::AddLinkRuntimeLibArgs(const ArgList &Args, |
| 273 | ArgStringList &CmdArgs) const { |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 274 | // Note that this routine is only used for targetting OS X. |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 275 | |
| 276 | // Derived from libgcc and lib specs but refactored. |
| 277 | if (Args.hasArg(options::OPT_static)) { |
| 278 | CmdArgs.push_back("-lgcc_static"); |
| 279 | } else { |
| 280 | if (Args.hasArg(options::OPT_static_libgcc)) { |
| 281 | CmdArgs.push_back("-lgcc_eh"); |
| 282 | } else if (Args.hasArg(options::OPT_miphoneos_version_min_EQ)) { |
| 283 | // Derived from darwin_iphoneos_libgcc spec. |
Daniel Dunbar | 251ca6c | 2010-01-27 00:56:37 +0000 | [diff] [blame] | 284 | if (isTargetIPhoneOS()) { |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 285 | CmdArgs.push_back("-lgcc_s.1"); |
| 286 | } else { |
| 287 | CmdArgs.push_back("-lgcc_s.10.5"); |
| 288 | } |
| 289 | } else if (Args.hasArg(options::OPT_shared_libgcc) || |
Daniel Dunbar | 8a0d94d | 2010-01-10 00:46:10 +0000 | [diff] [blame] | 290 | Args.hasFlag(options::OPT_fexceptions, |
| 291 | options::OPT_fno_exceptions) || |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 292 | Args.hasArg(options::OPT_fgnu_runtime)) { |
| 293 | // FIXME: This is probably broken on 10.3? |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 294 | if (isMacosxVersionLT(10, 5)) |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 295 | CmdArgs.push_back("-lgcc_s.10.4"); |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 296 | else if (isMacosxVersionLT(10, 6)) |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 297 | CmdArgs.push_back("-lgcc_s.10.5"); |
| 298 | } else { |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 299 | if (isMacosxVersionLT(10, 3, 9)) |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 300 | ; // Do nothing. |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 301 | else if (isMacosxVersionLT(10, 5)) |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 302 | CmdArgs.push_back("-lgcc_s.10.4"); |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 303 | else if (isMacosxVersionLT(10, 6)) |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 304 | CmdArgs.push_back("-lgcc_s.10.5"); |
| 305 | } |
| 306 | |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 307 | if (isTargetIPhoneOS() || isMacosxVersionLT(10, 6)) { |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 308 | CmdArgs.push_back("-lgcc"); |
| 309 | CmdArgs.push_back("-lSystem"); |
| 310 | } else { |
| 311 | CmdArgs.push_back("-lSystem"); |
| 312 | CmdArgs.push_back("-lgcc"); |
| 313 | } |
| 314 | } |
| 315 | } |
| 316 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 317 | DarwinClang::DarwinClang(const HostInfo &Host, const llvm::Triple& Triple, |
Daniel Dunbar | cc8e189 | 2010-01-27 00:56:44 +0000 | [diff] [blame] | 318 | const unsigned (&DarwinVersion)[3]) |
| 319 | : Darwin(Host, Triple, DarwinVersion) |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 320 | { |
| 321 | // We expect 'as', 'ld', etc. to be adjacent to our install dir. |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 322 | getProgramPaths().push_back(getDriver().Dir); |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | void DarwinClang::AddLinkSearchPathArgs(const ArgList &Args, |
| 326 | ArgStringList &CmdArgs) const { |
| 327 | // The Clang toolchain uses explicit paths for internal libraries. |
| 328 | } |
| 329 | |
| 330 | void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args, |
| 331 | ArgStringList &CmdArgs) const { |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 332 | // Darwin doesn't support real static executables, don't link any runtime |
| 333 | // libraries with -static. |
| 334 | if (Args.hasArg(options::OPT_static)) |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 335 | return; |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 336 | |
| 337 | // Reject -static-libgcc for now, we can deal with this when and if someone |
| 338 | // cares. This is useful in situations where someone wants to statically link |
| 339 | // something like libstdc++, and needs its runtime support routines. |
| 340 | if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 341 | getDriver().Diag(clang::diag::err_drv_unsupported_opt) |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 342 | << A->getAsString(Args); |
| 343 | return; |
| 344 | } |
| 345 | |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 346 | // Otherwise link libSystem, then the dynamic runtime library, and finally any |
| 347 | // target specific static runtime library. |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 348 | CmdArgs.push_back("-lSystem"); |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 349 | |
| 350 | // Select the dynamic runtime library and the target specific static library. |
| 351 | const char *DarwinStaticLib = 0; |
Daniel Dunbar | 251ca6c | 2010-01-27 00:56:37 +0000 | [diff] [blame] | 352 | if (isTargetIPhoneOS()) { |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 353 | CmdArgs.push_back("-lgcc_s.1"); |
| 354 | |
| 355 | // We may need some static functions for armv6/thumb which are required to |
| 356 | // be in the same linkage unit as their caller. |
| 357 | if (getDarwinArchName(Args) == "armv6") |
| 358 | DarwinStaticLib = "libclang_rt.armv6.a"; |
| 359 | } else { |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 360 | // The dynamic runtime library was merged with libSystem for 10.6 and |
| 361 | // beyond; only 10.4 and 10.5 need an additional runtime library. |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 362 | if (isMacosxVersionLT(10, 5)) |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 363 | CmdArgs.push_back("-lgcc_s.10.4"); |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 364 | else if (isMacosxVersionLT(10, 6)) |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 365 | CmdArgs.push_back("-lgcc_s.10.5"); |
| 366 | |
| 367 | // For OS X, we only need a static runtime library when targetting 10.4, to |
| 368 | // provide versions of the static functions which were omitted from |
| 369 | // 10.4.dylib. |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 370 | if (isMacosxVersionLT(10, 5)) |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 371 | DarwinStaticLib = "libclang_rt.10.4.a"; |
| 372 | } |
| 373 | |
| 374 | /// Add the target specific static library, if needed. |
| 375 | if (DarwinStaticLib) { |
| 376 | llvm::sys::Path P(getDriver().ResourceDir); |
| 377 | P.appendComponent("lib"); |
| 378 | P.appendComponent("darwin"); |
| 379 | P.appendComponent(DarwinStaticLib); |
| 380 | |
| 381 | // For now, allow missing resource libraries to support developers who may |
| 382 | // not have compiler-rt checked out or integrated into their build. |
| 383 | if (!P.exists()) |
| 384 | getDriver().Diag(clang::diag::warn_drv_missing_resource_library) |
| 385 | << P.str(); |
| 386 | else |
| 387 | CmdArgs.push_back(Args.MakeArgString(P.str())); |
| 388 | } |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 389 | } |
| 390 | |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 391 | DerivedArgList *Darwin::TranslateArgs(const DerivedArgList &Args, |
Daniel Dunbar | 0dcb9a3 | 2009-09-09 18:36:12 +0000 | [diff] [blame] | 392 | const char *BoundArch) const { |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 393 | DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs()); |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 394 | const OptTable &Opts = getDriver().getOpts(); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 395 | |
| 396 | // FIXME: We really want to get out of the tool chain level argument |
| 397 | // translation business, as it makes the driver functionality much |
| 398 | // more opaque. For now, we follow gcc closely solely for the |
| 399 | // purpose of easily achieving feature parity & testability. Once we |
| 400 | // have something that works, we should reevaluate each translation |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 401 | // and try to push it down into tool specific logic. |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 402 | |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 403 | Arg *OSXVersion = Args.getLastArg(options::OPT_mmacosx_version_min_EQ); |
| 404 | Arg *iPhoneVersion = Args.getLastArg(options::OPT_miphoneos_version_min_EQ); |
Daniel Dunbar | ff8857a | 2009-04-10 20:11:50 +0000 | [diff] [blame] | 405 | if (OSXVersion && iPhoneVersion) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 406 | getDriver().Diag(clang::diag::err_drv_argument_not_allowed_with) |
Daniel Dunbar | ff8857a | 2009-04-10 20:11:50 +0000 | [diff] [blame] | 407 | << OSXVersion->getAsString(Args) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 408 | << iPhoneVersion->getAsString(Args); |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 409 | iPhoneVersion = 0; |
Daniel Dunbar | ff8857a | 2009-04-10 20:11:50 +0000 | [diff] [blame] | 410 | } else if (!OSXVersion && !iPhoneVersion) { |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 411 | // If neither OS X nor iPhoneOS targets were specified, check for |
| 412 | // environment defines. |
| 413 | const char *OSXTarget = ::getenv("MACOSX_DEPLOYMENT_TARGET"); |
| 414 | const char *iPhoneOSTarget = ::getenv("IPHONEOS_DEPLOYMENT_TARGET"); |
Daniel Dunbar | f36a06a | 2009-04-10 21:00:07 +0000 | [diff] [blame] | 415 | |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 416 | // Ignore empty strings. |
| 417 | if (OSXTarget && OSXTarget[0] == '\0') |
| 418 | OSXTarget = 0; |
| 419 | if (iPhoneOSTarget && iPhoneOSTarget[0] == '\0') |
| 420 | iPhoneOSTarget = 0; |
| 421 | |
Daniel Dunbar | 3905367 | 2010-02-02 17:31:12 +0000 | [diff] [blame] | 422 | // Diagnose conflicting deployment targets, and choose default platform |
| 423 | // based on the tool chain. |
| 424 | // |
| 425 | // FIXME: Don't hardcode default here. |
| 426 | if (OSXTarget && iPhoneOSTarget) { |
| 427 | // FIXME: We should see if we can get away with warning or erroring on |
| 428 | // this. Perhaps put under -pedantic? |
| 429 | if (getTriple().getArch() == llvm::Triple::arm || |
| 430 | getTriple().getArch() == llvm::Triple::thumb) |
Daniel Dunbar | 84d1e6e | 2010-03-20 08:47:42 +0000 | [diff] [blame] | 431 | OSXTarget = 0; |
Daniel Dunbar | 3905367 | 2010-02-02 17:31:12 +0000 | [diff] [blame] | 432 | else |
Daniel Dunbar | 84d1e6e | 2010-03-20 08:47:42 +0000 | [diff] [blame] | 433 | iPhoneOSTarget = 0; |
Daniel Dunbar | 3905367 | 2010-02-02 17:31:12 +0000 | [diff] [blame] | 434 | } |
Daniel Dunbar | 1a3c1d9 | 2010-01-29 17:02:25 +0000 | [diff] [blame] | 435 | |
Daniel Dunbar | 3905367 | 2010-02-02 17:31:12 +0000 | [diff] [blame] | 436 | if (OSXTarget) { |
Daniel Dunbar | 30392de | 2009-09-04 18:35:21 +0000 | [diff] [blame] | 437 | const Option *O = Opts.getOption(options::OPT_mmacosx_version_min_EQ); |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 438 | OSXVersion = DAL->MakeJoinedArg(0, O, OSXTarget); |
| 439 | DAL->append(OSXVersion); |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 440 | } else if (iPhoneOSTarget) { |
Daniel Dunbar | 30392de | 2009-09-04 18:35:21 +0000 | [diff] [blame] | 441 | const Option *O = Opts.getOption(options::OPT_miphoneos_version_min_EQ); |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 442 | iPhoneVersion = DAL->MakeJoinedArg(0, O, iPhoneOSTarget); |
| 443 | DAL->append(iPhoneVersion); |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 444 | } else { |
Daniel Dunbar | cc8e189 | 2010-01-27 00:56:44 +0000 | [diff] [blame] | 445 | // Otherwise, choose a default platform based on the tool chain. |
| 446 | // |
| 447 | // FIXME: Don't hardcode default here. |
| 448 | if (getTriple().getArch() == llvm::Triple::arm || |
| 449 | getTriple().getArch() == llvm::Triple::thumb) { |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 450 | const Option *O = Opts.getOption(options::OPT_miphoneos_version_min_EQ); |
Daniel Dunbar | cc8e189 | 2010-01-27 00:56:44 +0000 | [diff] [blame] | 451 | iPhoneVersion = DAL->MakeJoinedArg(0, O, "3.0"); |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 452 | DAL->append(iPhoneVersion); |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 453 | } else { |
| 454 | const Option *O = Opts.getOption(options::OPT_mmacosx_version_min_EQ); |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 455 | OSXVersion = DAL->MakeJoinedArg(0, O, MacosxVersionMin); |
| 456 | DAL->append(OSXVersion); |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 457 | } |
Daniel Dunbar | 30392de | 2009-09-04 18:35:21 +0000 | [diff] [blame] | 458 | } |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 459 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 460 | |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 461 | // Set the tool chain target information. |
| 462 | unsigned Major, Minor, Micro; |
| 463 | bool HadExtra; |
| 464 | if (OSXVersion) { |
| 465 | assert(!iPhoneVersion && "Unknown target platform!"); |
| 466 | if (!Driver::GetReleaseVersion(OSXVersion->getValue(Args), Major, Minor, |
| 467 | Micro, HadExtra) || HadExtra || |
| 468 | Major != 10 || Minor >= 10 || Micro >= 10) |
| 469 | getDriver().Diag(clang::diag::err_drv_invalid_version_number) |
| 470 | << OSXVersion->getAsString(Args); |
| 471 | } else { |
| 472 | assert(iPhoneVersion && "Unknown target platform!"); |
| 473 | if (!Driver::GetReleaseVersion(iPhoneVersion->getValue(Args), Major, Minor, |
| 474 | Micro, HadExtra) || HadExtra || |
| 475 | Major >= 10 || Minor >= 100 || Micro >= 100) |
| 476 | getDriver().Diag(clang::diag::err_drv_invalid_version_number) |
| 477 | << iPhoneVersion->getAsString(Args); |
| 478 | } |
| 479 | setTarget(iPhoneVersion, Major, Minor, Micro); |
| 480 | |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 481 | for (ArgList::const_iterator it = Args.begin(), |
| 482 | ie = Args.end(); it != ie; ++it) { |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 483 | Arg *A = *it; |
| 484 | |
| 485 | if (A->getOption().matches(options::OPT_Xarch__)) { |
| 486 | // FIXME: Canonicalize name. |
| 487 | if (getArchName() != A->getValue(Args, 0)) |
| 488 | continue; |
| 489 | |
Daniel Dunbar | 0e10031 | 2010-06-14 21:23:08 +0000 | [diff] [blame^] | 490 | unsigned Index = Args.getBaseArgs().MakeIndex(A->getValue(Args, 1)); |
| 491 | unsigned Prev = Index; |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 492 | Arg *XarchArg = Opts.ParseOneArg(Args, Index); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 493 | |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 494 | // If the argument parsing failed or more than one argument was |
| 495 | // consumed, the -Xarch_ argument's parameter tried to consume |
| 496 | // extra arguments. Emit an error and ignore. |
| 497 | // |
| 498 | // We also want to disallow any options which would alter the |
| 499 | // driver behavior; that isn't going to work in our model. We |
| 500 | // use isDriverOption() as an approximation, although things |
| 501 | // like -O4 are going to slip through. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 502 | if (!XarchArg || Index > Prev + 1 || |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 503 | XarchArg->getOption().isDriverOption()) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 504 | getDriver().Diag(clang::diag::err_drv_invalid_Xarch_argument) |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 505 | << A->getAsString(Args); |
| 506 | continue; |
| 507 | } |
| 508 | |
Daniel Dunbar | 478edc2 | 2009-03-29 22:29:05 +0000 | [diff] [blame] | 509 | XarchArg->setBaseArg(A); |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 510 | A = XarchArg; |
Daniel Dunbar | 0e10031 | 2010-06-14 21:23:08 +0000 | [diff] [blame^] | 511 | |
| 512 | DAL->AddSynthesizedArg(A); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 513 | } |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 514 | |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 515 | // Sob. These is strictly gcc compatible for the time being. Apple |
| 516 | // gcc translates options twice, which means that self-expanding |
| 517 | // options add duplicates. |
Daniel Dunbar | 9e1f982 | 2009-11-19 04:14:53 +0000 | [diff] [blame] | 518 | switch ((options::ID) A->getOption().getID()) { |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 519 | default: |
| 520 | DAL->append(A); |
| 521 | break; |
| 522 | |
| 523 | case options::OPT_mkernel: |
| 524 | case options::OPT_fapple_kext: |
| 525 | DAL->append(A); |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 526 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_static)); |
| 527 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_static)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 528 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 529 | |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 530 | case options::OPT_dependency_file: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 531 | DAL->AddSeparateArg(A, Opts.getOption(options::OPT_MF), |
| 532 | A->getValue(Args)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 533 | break; |
| 534 | |
| 535 | case options::OPT_gfull: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 536 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag)); |
| 537 | DAL->AddFlagArg(A, |
| 538 | Opts.getOption(options::OPT_fno_eliminate_unused_debug_symbols)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 539 | break; |
| 540 | |
| 541 | case options::OPT_gused: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 542 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag)); |
| 543 | DAL->AddFlagArg(A, |
| 544 | Opts.getOption(options::OPT_feliminate_unused_debug_symbols)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 545 | break; |
| 546 | |
| 547 | case options::OPT_fterminated_vtables: |
| 548 | case options::OPT_findirect_virtual_calls: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 549 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_fapple_kext)); |
| 550 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_static)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 551 | break; |
| 552 | |
| 553 | case options::OPT_shared: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 554 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_dynamiclib)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 555 | break; |
| 556 | |
| 557 | case options::OPT_fconstant_cfstrings: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 558 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_mconstant_cfstrings)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 559 | break; |
| 560 | |
| 561 | case options::OPT_fno_constant_cfstrings: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 562 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_constant_cfstrings)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 563 | break; |
| 564 | |
| 565 | case options::OPT_Wnonportable_cfstrings: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 566 | DAL->AddFlagArg(A, |
| 567 | Opts.getOption(options::OPT_mwarn_nonportable_cfstrings)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 568 | break; |
| 569 | |
| 570 | case options::OPT_Wno_nonportable_cfstrings: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 571 | DAL->AddFlagArg(A, |
| 572 | Opts.getOption(options::OPT_mno_warn_nonportable_cfstrings)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 573 | break; |
| 574 | |
| 575 | case options::OPT_fpascal_strings: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 576 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_mpascal_strings)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 577 | break; |
| 578 | |
| 579 | case options::OPT_fno_pascal_strings: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 580 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_pascal_strings)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 581 | break; |
| 582 | } |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 583 | } |
| 584 | |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 585 | if (getTriple().getArch() == llvm::Triple::x86 || |
| 586 | getTriple().getArch() == llvm::Triple::x86_64) |
Daniel Dunbar | e4bdae7 | 2009-11-19 04:00:53 +0000 | [diff] [blame] | 587 | if (!Args.hasArgNoClaim(options::OPT_mtune_EQ)) |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 588 | DAL->AddJoinedArg(0, Opts.getOption(options::OPT_mtune_EQ), "core2"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 589 | |
| 590 | // Add the arch options based on the particular spelling of -arch, to match |
| 591 | // how the driver driver works. |
| 592 | if (BoundArch) { |
| 593 | llvm::StringRef Name = BoundArch; |
| 594 | const Option *MCpu = Opts.getOption(options::OPT_mcpu_EQ); |
| 595 | const Option *MArch = Opts.getOption(options::OPT_march_EQ); |
| 596 | |
| 597 | // This code must be kept in sync with LLVM's getArchTypeForDarwinArch, |
| 598 | // which defines the list of which architectures we accept. |
| 599 | if (Name == "ppc") |
| 600 | ; |
| 601 | else if (Name == "ppc601") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 602 | DAL->AddJoinedArg(0, MCpu, "601"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 603 | else if (Name == "ppc603") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 604 | DAL->AddJoinedArg(0, MCpu, "603"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 605 | else if (Name == "ppc604") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 606 | DAL->AddJoinedArg(0, MCpu, "604"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 607 | else if (Name == "ppc604e") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 608 | DAL->AddJoinedArg(0, MCpu, "604e"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 609 | else if (Name == "ppc750") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 610 | DAL->AddJoinedArg(0, MCpu, "750"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 611 | else if (Name == "ppc7400") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 612 | DAL->AddJoinedArg(0, MCpu, "7400"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 613 | else if (Name == "ppc7450") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 614 | DAL->AddJoinedArg(0, MCpu, "7450"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 615 | else if (Name == "ppc970") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 616 | DAL->AddJoinedArg(0, MCpu, "970"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 617 | |
| 618 | else if (Name == "ppc64") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 619 | DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 620 | |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 621 | else if (Name == "i386") |
| 622 | ; |
| 623 | else if (Name == "i486") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 624 | DAL->AddJoinedArg(0, MArch, "i486"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 625 | else if (Name == "i586") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 626 | DAL->AddJoinedArg(0, MArch, "i586"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 627 | else if (Name == "i686") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 628 | DAL->AddJoinedArg(0, MArch, "i686"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 629 | else if (Name == "pentium") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 630 | DAL->AddJoinedArg(0, MArch, "pentium"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 631 | else if (Name == "pentium2") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 632 | DAL->AddJoinedArg(0, MArch, "pentium2"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 633 | else if (Name == "pentpro") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 634 | DAL->AddJoinedArg(0, MArch, "pentiumpro"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 635 | else if (Name == "pentIIm3") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 636 | DAL->AddJoinedArg(0, MArch, "pentium2"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 637 | |
| 638 | else if (Name == "x86_64") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 639 | DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64)); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 640 | |
| 641 | else if (Name == "arm") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 642 | DAL->AddJoinedArg(0, MArch, "armv4t"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 643 | else if (Name == "armv4t") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 644 | DAL->AddJoinedArg(0, MArch, "armv4t"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 645 | else if (Name == "armv5") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 646 | DAL->AddJoinedArg(0, MArch, "armv5tej"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 647 | else if (Name == "xscale") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 648 | DAL->AddJoinedArg(0, MArch, "xscale"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 649 | else if (Name == "armv6") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 650 | DAL->AddJoinedArg(0, MArch, "armv6k"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 651 | else if (Name == "armv7") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 652 | DAL->AddJoinedArg(0, MArch, "armv7a"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 653 | |
| 654 | else |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 655 | llvm_unreachable("invalid Darwin arch"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 656 | } |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 657 | |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 658 | return DAL; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 659 | } |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 660 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 661 | bool Darwin::IsUnwindTablesDefault() const { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 662 | // FIXME: Gross; we should probably have some separate target |
| 663 | // definition, possibly even reusing the one in clang. |
| 664 | return getArchName() == "x86_64"; |
| 665 | } |
| 666 | |
Daniel Dunbar | f2d8b9f | 2009-12-18 02:43:17 +0000 | [diff] [blame] | 667 | bool Darwin::UseDwarfDebugFlags() const { |
| 668 | if (const char *S = ::getenv("RC_DEBUG_OPTIONS")) |
| 669 | return S[0] != '\0'; |
| 670 | return false; |
| 671 | } |
| 672 | |
Daniel Dunbar | b2987d1 | 2010-02-10 18:49:11 +0000 | [diff] [blame] | 673 | bool Darwin::UseSjLjExceptions() const { |
| 674 | // Darwin uses SjLj exceptions on ARM. |
| 675 | return (getTriple().getArch() == llvm::Triple::arm || |
| 676 | getTriple().getArch() == llvm::Triple::thumb); |
| 677 | } |
| 678 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 679 | const char *Darwin::GetDefaultRelocationModel() const { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 680 | return "pic"; |
| 681 | } |
| 682 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 683 | const char *Darwin::GetForcedPicModel() const { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 684 | if (getArchName() == "x86_64") |
| 685 | return "pic"; |
| 686 | return 0; |
| 687 | } |
| 688 | |
Daniel Dunbar | 43a9b32 | 2010-04-10 16:20:23 +0000 | [diff] [blame] | 689 | bool Darwin::SupportsObjCGC() const { |
| 690 | // Garbage collection is supported everywhere except on iPhone OS. |
| 691 | return !isTargetIPhoneOS(); |
| 692 | } |
| 693 | |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 694 | /// Generic_GCC - A tool chain using the 'gcc' command to perform |
| 695 | /// all subcommands; this relies on gcc translating the majority of |
| 696 | /// command line options. |
| 697 | |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 698 | Generic_GCC::Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 699 | : ToolChain(Host, Triple) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 700 | getProgramPaths().push_back(getDriver().Dir); |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 701 | } |
| 702 | |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 703 | Generic_GCC::~Generic_GCC() { |
| 704 | // Free tool implementations. |
| 705 | for (llvm::DenseMap<unsigned, Tool*>::iterator |
| 706 | it = Tools.begin(), ie = Tools.end(); it != ie; ++it) |
| 707 | delete it->second; |
| 708 | } |
| 709 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 710 | Tool &Generic_GCC::SelectTool(const Compilation &C, |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 711 | const JobAction &JA) const { |
| 712 | Action::ActionClass Key; |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 713 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 714 | Key = Action::AnalyzeJobClass; |
| 715 | else |
| 716 | Key = JA.getKind(); |
| 717 | |
| 718 | Tool *&T = Tools[Key]; |
| 719 | if (!T) { |
| 720 | switch (Key) { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 721 | case Action::InputClass: |
| 722 | case Action::BindArchClass: |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 723 | assert(0 && "Invalid tool kind."); |
| 724 | case Action::PreprocessJobClass: |
| 725 | T = new tools::gcc::Preprocess(*this); break; |
| 726 | case Action::PrecompileJobClass: |
| 727 | T = new tools::gcc::Precompile(*this); break; |
| 728 | case Action::AnalyzeJobClass: |
| 729 | T = new tools::Clang(*this); break; |
| 730 | case Action::CompileJobClass: |
| 731 | T = new tools::gcc::Compile(*this); break; |
| 732 | case Action::AssembleJobClass: |
| 733 | T = new tools::gcc::Assemble(*this); break; |
| 734 | case Action::LinkJobClass: |
| 735 | T = new tools::gcc::Link(*this); break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 736 | |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 737 | // This is a bit ungeneric, but the only platform using a driver |
| 738 | // driver is Darwin. |
| 739 | case Action::LipoJobClass: |
| 740 | T = new tools::darwin::Lipo(*this); break; |
Daniel Dunbar | 6e0f254 | 2010-06-04 18:28:36 +0000 | [diff] [blame] | 741 | case Action::DsymutilJobClass: |
| 742 | T = new tools::darwin::Dsymutil(*this); break; |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 743 | } |
| 744 | } |
| 745 | |
| 746 | return *T; |
| 747 | } |
| 748 | |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 749 | bool Generic_GCC::IsUnwindTablesDefault() const { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 750 | // FIXME: Gross; we should probably have some separate target |
| 751 | // definition, possibly even reusing the one in clang. |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 752 | return getArchName() == "x86_64"; |
| 753 | } |
| 754 | |
| 755 | const char *Generic_GCC::GetDefaultRelocationModel() const { |
| 756 | return "static"; |
| 757 | } |
| 758 | |
| 759 | const char *Generic_GCC::GetForcedPicModel() const { |
| 760 | return 0; |
| 761 | } |
Daniel Dunbar | f3cad36 | 2009-03-25 04:13:45 +0000 | [diff] [blame] | 762 | |
Chris Lattner | 3a47c4e | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 763 | /// TCEToolChain - A tool chain using the llvm bitcode tools to perform |
| 764 | /// all subcommands. See http://tce.cs.tut.fi for our peculiar target. |
| 765 | /// Currently does not support anything else but compilation. |
| 766 | |
| 767 | TCEToolChain::TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple) |
| 768 | : ToolChain(Host, Triple) { |
| 769 | // Path mangling to find libexec |
| 770 | std::string Path(getDriver().Dir); |
| 771 | |
| 772 | Path += "/../libexec"; |
| 773 | getProgramPaths().push_back(Path); |
| 774 | } |
| 775 | |
| 776 | TCEToolChain::~TCEToolChain() { |
| 777 | for (llvm::DenseMap<unsigned, Tool*>::iterator |
| 778 | it = Tools.begin(), ie = Tools.end(); it != ie; ++it) |
| 779 | delete it->second; |
| 780 | } |
| 781 | |
| 782 | bool TCEToolChain::IsMathErrnoDefault() const { |
| 783 | return true; |
| 784 | } |
| 785 | |
| 786 | bool TCEToolChain::IsUnwindTablesDefault() const { |
| 787 | return false; |
| 788 | } |
| 789 | |
| 790 | const char *TCEToolChain::GetDefaultRelocationModel() const { |
| 791 | return "static"; |
| 792 | } |
| 793 | |
| 794 | const char *TCEToolChain::GetForcedPicModel() const { |
| 795 | return 0; |
| 796 | } |
| 797 | |
| 798 | Tool &TCEToolChain::SelectTool(const Compilation &C, |
| 799 | const JobAction &JA) const { |
| 800 | Action::ActionClass Key; |
| 801 | Key = Action::AnalyzeJobClass; |
| 802 | |
| 803 | Tool *&T = Tools[Key]; |
| 804 | if (!T) { |
| 805 | switch (Key) { |
| 806 | case Action::PreprocessJobClass: |
| 807 | T = new tools::gcc::Preprocess(*this); break; |
| 808 | case Action::AnalyzeJobClass: |
| 809 | T = new tools::Clang(*this); break; |
| 810 | default: |
| 811 | assert(false && "Unsupported action for TCE target."); |
| 812 | } |
| 813 | } |
| 814 | return *T; |
| 815 | } |
| 816 | |
Daniel Dunbar | f7b8eec | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 817 | /// OpenBSD - OpenBSD tool chain which can call as(1) and ld(1) directly. |
| 818 | |
| 819 | OpenBSD::OpenBSD(const HostInfo &Host, const llvm::Triple& Triple) |
| 820 | : Generic_GCC(Host, Triple) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 821 | getFilePaths().push_back(getDriver().Dir + "/../lib"); |
Daniel Dunbar | f7b8eec | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 822 | getFilePaths().push_back("/usr/lib"); |
| 823 | } |
| 824 | |
| 825 | Tool &OpenBSD::SelectTool(const Compilation &C, const JobAction &JA) const { |
| 826 | Action::ActionClass Key; |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 827 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
Daniel Dunbar | f7b8eec | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 828 | Key = Action::AnalyzeJobClass; |
| 829 | else |
| 830 | Key = JA.getKind(); |
| 831 | |
| 832 | Tool *&T = Tools[Key]; |
| 833 | if (!T) { |
| 834 | switch (Key) { |
| 835 | case Action::AssembleJobClass: |
| 836 | T = new tools::openbsd::Assemble(*this); break; |
| 837 | case Action::LinkJobClass: |
| 838 | T = new tools::openbsd::Link(*this); break; |
| 839 | default: |
| 840 | T = &Generic_GCC::SelectTool(C, JA); |
| 841 | } |
| 842 | } |
| 843 | |
| 844 | return *T; |
| 845 | } |
| 846 | |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 847 | /// FreeBSD - FreeBSD tool chain which can call as(1) and ld(1) directly. |
| 848 | |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 849 | FreeBSD::FreeBSD(const HostInfo &Host, const llvm::Triple& Triple, bool Lib32) |
| 850 | : Generic_GCC(Host, Triple) { |
Daniel Dunbar | bc53466 | 2009-04-02 18:30:04 +0000 | [diff] [blame] | 851 | if (Lib32) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 852 | getFilePaths().push_back(getDriver().Dir + "/../lib32"); |
Daniel Dunbar | bc53466 | 2009-04-02 18:30:04 +0000 | [diff] [blame] | 853 | getFilePaths().push_back("/usr/lib32"); |
| 854 | } else { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 855 | getFilePaths().push_back(getDriver().Dir + "/../lib"); |
Daniel Dunbar | bc53466 | 2009-04-02 18:30:04 +0000 | [diff] [blame] | 856 | getFilePaths().push_back("/usr/lib"); |
| 857 | } |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | Tool &FreeBSD::SelectTool(const Compilation &C, const JobAction &JA) const { |
| 861 | Action::ActionClass Key; |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 862 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 863 | Key = Action::AnalyzeJobClass; |
| 864 | else |
| 865 | Key = JA.getKind(); |
| 866 | |
| 867 | Tool *&T = Tools[Key]; |
| 868 | if (!T) { |
| 869 | switch (Key) { |
Daniel Dunbar | 68a31d4 | 2009-03-31 17:45:15 +0000 | [diff] [blame] | 870 | case Action::AssembleJobClass: |
| 871 | T = new tools::freebsd::Assemble(*this); break; |
Daniel Dunbar | 008f54a | 2009-04-01 19:36:32 +0000 | [diff] [blame] | 872 | case Action::LinkJobClass: |
| 873 | T = new tools::freebsd::Link(*this); break; |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 874 | default: |
| 875 | T = &Generic_GCC::SelectTool(C, JA); |
| 876 | } |
| 877 | } |
| 878 | |
| 879 | return *T; |
| 880 | } |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 881 | |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 882 | /// AuroraUX - AuroraUX tool chain which can call as(1) and ld(1) directly. |
| 883 | |
| 884 | AuroraUX::AuroraUX(const HostInfo &Host, const llvm::Triple& Triple) |
| 885 | : Generic_GCC(Host, Triple) { |
| 886 | |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 887 | getProgramPaths().push_back(getDriver().Dir); |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 888 | |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 889 | getFilePaths().push_back(getDriver().Dir + "/../lib"); |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 890 | getFilePaths().push_back("/usr/lib"); |
| 891 | getFilePaths().push_back("/usr/sfw/lib"); |
| 892 | getFilePaths().push_back("/opt/gcc4/lib"); |
Edward O'Callaghan | 7adf949 | 2009-10-15 07:44:07 +0000 | [diff] [blame] | 893 | getFilePaths().push_back("/opt/gcc4/lib/gcc/i386-pc-solaris2.11/4.2.4"); |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 894 | |
| 895 | } |
| 896 | |
| 897 | Tool &AuroraUX::SelectTool(const Compilation &C, const JobAction &JA) const { |
| 898 | Action::ActionClass Key; |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 899 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 900 | Key = Action::AnalyzeJobClass; |
| 901 | else |
| 902 | Key = JA.getKind(); |
| 903 | |
| 904 | Tool *&T = Tools[Key]; |
| 905 | if (!T) { |
| 906 | switch (Key) { |
| 907 | case Action::AssembleJobClass: |
| 908 | T = new tools::auroraux::Assemble(*this); break; |
| 909 | case Action::LinkJobClass: |
| 910 | T = new tools::auroraux::Link(*this); break; |
| 911 | default: |
| 912 | T = &Generic_GCC::SelectTool(C, JA); |
| 913 | } |
| 914 | } |
| 915 | |
| 916 | return *T; |
| 917 | } |
| 918 | |
| 919 | |
Eli Friedman | 6b3454a | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 920 | /// Linux toolchain (very bare-bones at the moment). |
| 921 | |
| 922 | Linux::Linux(const HostInfo &Host, const llvm::Triple& Triple) |
| 923 | : Generic_GCC(Host, Triple) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 924 | getFilePaths().push_back(getDriver().Dir + "/../lib/clang/1.0/"); |
Eli Friedman | 6b3454a | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 925 | getFilePaths().push_back("/lib/"); |
| 926 | getFilePaths().push_back("/usr/lib/"); |
Daniel Dunbar | a9822de | 2009-08-06 01:47:11 +0000 | [diff] [blame] | 927 | |
| 928 | // Depending on the Linux distribution, any combination of lib{,32,64} is |
| 929 | // possible. E.g. Debian uses lib and lib32 for mixed i386/x86-64 systems, |
| 930 | // openSUSE uses lib and lib64 for the same purpose. |
| 931 | getFilePaths().push_back("/lib32/"); |
| 932 | getFilePaths().push_back("/usr/lib32/"); |
| 933 | getFilePaths().push_back("/lib64/"); |
| 934 | getFilePaths().push_back("/usr/lib64/"); |
| 935 | |
Eli Friedman | 6b3454a | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 936 | // FIXME: Figure out some way to get gcc's libdir |
| 937 | // (e.g. /usr/lib/gcc/i486-linux-gnu/4.3/ for Ubuntu 32-bit); we need |
| 938 | // crtbegin.o/crtend.o/etc., and want static versions of various |
| 939 | // libraries. If we had our own crtbegin.o/crtend.o/etc, we could probably |
| 940 | // get away with using shared versions in /usr/lib, though. |
| 941 | // We could fall back to the approach we used for includes (a massive |
| 942 | // list), but that's messy at best. |
| 943 | } |
| 944 | |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 945 | /// DragonFly - DragonFly tool chain which can call as(1) and ld(1) directly. |
| 946 | |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 947 | DragonFly::DragonFly(const HostInfo &Host, const llvm::Triple& Triple) |
| 948 | : Generic_GCC(Host, Triple) { |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 949 | |
| 950 | // Path mangling to find libexec |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 951 | getProgramPaths().push_back(getDriver().Dir); |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 952 | |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 953 | getFilePaths().push_back(getDriver().Dir + "/../lib"); |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 954 | getFilePaths().push_back("/usr/lib"); |
| 955 | getFilePaths().push_back("/usr/lib/gcc41"); |
| 956 | } |
| 957 | |
| 958 | Tool &DragonFly::SelectTool(const Compilation &C, const JobAction &JA) const { |
| 959 | Action::ActionClass Key; |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 960 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 961 | Key = Action::AnalyzeJobClass; |
| 962 | else |
| 963 | Key = JA.getKind(); |
| 964 | |
| 965 | Tool *&T = Tools[Key]; |
| 966 | if (!T) { |
| 967 | switch (Key) { |
| 968 | case Action::AssembleJobClass: |
| 969 | T = new tools::dragonfly::Assemble(*this); break; |
| 970 | case Action::LinkJobClass: |
| 971 | T = new tools::dragonfly::Link(*this); break; |
| 972 | default: |
| 973 | T = &Generic_GCC::SelectTool(C, JA); |
| 974 | } |
| 975 | } |
| 976 | |
| 977 | return *T; |
| 978 | } |