summaryrefslogtreecommitdiffstats
path: root/abs/core/llvm/enable-lto.patch
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2011-07-21 07:25:14 (GMT)
committerBritney Fransen <brfransen@gmail.com>2011-07-21 07:25:14 (GMT)
commit56ff12b7fb2841e49431084a5b85d95fe8c9de2b (patch)
tree88afcc54e1ab91bc0f42b015a5fe066ffaf85bb6 /abs/core/llvm/enable-lto.patch
parent4ee0734b55d58f9b6088e781fbcdaab57a4a05a1 (diff)
downloadlinhes_pkgbuild-56ff12b7fb2841e49431084a5b85d95fe8c9de2b.zip
linhes_pkgbuild-56ff12b7fb2841e49431084a5b85d95fe8c9de2b.tar.gz
linhes_pkgbuild-56ff12b7fb2841e49431084a5b85d95fe8c9de2b.tar.bz2
llvm: Initial inclusion
Diffstat (limited to 'abs/core/llvm/enable-lto.patch')
-rw-r--r--abs/core/llvm/enable-lto.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/abs/core/llvm/enable-lto.patch b/abs/core/llvm/enable-lto.patch
new file mode 100644
index 0000000..40d9310
--- /dev/null
+++ b/abs/core/llvm/enable-lto.patch
@@ -0,0 +1,36 @@
+Index: lib/Driver/ToolChains.cpp
+===================================================================
+--- lib/Driver/ToolChains.cpp (revision 123373)
++++ lib/Driver/ToolChains.cpp (working copy)
+@@ -1398,11 +1398,11 @@
+ Lib = Lib64;
+ }
+
+- llvm::sys::Path LinkerPath(Base + "/../../../../" + GccTriple + "/bin/ld");
++ llvm::sys::Path LinkerPath(Base + "/../../../../" + GccTriple + "/bin/ld.gold");
+ if (!llvm::sys::fs::exists(LinkerPath.str(), Exists) && Exists)
+ Linker = LinkerPath.str();
+ else
+- Linker = GetProgramPath("ld");
++ Linker = GetProgramPath("ld.gold");
+
+ LinuxDistro Distro = DetectLinuxDistro(Arch);
+
+Index: lib/Driver/Tools.cpp
+===================================================================
+--- lib/Driver/Tools.cpp (revision 123373)
++++ lib/Driver/Tools.cpp (working copy)
+@@ -3412,11 +3412,11 @@
+ }
+ }
+
+- if (Args.hasArg(options::OPT_use_gold_plugin)) {
++ // if (Args.hasArg(options::OPT_use_gold_plugin)) {
+ CmdArgs.push_back("-plugin");
+ std::string Plugin = ToolChain.getDriver().Dir + "/../lib/LLVMgold.so";
+ CmdArgs.push_back(Args.MakeArgString(Plugin));
+- }
++ // }
+
+ C.addCommand(new Command(JA, *this, ToolChain.Linker.c_str(), CmdArgs));
+ }