1
Fork 0
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:
Itamar 2020-10-16 12:57:15 +03:00 committed by Andreas Kling
parent 09ccdc697b
commit 58c583f584
5 changed files with 22 additions and 5 deletions

View file

@ -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;