zephyr/arch/posix/CMakeLists.txt

38 lines
1.0 KiB
CMake
Raw Normal View History

zephyr_cc_option_ifdef(CONFIG_LTO -flto)
zephyr_compile_options(
-fno-freestanding
-Wno-undef
-Wno-implicit-function-declaration
-m32
-MMD
-MP
${TOOLCHAIN_C_FLAGS}
${ARCH_FLAG}
-include ${PROJECT_SOURCE_DIR}/arch/posix/include/posix_cheats.h
)
zephyr_compile_definitions(_POSIX_C_SOURCE=199309)
zephyr_ld_options(
-ldl
-pthread
-m32
)
# About the -include directive: The reason to do it this way, is because in this
# manner it is transparent to the application. Otherwise posix_cheats.h needs to
# be included in all the applications' files which define main( ), and in any
# app file which uses the pthreads like API provided by Zephyr
# ( include/posix/pthread.h / kernel/pthread.c ) [And any future API added to
# Zephyr which will clash with the native POSIX API] . It would also need to
# be included in a few zephyr kernel files.
add_subdirectory(soc)
add_subdirectory(core)
# Override the flag used with linker.cmd
# "-Wl,--just-symbols linker.cmd" instead of "-T linker.cmd"
set_property(GLOBAL PROPERTY TOPT -Wl,--just-symbols)