Link "id" against the LibC.

We can now produce what should essentially be a runnable Serenity executable.
This commit is contained in:
Andreas Kling 2018-10-22 14:13:17 +02:00
commit 38a621c721
Notes: sideshowbarker 2024-07-19 18:45:11 +09:00
3 changed files with 11 additions and 3 deletions

View file

@ -2,7 +2,7 @@
extern "C" int main(int, char**);
extern "C" int elf_entry()
extern "C" int _start()
{
// FIXME: Pass appropriate argc/argv.
main(0, nullptr);