diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-01-06 07:37:15 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-01-06 07:37:15 +0000 |
| commit | 3fc473df249a44eaedb549f9d8037ea075d0f782 (patch) | |
| tree | 206059d9e0d8b772da1f4fbcba0b00b66fc59637 | |
| parent | b211af11e213ae3f77dd96f37c7d79178613ea01 (diff) | |
Notes
| -rw-r--r-- | sys/conf/ldscript.amd64 | 4 | ||||
| -rw-r--r-- | sys/conf/ldscript.i386 | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/sys/conf/ldscript.amd64 b/sys/conf/ldscript.amd64 index 515ffbab88d3..181e36665f29 100644 --- a/sys/conf/ldscript.amd64 +++ b/sys/conf/ldscript.amd64 @@ -65,10 +65,14 @@ SECTIONS CONSTRUCTORS } .data1 : { *(.data1) } + _start_ctors = .; + PROVIDE (start_ctors = .); .ctors : { *(.ctors) } + _stop_ctors = .; + PROVIDE (stop_ctors = .); .dtors : { *(.dtors) diff --git a/sys/conf/ldscript.i386 b/sys/conf/ldscript.i386 index 515ffbab88d3..181e36665f29 100644 --- a/sys/conf/ldscript.i386 +++ b/sys/conf/ldscript.i386 @@ -65,10 +65,14 @@ SECTIONS CONSTRUCTORS } .data1 : { *(.data1) } + _start_ctors = .; + PROVIDE (start_ctors = .); .ctors : { *(.ctors) } + _stop_ctors = .; + PROVIDE (stop_ctors = .); .dtors : { *(.dtors) |
