Skip to content

Commit 8105c0f

Browse files
committed
fixup: not everything has to be aligned
1 parent 6c70514 commit 8105c0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/trusted/service_runtime/linux/nacl_bootstrap.x

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ SECTIONS {
6565
* It's both part of the text PT_LOAD segment (like other rodata) and
6666
* it's what the PT_NOTE header points to.
6767
*/
68-
.note.gnu.build-id : ALIGN(CONSTANT(MAXPAGESIZE)) {
68+
.note.gnu.build-id : {
6969
*(.note.gnu.build-id)
7070
} :text :note
7171

@@ -118,7 +118,7 @@ SECTIONS {
118118
* be clobbered by NaCl. We want this to be visible at its fixed address
119119
* in the memory image so the debugger can make sense of things.
120120
*/
121-
.r_debug : ALIGN(CONSTANT(MAXPAGESIZE)) {
121+
.r_debug : {
122122
*(.r_debug)
123123
} :r_debug
124124

0 commit comments

Comments
 (0)