meta: add stub compiler, assembler, and runtime libraries

This commit is contained in:
2024-11-11 22:25:01 +00:00
parent d77aaefa20
commit e71056f26b
10 changed files with 27 additions and 0 deletions

8
libc/CMakeLists.txt Normal file
View File

@@ -0,0 +1,8 @@
file(GLOB_RECURSE libc_sources *.c *.h include/ivy/*.h)
add_library(ivy-c SHARED ${libc_sources})
target_link_libraries(
ivy-c
Bluelib::Core
Bluelib::Object
Bluelib::Cmd)

View File

0
libc/misc.c Normal file
View File