summaryrefslogtreecommitdiff
path: root/sys/conf/ldscript.i386
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2018-10-11 20:44:25 +0000
committerDimitry Andric <dim@FreeBSD.org>2018-10-11 20:44:25 +0000
commitf3e1dfebebadabb5fe05cc866f7a9c11cefa7df0 (patch)
treef18ced46f159a6b3f27a3ab5bc70d2b06e82ee10 /sys/conf/ldscript.i386
parentab530bf0dd7a0963626960897ef8f099e64cdcc5 (diff)
downloadsrc-test2-f3e1dfebebadabb5fe05cc866f7a9c11cefa7df0.tar.gz
src-test2-f3e1dfebebadabb5fe05cc866f7a9c11cefa7df0.zip
Notes
Diffstat (limited to 'sys/conf/ldscript.i386')
-rw-r--r--sys/conf/ldscript.i3863
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/conf/ldscript.i386 b/sys/conf/ldscript.i386
index 21eab2a136ed..e5d0f0cf5f43 100644
--- a/sys/conf/ldscript.i386
+++ b/sys/conf/ldscript.i386
@@ -140,9 +140,9 @@ SECTIONS
}
.data1 : { *(.data1) }
_edata = .; PROVIDE (edata = .);
- __bss_start = .;
.bss :
{
+ __bss_start = .;
*(.dynbss)
*(.bss .bss.* .gnu.linkonce.b.*)
*(COMMON)
@@ -152,6 +152,7 @@ SECTIONS
FIXME: Why do we need it? When there is no .bss section, we don't
pad the .data section. */
. = ALIGN(. != 0 ? 32 / 8 : 1);
+ __bss_end = .;
}
. = ALIGN(32 / 8);
. = ALIGN(32 / 8);