Ignore:
Timestamp:
2018-04-28T16:49:48Z (6 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:
4c5f04f
Parents:
a947d32
Message:

Rename __entry to the usual _start.

Except for MIPS, where the default is __start.
This is to avoid customizations in the toolchain as much as possible.
With this change, most platforms need no customization to linker behavior
at all, thus reducing maintainance concerns.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/riscv64/src/entry.c

    ra947d32 r4c4b53c  
    3232#include "../../../generic/private/libc.h"
    3333
    34 extern void __entry(void);
     34extern void _start(void);
    3535
    3636// FIXME: Implement properly.
    3737
    38 void __entry(void)
     38void _start(void)
    3939{
    4040        __libc_main((void *) 0);
Note: See TracChangeset for help on using the changeset viewer.