13 lines
230 B
CMake
13 lines
230 B
CMake
|
set(X86_64_BASE_CFLAGS
|
||
|
-ffreestanding
|
||
|
-fno-pic
|
||
|
-fno-asynchronous-unwind-tables
|
||
|
-mno-sse
|
||
|
-mno-red-zone)
|
||
|
|
||
|
add_subdirectory(core)
|
||
|
|
||
|
zephyr_compile_options(${X86_64_BASE_CFLAGS} -mx32)
|
||
|
|
||
|
zephyr_link_libraries(-mx32)
|