summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2016-07-10 19:41:23 +0200
committerFabian Groffen <grobian@gentoo.org>2016-07-10 19:41:39 +0200
commit2dcc5b74a0f2cd5912cb838da1d49291fd909843 (patch)
tree84f8dfc4ccc261f57a8975d6c52de79f3707b429 /sys-devel/binutils-apple/files/ld64-127.2-ppc-range-warning.patch
parenteclass/cargo: improve variable names (diff)
downloadgentoo-2dcc5b74a0f2cd5912cb838da1d49291fd909843.tar.gz
gentoo-2dcc5b74a0f2cd5912cb838da1d49291fd909843.tar.bz2
gentoo-2dcc5b74a0f2cd5912cb838da1d49291fd909843.zip
sys-devel/binutils-apple: cleanup old
Package-Manager: portage-2.2.28
Diffstat (limited to 'sys-devel/binutils-apple/files/ld64-127.2-ppc-range-warning.patch')
-rw-r--r--sys-devel/binutils-apple/files/ld64-127.2-ppc-range-warning.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/sys-devel/binutils-apple/files/ld64-127.2-ppc-range-warning.patch b/sys-devel/binutils-apple/files/ld64-127.2-ppc-range-warning.patch
deleted file mode 100644
index c9f850823939..000000000000
--- a/sys-devel/binutils-apple/files/ld64-127.2-ppc-range-warning.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Insipred by the comment here:
-http://bugs.freepascal.org/view.php?id=20879
-It looks like the PPC case is missing, hence add this. Without, we get
-linker errors for compiling packages like Python and TexLive.
-
---- src/ld/OutputFile.cpp
-+++ src/ld/OutputFile.cpp
-@@ -807,7 +807,7 @@
- // is encoded in mach-o the same as:
- // .long _foo + 0x40000000
- // so if _foo lays out to 0xC0000100, the first is ok, but the second is not.
-- if ( (_options.architecture() == CPU_TYPE_ARM) || (_options.architecture() == CPU_TYPE_I386) ) {
-+ if ( (_options.architecture() == CPU_TYPE_ARM) || (_options.architecture() == CPU_TYPE_I386) || (_options.architecture() == CPU_TYPE_POWERPC) ) {
- // Unlikely userland code does funky stuff like this, so warn for them, but not warn for -preload
- if ( _options.outputKind() != Options::kPreload ) {
- warning("32-bit absolute address out of range (0x%08llX max is 4GB): from %s + 0x%08X (0x%08llX) to 0x%08llX",