LibELF: Start implementing elf library

This commit is contained in:
Bananymous
2023-04-12 22:20:18 +03:00
parent c897b90c28
commit 998ae511a3
10 changed files with 485 additions and 1 deletions

View File

@@ -93,10 +93,15 @@ set(LIBC_SOURCES
../libc/string.cpp
)
set(LIBELF_SOURCES
../LibELF/LibELF/ELF.cpp
)
set(KERNEL_SOURCES
${KERNEL_SOURCES}
${BAN_SOURCES}
${LIBC_SOURCES}
${LIBELF_SOURCES}
)
add_executable(kernel ${KERNEL_SOURCES})