Changeset 40d3604 in mainline for uspace/lib/c/arch


Ignore:
Timestamp:
2018-04-30T20:12:50Z (8 years ago)
Author:
GitHub <noreply@…>
Parents:
4c5f04f (diff), 64d38cd (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.
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-04-30 20:12:50)
git-committer:
GitHub <noreply@…> (2018-04-30 20:12:50)
Message:

Merge 64d38cd33ec6817c3a5fdd1a7da6d705b0d9d3a2 into 4c5f04f66aa0d34ff3bbed6e9abebf85f59723fb

Location:
uspace/lib/c/arch
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/abs32le/_link.ld.in

    r4c5f04f r40d3604  
    99
    1010SECTIONS {
     11#ifdef SHLIB
     12        . = SEGMENT_START("text-segment", 0);
     13#else
    1114        . = SEGMENT_START("text-segment", 0x400000);
    12 #ifndef SHLIB
    1315        PROVIDE (__executable_start = .);
    1416#endif
  • uspace/lib/c/arch/amd64/_link.ld.in

    r4c5f04f r40d3604  
    1010
    1111SECTIONS {
     12#ifdef SHLIB
     13        . = SEGMENT_START("text-segment", 0);
     14#else
    1215        . = SEGMENT_START("text-segment", 0x400000);
    13 #ifndef SHLIB
    1416        PROVIDE (__executable_start = .);
    1517#endif
  • uspace/lib/c/arch/arm32/_link.ld.in

    r4c5f04f r40d3604  
    99
    1010SECTIONS {
     11#ifdef SHLIB
     12        . = SEGMENT_START("text-segment", 0);
     13#else
    1114        . = SEGMENT_START("text-segment", 0x400000);
    12 #ifndef SHLIB
    1315        PROVIDE (__executable_start = .);
    1416#endif
  • uspace/lib/c/arch/ia32/_link.ld.in

    r4c5f04f r40d3604  
    1818
    1919SECTIONS {
     20#ifdef SHLIB
     21        . = SEGMENT_START("text-segment", 0);
     22#else
    2023        . = SEGMENT_START("text-segment", 0x400000);
    21 #ifndef SHLIB
    2224        PROVIDE (__executable_start = .);
    2325#endif
  • uspace/lib/c/arch/ia64/_link.ld.in

    r4c5f04f r40d3604  
    99
    1010SECTIONS {
     11#ifdef SHLIB
     12        . = SEGMENT_START("text-segment", 0);
     13#else
    1114        . = SEGMENT_START("text-segment", 0x400000);
    12 #ifndef SHLIB
    1315        PROVIDE (__executable_start = .);
    1416#endif
  • uspace/lib/c/arch/mips32/_link.ld.in

    r4c5f04f r40d3604  
    99
    1010SECTIONS {
     11#ifdef SHLIB
     12        . = SEGMENT_START("text-segment", 0);
     13#else
    1114        . = SEGMENT_START("text-segment", 0x400000);
    12 #ifndef SHLIB
    1315        PROVIDE (__executable_start = .);
    1416#endif
  • uspace/lib/c/arch/ppc32/_link.ld.in

    r4c5f04f r40d3604  
    1010
    1111SECTIONS {
     12#ifdef SHLIB
     13        . = SEGMENT_START("text-segment", 0);
     14#else
    1215        . = SEGMENT_START("text-segment", 0x400000);
    13 #ifndef SHLIB
    1416        PROVIDE (__executable_start = .);
    1517#endif
  • uspace/lib/c/arch/riscv64/_link.ld.in

    r4c5f04f r40d3604  
    1010
    1111SECTIONS {
     12#ifdef SHLIB
     13        . = SEGMENT_START("text-segment", 0);
     14#else
    1215        . = SEGMENT_START("text-segment", 0x400000);
    13 #ifndef SHLIB
    1416        PROVIDE (__executable_start = .);
    1517#endif
  • uspace/lib/c/arch/sparc64/_link.ld.in

    r4c5f04f r40d3604  
    1010
    1111SECTIONS {
     12#ifdef SHLIB
     13        . = SEGMENT_START("text-segment", 0);
     14#else
    1215        . = SEGMENT_START("text-segment", 0x400000);
    13 #ifndef SHLIB
    1416        PROVIDE (__executable_start = .);
    1517#endif
Note: See TracChangeset for help on using the changeset viewer.