Adds `crt1.o` for the UEFI platform in the LLVM C library. This makes things start to become useful.
10 lines
206 B
CMake
10 lines
206 B
CMake
add_custom_target(libc-startup-tests)
|
|
add_dependencies(libc-integration-tests libc-startup-tests)
|
|
|
|
add_integration_test(
|
|
startup_no_args_test
|
|
SUITE libc-startup-tests
|
|
SRCS
|
|
main_without_args.cpp
|
|
)
|