aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/arch/x86/minios-x86_32.lds
diff options
context:
space:
mode:
Diffstat (limited to 'extras/mini-os/arch/x86/minios-x86_32.lds')
-rw-r--r--extras/mini-os/arch/x86/minios-x86_32.lds6
1 files changed, 3 insertions, 3 deletions
diff --git a/extras/mini-os/arch/x86/minios-x86_32.lds b/extras/mini-os/arch/x86/minios-x86_32.lds
index 40a92ee4e6..13796db768 100644
--- a/extras/mini-os/arch/x86/minios-x86_32.lds
+++ b/extras/mini-os/arch/x86/minios-x86_32.lds
@@ -31,8 +31,8 @@ SECTIONS
.ctors : {
__CTOR_LIST__ = .;
LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)
- *(SORT_BY_NAME(.ctors))
- SORT_BY_NAME(CONSTRUCTORS)
+ *(.ctors)
+ CONSTRUCTORS
LONG(0)
__CTOR_END__ = .;
}
@@ -40,7 +40,7 @@ SECTIONS
.dtors : {
__DTOR_LIST__ = .;
LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2)
- *(SORT_BY_NAME(.dtors))
+ *(.dtors)
LONG(0)
__DTOR_END__ = .;
}