mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:07:36 +00:00
LibC: Add libc.so
We now compile everything with -static flag so libc.a would be use
This commit is contained in:
parent
09ccdc697b
commit
58c583f584
5 changed files with 22 additions and 5 deletions
|
@ -22,9 +22,11 @@ int _start(int argc, char** argv, char** env)
|
|||
__environ_is_malloced = false;
|
||||
|
||||
__libc_init();
|
||||
_init();
|
||||
// _init();
|
||||
|
||||
int status = main(argc, argv, environ);
|
||||
return status;
|
||||
}
|
||||
}
|
||||
|
||||
void* __dso_handle = nullptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue