summaryrefslogtreecommitdiff
path: root/sys-devel/clang/files/clang-3.0-freebsd-runtime-gcc-detection.patch
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2015-08-11 15:43:47 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2015-08-11 15:43:47 +0300
commita50c1e841fe9f62e6c2429a2c31fada4e197e39c (patch)
treed12db6083dca8ccc75ad94e095ea1a3dff77133a /sys-devel/clang/files/clang-3.0-freebsd-runtime-gcc-detection.patch
parent29fb4102d1984cfb865c5e6d152eb6e5468bd40f (diff)
spice: updated to new eapi
llvm, clang: removed broken ebuilds
Diffstat (limited to 'sys-devel/clang/files/clang-3.0-freebsd-runtime-gcc-detection.patch')
-rw-r--r--sys-devel/clang/files/clang-3.0-freebsd-runtime-gcc-detection.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/sys-devel/clang/files/clang-3.0-freebsd-runtime-gcc-detection.patch b/sys-devel/clang/files/clang-3.0-freebsd-runtime-gcc-detection.patch
deleted file mode 100644
index 5c016f5..0000000
--- a/sys-devel/clang/files/clang-3.0-freebsd-runtime-gcc-detection.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -upNr a/llvm-3.0.src/tools/clang/lib/Driver/ToolChains.cpp b/llvm-3.0.src/tools/clang/lib/Driver/ToolChains.cpp
---- a/llvm-3.0.src/tools/clang/lib/Driver/ToolChains.cpp 2012-05-23 15:45:01.333127000 -0400
-+++ b/llvm-3.0.src/tools/clang/lib/Driver/ToolChains.cpp 2012-05-23 16:16:26.023642076 -0400
-@@ -1215,6 +1215,16 @@ FreeBSD::FreeBSD(const HostInfo &Host, c
- } else {
- getFilePaths().push_back("/usr/lib");
- }
-+
-+ llvm::OwningPtr<llvm::MemoryBuffer> File;
-+ if (!llvm::MemoryBuffer::getFile("/etc/env.d/gcc/config-" + getDriver().DefaultHostTriple, File))
-+ {
-+ bool Exists;
-+ StringRef Version = File.get()->getBuffer().rsplit('-').second.substr(0,5);
-+ const std::string GentooPath = "/usr/lib/gcc/" + getDriver().DefaultHostTriple + "/" + Version.str();
-+ if (!llvm::sys::fs::exists(GentooPath + "/crtbegin.o", Exists) && Exists)
-+ getFilePaths().push_back(GentooPath);
-+ }
- }
-
- Tool &FreeBSD::SelectTool(const Compilation &C, const JobAction &JA,