Add __dso_handle to bootloader and kernel

Clang references these when building for x86_64.
This commit is contained in:
Jonathan Schleifer 2014-04-03 19:18:59 +02:00
parent ecf79f7430
commit 6a2fd3a50e
2 changed files with 6 additions and 0 deletions

View File

@ -26,6 +26,9 @@
#endif
void *__dso_handle;
extern "C" int
main(stage2_args *args)
{

View File

@ -65,6 +65,9 @@
# define TRACE(x...) ;
#endif
void *__dso_handle;
bool gKernelStartup = true;
bool gKernelShutdown = false;