1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:17:34 +00:00

LibC: Use LibELF in dlfcn.cpp to dynamically load libraries

This commit is contained in:
Andrew Kaster 2019-12-31 16:47:33 -05:00 committed by Andreas Kling
parent a18b37880e
commit 58517bc068
2 changed files with 90 additions and 12 deletions

View file

@ -56,7 +56,11 @@ LIBC_OBJS = \
syslog.o \
cxxabi.o
OBJS = $(AK_OBJS) $(LIBC_OBJS)
ELF_OBJS = \
../LibELF/ELFDynamicObject.o \
../LibELF/ELFImage.o
OBJS = $(AK_OBJS) $(LIBC_OBJS) $(ELF_OBJS)
EXTRA_OBJS = setjmp.ao crti.ao crtn.ao