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

Unified Diff: nacl/dyn-link/ldscripts/elf_nacl.x

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.x.static ('k') | nacl/dyn-link/ldscripts/elf_nacl.xs » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nacl/dyn-link/ldscripts/elf_nacl.x
diff --git a/nacl/dyn-link/ldscripts/elf_nacl.x b/nacl/dyn-link/ldscripts/elf_nacl.x
index 3fabd71fe582faec62e9aa632550c46d26a910e5..61275c98a79892137ffff72e1a124ea681f593a4 100644
--- a/nacl/dyn-link/ldscripts/elf_nacl.x
+++ b/nacl/dyn-link/ldscripts/elf_nacl.x
@@ -55,7 +55,9 @@ SECTIONS
*(.note.gnu.build-id)
PROVIDE_HIDDEN (__note_gnu_build_id_end = .);
} :seg_rodata :seg_note
- .dummy : {} :seg_rodata
+ /* :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) }
« no previous file with comments | « nacl/dyn-link/ldscripts/elf64_nacl.x.static ('k') | nacl/dyn-link/ldscripts/elf_nacl.xs » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698