Changeset 2eadda9 in mainline for uspace/lib/c/arch/abs32le


Ignore:
Timestamp:
2018-07-11T17:45:30Z (7 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
99d3123
Parents:
c2c4127
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-11 17:08:12)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-11 17:45:30)
Message:

Remove undefined references to main program from shared libc.

Location:
uspace/lib/c/arch/abs32le
Files:
2 edited

Legend:

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

    rc2c4127 r2eadda9  
    5757
    5858        .init_array : {
     59#ifndef SHLIB
    5960                PROVIDE_HIDDEN (__init_array_start = .);
     61#endif
    6062                KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
    6163                KEEP (*(.init_array .ctors))
     64#ifndef SHLIB
    6265                PROVIDE_HIDDEN (__init_array_end = .);
     66#endif
    6367        }
    6468
    6569        .fini_array : {
     70#ifndef SHLIB
    6671                PROVIDE_HIDDEN (__fini_array_start = .);
     72#endif
    6773                KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
    6874                KEEP (*(.fini_array .dtors))
     75#ifndef SHLIB
    6976                PROVIDE_HIDDEN (__fini_array_end = .);
     77#endif
    7078        }
    7179
  • uspace/lib/c/arch/abs32le/src/entry.c

    rc2c4127 r2eadda9  
    3030 */
    3131
    32 #include "../../../generic/private/libc.h"
    3332#include <stddef.h>
    3433
    3534extern void _start(void);
     35extern void __c_start(void *);
    3636
    3737/* Normally, the entry point is defined in assembly for the architecture. */
     
    3939void _start(void)
    4040{
    41         __libc_main(NULL);
     41        __c_start(NULL);
    4242}
    4343
Note: See TracChangeset for help on using the changeset viewer.