1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:57:35 +00:00

LibC: Move __cxa_finalize and __cxa_atexit code to their own file

These guys aren't really related to initializing the C runtime,
so move them to a new fancy file named C++ abi. Or rather, cxxabi :)
This commit is contained in:
Andrew Kaster 2019-12-29 01:10:57 -05:00 committed by Andreas Kling
parent d57eed289a
commit 96a86463dd
3 changed files with 62 additions and 55 deletions

View file

@ -53,7 +53,8 @@ LIBC_OBJS = \
libgen.o \
wchar.o \
serenity.o \
syslog.o
syslog.o \
cxxabi.o
OBJS = $(AK_OBJS) $(LIBC_OBJS)