summaryrefslogtreecommitdiffstats
path: root/abs/extra/llvm/clang-3.1-fix-libprofile_rt.a-location.patch
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2014-04-30 18:03:49 (GMT)
committerBritney Fransen <brfransen@gmail.com>2014-04-30 18:03:49 (GMT)
commit9c2d818e627d8763a22d860b8f1d8977aa853102 (patch)
treea296c413144e50ca4ebf521a021ea2ec7dca9ea6 /abs/extra/llvm/clang-3.1-fix-libprofile_rt.a-location.patch
parent6e4889e232ba0cdaf498eb2c624a0d6a496e45fc (diff)
downloadlinhes_pkgbuild-9c2d818e627d8763a22d860b8f1d8977aa853102.zip
linhes_pkgbuild-9c2d818e627d8763a22d860b8f1d8977aa853102.tar.gz
linhes_pkgbuild-9c2d818e627d8763a22d860b8f1d8977aa853102.tar.bz2
llvm: update to 3.4
Diffstat (limited to 'abs/extra/llvm/clang-3.1-fix-libprofile_rt.a-location.patch')
-rw-r--r--abs/extra/llvm/clang-3.1-fix-libprofile_rt.a-location.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/abs/extra/llvm/clang-3.1-fix-libprofile_rt.a-location.patch b/abs/extra/llvm/clang-3.1-fix-libprofile_rt.a-location.patch
deleted file mode 100644
index 080aa4f..0000000
--- a/abs/extra/llvm/clang-3.1-fix-libprofile_rt.a-location.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -upr clang-3.1.src.orig/lib/Driver/Tools.cpp clang-3.1.src/lib/Driver/Tools.cpp
---- clang-3.1.src.orig/lib/Driver/Tools.cpp 2012-04-19 00:32:25.000000000 +0300
-+++ clang-3.1.src/lib/Driver/Tools.cpp 2012-05-23 21:12:08.000000000 +0300
-@@ -193,7 +193,7 @@ static void addProfileRT(const ToolChain
- // libprofile_rt.so. We used to use the -l:libprofile_rt.a syntax, but that is
- // not supported by old linkers.
- std::string ProfileRT =
-- std::string(TC.getDriver().Dir) + "/../lib/libprofile_rt.a";
-+ std::string(TC.getDriver().Dir) + "/../lib/llvm/libprofile_rt.a";
-
- CmdArgs.push_back(Args.MakeArgString(ProfileRT));
- }