summaryrefslogtreecommitdiff
path: root/emulators/qemu-devel/files/patch-ppc.ld
diff options
context:
space:
mode:
authorJuergen Lock <nox@FreeBSD.org>2013-07-06 17:09:57 +0000
committerJuergen Lock <nox@FreeBSD.org>2013-07-06 17:09:57 +0000
commitec69b9504eecb205cb2599cbe8418c4ba94def89 (patch)
tree126519caec35570c2a7030897103f05084a95184 /emulators/qemu-devel/files/patch-ppc.ld
parentUpdate to the 20130630 snapshot of GCC 4.9.0. (diff)
- Update to 1.5.1, announce message is here:
https://lists.gnu.org/archive/html/qemu-devel/2013-06/msg04798.html - Simplify bsd-user ld script handling. [1] - Make STATIC_LINK work again. - Add GTK knob. - Neither graphical UI can be built static, set IGNORE in that case. - Properly fix AES_* link errors by #defining those functions as QEMU_AES_* to avoid conflicts with AES_* in -lcrypto needed (at least) by -lcurl. - Add back CURL knob in the process. - Fix "Warning: vlan %d is not connected to host network" when using pcap. - Switch to USES= gmake. - Note: I did not backport sson's latest bsd-user patches which he has now in a github tree based on qemu git head, tho I have a seperate port of that tree on redports: svn co https://svn.redports.org/nox/emulators/qemu-devel-sson/ See also: https://wiki.freebsd.org/QemuUserModeHowTo Submitted by: emaste [1]
Diffstat (limited to 'emulators/qemu-devel/files/patch-ppc.ld')
-rw-r--r--emulators/qemu-devel/files/patch-ppc.ld41
1 files changed, 0 insertions, 41 deletions
diff --git a/emulators/qemu-devel/files/patch-ppc.ld b/emulators/qemu-devel/files/patch-ppc.ld
deleted file mode 100644
index bcd45b4657e9..000000000000
--- a/emulators/qemu-devel/files/patch-ppc.ld
+++ /dev/null
@@ -1,41 +0,0 @@
---- a/ldscripts/ppc.ld
-+++ b/ldscripts/ppc.ld
-@@ -99,7 +99,7 @@ SECTIONS
- PROVIDE (__init_array_start = .);
- KEEP (*(SORT(.init_array.*)))
- KEEP (*(.init_array))
-- PROVIDE (__init_array_end = .);
-+ PROVIDE(__init_array_end = .);
- }
- .fini_array :
- {
-@@ -140,9 +140,8 @@ SECTIONS
- .got1 : { *(.got1) }
- .got2 : { *(.got2) }
- .dynamic : { *(.dynamic) }
-- .got : SPECIAL { *(.got) }
-- . = DATA_SEGMENT_RELRO_END (0, .);
-- .plt : SPECIAL { *(.plt) }
-+ .got : { *(.got) }
-+ .plt : { *(.plt) }
- .data :
- {
- *(.data .data.* .gnu.linkonce.d.*)
-@@ -150,7 +149,7 @@ SECTIONS
- SORT(CONSTRUCTORS)
- }
- .data1 : { *(.data1) }
-- .got : SPECIAL { *(.got) }
-+ .got : { *(.got) }
- /* We want the small data sections together, so single-instruction offsets
- can access them all, and initialized data all before uninitialized, so
- we can shorten the on-disk segment size. */
-@@ -169,7 +168,7 @@ SECTIONS
- *(.scommon)
- PROVIDE (__sbss_end = .); PROVIDE (___sbss_end = .);
- }
-- .plt : SPECIAL { *(.plt) }
-+ .plt : { *(.plt) }
- .bss :
- {
- *(.dynbss)