13 lines
279 B
CMake
13 lines
279 B
CMake
add_loader_object(
|
|
crt1
|
|
SRC
|
|
start.cpp
|
|
DEPENDS
|
|
libc.config.linux.app_h
|
|
libc.include.sys_syscall
|
|
libc.src.__support.OSUtil.osutil
|
|
COMPILE_OPTIONS
|
|
-fno-omit-frame-pointer
|
|
-ffreestanding # To avoid compiler warnings about calling the main function.
|
|
)
|