diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2012-11-21 13:57:05 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2012-11-21 13:57:05 +0200 |
commit | 0672ebbe2a455152b6eaa2fc35327d4a8f738861 (patch) | |
tree | 381a9abbeacb8d53aa75716863e67e84f4e62803 /sys-devel/llvm/files/llvm-2.8-darwin8.patch | |
parent | fe1db5b4c5c1ba306799f3167948f90eadaf38fa (diff) |
new file: sys-devel/llvm/files/cl-patches/0001-r600-Add-some-intrinsic-definitions.patch
new file: sys-devel/llvm/files/cl-patches/0002-r600-Add-get_global_size-and-get_local_size-intrinsi.patch
new file: sys-devel/llvm/files/llvm-2.6-commandguide-nops.patch
new file: sys-devel/llvm/files/llvm-2.7-nodoctargz.patch
new file: sys-devel/llvm/files/llvm-2.8-alignof.patch
new file: sys-devel/llvm/files/llvm-2.8-darwin8.patch
new file: sys-devel/llvm/files/llvm-2.9-Operator.h-c++0x.patch
new file: sys-devel/llvm/files/llvm-2.9-nodoctargz.patch
new file: sys-devel/llvm/files/llvm-3.0-PPCCompilationCallbackC_static.patch
new file: sys-devel/llvm/files/llvm-3.0-PPC_macro.patch
new file: sys-devel/llvm/files/llvm-3.0-gold_LTO_link.patch
new file: sys-devel/llvm/files/llvm-3.0-ocaml_install.patch
new file: sys-devel/llvm/files/llvm-3.0-set_soname.patch
new file: sys-devel/llvm/files/llvm-3.1-fix_debug_line_info.patch
new file: sys-devel/llvm/files/llvm-3.1-ivybridge_support.patch
new file: sys-devel/llvm/files/llvm-3.2-nodoctargz.patch
new file: sys-devel/llvm/llvm-9999.ebuild
Diffstat (limited to 'sys-devel/llvm/files/llvm-2.8-darwin8.patch')
-rw-r--r-- | sys-devel/llvm/files/llvm-2.8-darwin8.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sys-devel/llvm/files/llvm-2.8-darwin8.patch b/sys-devel/llvm/files/llvm-2.8-darwin8.patch new file mode 100644 index 0000000..284ab47 --- /dev/null +++ b/sys-devel/llvm/files/llvm-2.8-darwin8.patch @@ -0,0 +1,15 @@ +Avoid like in Makefile.rules +ld: -rpath can only be used when targeting Mac OS X 10.5 or later + +--- unittests/Makefile.unittest ++++ unittests/Makefile.unittest +@@ -37,7 +37,9 @@ + ifeq ($(ENABLE_SHARED), 1) + # Add the absolute path to the dynamic library. This is ok because + # we'll never install unittests. ++ifneq ($(DARWIN_MAJVERS),4) + LD.Flags += $(RPATH) -Wl,$(SharedLibDir) ++endif + # Also set {DYLD,LD}_LIBRARY_PATH because OSX ignores the rpath most + # of the time. + Run.Shared := $(SHLIBPATH_VAR)="$(SharedLibDir)$${$(SHLIBPATH_VAR):+:}$$$(SHLIBPATH_VAR)" |