]> xenbits.xensource.com Git - mini-os.git/commitdiff
stubdom: fixes for old gcc & binutils
authorKeir Fraser <keir.fraser@citrix.com>
Fri, 11 Jul 2008 14:37:31 +0000 (15:37 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Fri, 11 Jul 2008 14:37:31 +0000 (15:37 +0100)
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
arch/ia64/minios-ia64.lds
arch/x86/minios-x86_32.lds
arch/x86/minios-x86_64.lds

index bd9274b86cfcb152ca135475344bda53dd656c95..df616c8a507a3f6a2b23fa95db2c7bfea0e053a3 100644 (file)
@@ -55,8 +55,8 @@ SECTIONS
   .ctors : {
         __CTOR_LIST__ = .;
         QUAD((__CTOR_END__ - __CTOR_LIST__) / 8 - 2)
-        *(SORT_BY_NAME(.ctors))
-       SORT_BY_NAME(CONSTRUCTORS)
+        *(.ctors)
+       CONSTRUCTORS
         QUAD(0)
         __CTOR_END__ = .;
         }
@@ -64,7 +64,7 @@ SECTIONS
   .dtors : {
         __DTOR_LIST__ = .;
         QUAD((__DTOR_END__ - __DTOR_LIST__) / 8 - 2)
-        *(SORT_BY_NAME(.dtors))
+        *(.dtors)
         QUAD(0)
         __DTOR_END__ = .;
         }
index 40a92ee4e65a185d1b4bec7bc0a4a1ecb38234d3..13796db768ea4c1d0ec6d1342fdc307603d4cb43 100644 (file)
@@ -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__ = .;
         }
index db93e909acf2cfb7d13a62ecf478597a6086962a..6a5c0bb2f965582343b7c1e5be9c797310c1729e 100644 (file)
@@ -31,8 +31,8 @@ SECTIONS
   .ctors : {
         __CTOR_LIST__ = .;
         QUAD((__CTOR_END__ - __CTOR_LIST__) / 8 - 2)
-        *(SORT_BY_NAME(.ctors))
-       SORT_BY_NAME(CONSTRUCTORS)
+        *(.ctors)
+       CONSTRUCTORS
         QUAD(0)
         __CTOR_END__ = .;
         }
@@ -40,7 +40,7 @@ SECTIONS
   .dtors : {
         __DTOR_LIST__ = .;
         QUAD((__DTOR_END__ - __DTOR_LIST__) / 8 - 2)
-        *(SORT_BY_NAME(.dtors))
+        *(.dtors)
         QUAD(0)
         __DTOR_END__ = .;
         }