Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(860)

Unified Diff: nacl/dyn-link/ldscripts/elf64_nacl.x.static

Issue 22527004: Drop section rewriting and format fixes. (Closed) Base URL: http://git.chromium.org/native_client/nacl-glibc.git@master
Patch Set: fixes Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « nacl/dyn-link/ldscripts/elf64_nacl.xs ('k') | nacl/dyn-link/ldscripts/elf_nacl.x » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nacl/dyn-link/ldscripts/elf64_nacl.x.static
diff --git a/nacl/dyn-link/ldscripts/elf64_nacl.x.static b/nacl/dyn-link/ldscripts/elf64_nacl.x.static
index 01b261bd35ba8c922b443dc223047fd0c1b2e8b9..f21dd6745822996f5b4af15e43ea1c34b1d1f6a6 100644
--- a/nacl/dyn-link/ldscripts/elf64_nacl.x.static
+++ b/nacl/dyn-link/ldscripts/elf64_nacl.x.static
@@ -52,8 +52,10 @@ SECTIONS
*(.note.gnu.build-id)
PROVIDE_HIDDEN (__note_gnu_build_id_end = .);
} :seg_rodata :seg_note
- .dummy : {} :seg_rodata
- .hash : { *(.hash) }
+ /* :seg_rodata is on .dummy rather than on .hash to avoid breaking the linker
+ script munging that glibc's Makerules does using sed. */
+ .dummy : {} :seg_rodata
+ .hash : { *(.hash) }
.gnu.hash : { *(.gnu.hash) }
.dynsym : { *(.dynsym) }
.dynstr : { *(.dynstr) }
« no previous file with comments | « nacl/dyn-link/ldscripts/elf64_nacl.xs ('k') | nacl/dyn-link/ldscripts/elf_nacl.x » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698