Changeset fedac2f in mainline for uspace/lib/c/arch
- Timestamp:
- 2012-09-16T11:27:35Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 289fa65
- Parents:
- 8930624 (diff), 00b4a68 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/lib/c/arch
- Files:
-
- 10 edited
-
abs32le/_link.ld.in (modified) (2 diffs)
-
amd64/_link.ld.in (modified) (2 diffs)
-
arm32/Makefile.common (modified) (1 diff)
-
arm32/_link.ld.in (modified) (2 diffs)
-
ia32/_link.ld.in (modified) (2 diffs)
-
ia64/_link.ld.in (modified) (2 diffs)
-
mips32/_link.ld.in (modified) (2 diffs)
-
mips64/_link.ld.in (modified) (2 diffs)
-
ppc32/_link.ld.in (modified) (2 diffs)
-
sparc64/_link.ld.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/_link.ld.in
r8930624 rfedac2f 15 15 #ifdef LOADER 16 16 . = 0x70001000 + SIZEOF_HEADERS; 17 18 .interp : {19 *(.interp);20 } :interp :text21 17 #else 22 18 . = 0x1000 + SIZEOF_HEADERS; 23 19 #endif 24 25 /* Make sure the code is aligned reasonably */26 . = ALIGN(., 16);27 20 28 21 .text : { … … 30 23 *(.rodata .rodata.*); 31 24 } :text 25 26 #ifdef LOADER 27 .interp : { 28 *(.interp); 29 } :interp :text 30 #endif 32 31 33 32 . = . + 0x1000; -
uspace/lib/c/arch/amd64/_link.ld.in
r8930624 rfedac2f 16 16 #ifdef LOADER 17 17 . = 0x70001000 + SIZEOF_HEADERS; 18 19 .interp : {20 *(.interp);21 } :interp :text22 18 #else 23 19 . = 0x1000 + SIZEOF_HEADERS; 24 20 #endif 25 26 /* Make sure the code is aligned reasonably */27 . = ALIGN(., 16);28 21 29 22 .init : { … … 35 28 *(.rodata .rodata.*); 36 29 } :text 30 31 #ifdef LOADER 32 .interp : { 33 *(.interp); 34 } :interp :text 35 #endif 37 36 38 37 . = . + 0x1000; -
uspace/lib/c/arch/arm32/Makefile.common
r8930624 rfedac2f 28 28 # 29 29 30 GCC_CFLAGS += -ffixed-r9 -mtp=soft -fno-omit-frame-pointer -march=armv431 30 BASE_LIBS += $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a 31 GCC_CFLAGS += -ffixed-r9 -mtp=soft -fno-omit-frame-pointer -march=armv4 -mapcs-frame 32 32 33 33 ENDIANESS = LE -
uspace/lib/c/arch/arm32/_link.ld.in
r8930624 rfedac2f 15 15 #ifdef LOADER 16 16 . = 0x70001000 + SIZEOF_HEADERS; 17 18 .interp : {19 *(.interp);20 } :interp :text21 17 #else 22 18 . = 0x1000 + SIZEOF_HEADERS; 23 19 #endif 24 25 /* Make sure the code is aligned reasonably */26 . = ALIGN(., 8);27 20 28 21 .init : { … … 34 27 *(.rodata .rodata.*); 35 28 } :text 29 30 #ifdef LOADER 31 .interp : { 32 *(.interp); 33 } :interp :text 34 #endif 36 35 37 36 . = . + 0x1000; -
uspace/lib/c/arch/ia32/_link.ld.in
r8930624 rfedac2f 24 24 . = 0x1000 + SIZEOF_HEADERS; 25 25 #endif 26 27 #if defined(LOADER) || defined(DLEXE)28 .interp : {29 *(.interp);30 } :interp :text31 #endif32 33 /* Make sure the code is aligned reasonably */34 . = ALIGN(., 16);35 26 36 27 .init : { … … 71 62 } :text 72 63 #endif 64 65 #if defined(LOADER) || defined(DLEXE) 66 .interp : { 67 *(.interp); 68 } :interp :text 69 #endif 70 73 71 . = . + 0x1000; 74 72 -
uspace/lib/c/arch/ia64/_link.ld.in
r8930624 rfedac2f 15 15 #ifdef LOADER 16 16 . = 0x800000000 + SIZEOF_HEADERS; 17 18 .interp : {19 *(.interp);20 } :interp :text21 17 #else 22 18 . = 0x4000 + SIZEOF_HEADERS; 23 19 #endif 24 20 25 /* Make sure the code is aligned reasonably*/21 /* Workaround proper alignment of the .init section */ 26 22 . = ALIGN(., 16); 27 23 … … 34 30 *(.rodata .rodata.*); 35 31 } :text 32 33 #ifdef LOADER 34 .interp : { 35 *(.interp); 36 } :interp :text 37 #endif 36 38 37 39 . = . + 0x4000; -
uspace/lib/c/arch/mips32/_link.ld.in
r8930624 rfedac2f 15 15 #ifdef LOADER 16 16 . = 0x70004000 + SIZEOF_HEADERS; 17 18 .interp : {19 *(.interp);20 } :interp :text21 17 #else 22 18 . = 0x4000 + SIZEOF_HEADERS; 23 19 #endif 24 25 /* Make sure the code is aligned reasonably */26 . = ALIGN(., 16);27 20 28 21 .init : { … … 34 27 *(.rodata .rodata.*); 35 28 } :text 29 30 #ifdef LOADER 31 .interp : { 32 *(.interp); 33 } :interp :text 34 #endif 36 35 37 36 . = . + 0x4000; -
uspace/lib/c/arch/mips64/_link.ld.in
r8930624 rfedac2f 16 16 #ifdef LOADER 17 17 . = 0x70004000 + SIZEOF_HEADERS; 18 19 .interp : {20 *(.interp);21 } :interp :text22 18 #else 23 19 . = 0x4000 + SIZEOF_HEADERS; 24 20 #endif 25 26 /* Make sure the code is aligned reasonably */27 . = ALIGN(., 16);28 21 29 22 .init : { … … 35 28 *(.rodata .rodata.*); 36 29 } :text 30 31 #ifdef LOADER 32 .interp : { 33 *(.interp); 34 } :interp :text 35 #endif 37 36 38 37 . = . + 0x4000; -
uspace/lib/c/arch/ppc32/_link.ld.in
r8930624 rfedac2f 16 16 #ifdef LOADER 17 17 . = 0x70001000 + SIZEOF_HEADERS; 18 19 .interp : {20 *(.interp);21 } :interp :text22 18 #else 23 19 . = 0x1000 + SIZEOF_HEADERS; 24 20 #endif 25 26 /* Make sure the code is aligned reasonably */27 . = ALIGN(., 4);28 21 29 22 .init : { … … 35 28 *(.rodata .rodata.*); 36 29 } :text 30 31 #ifdef LOADER 32 .interp : { 33 *(.interp); 34 } :interp :text 35 #endif 37 36 38 37 . = . + 0x1000; -
uspace/lib/c/arch/sparc64/_link.ld.in
r8930624 rfedac2f 15 15 #ifdef LOADER 16 16 . = 0x70004000 + SIZEOF_HEADERS; 17 18 .interp : {19 *(.interp);20 } :interp :text21 17 #else 22 18 . = 0x4000 + SIZEOF_HEADERS; 23 19 #endif 24 25 /* Make sure the code is aligned reasonably */26 . = ALIGN(., 16);27 20 28 21 .init : { … … 34 27 *(.rodata .rodata.*); 35 28 } :text 29 30 #ifdef LOADER 31 .interp : { 32 *(.interp); 33 } :interp :text 34 #endif 36 35 37 36 . = . + 0x4000;
Note:
See TracChangeset
for help on using the changeset viewer.
