2018-03-28 18:00:20 +08:00
|
|
|
zephyr_library()
|
|
|
|
|
2017-10-27 21:43:34 +08:00
|
|
|
if (COMPILER STREQUAL "clang")
|
|
|
|
# We rely on GAS for assembling, so don't use the integrated assembler
|
|
|
|
zephyr_compile_options_ifndef(CONFIG_X86_IAMCU $<$<COMPILE_LANGUAGE:ASM>:-no-integrated-as>)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
zephyr_compile_options($<$<COMPILE_LANGUAGE:ASM>:-Wa,--divide>)
|
|
|
|
|
2018-03-28 18:00:20 +08:00
|
|
|
zephyr_library_sources(
|
2017-10-27 21:43:34 +08:00
|
|
|
cache.c
|
|
|
|
cache_s.S
|
|
|
|
cpuhalt.c
|
|
|
|
crt0.S
|
|
|
|
excstub.S
|
|
|
|
intstub.S
|
|
|
|
irq_manage.c
|
|
|
|
swap.S
|
|
|
|
sys_fatal_error_handler.c
|
|
|
|
thread.c
|
|
|
|
)
|
|
|
|
|
2018-03-28 18:00:20 +08:00
|
|
|
zephyr_library_sources_if_kconfig( irq_offload.c)
|
|
|
|
zephyr_library_sources_if_kconfig( x86_mmu.c)
|
|
|
|
zephyr_library_sources_if_kconfig( reboot_rst_cnt.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_FP_SHARING float.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_X86_USERSPACE userspace.S)
|
2017-10-27 21:43:34 +08:00
|
|
|
|
|
|
|
# Last since we declare default exception handlers here
|
2018-03-28 18:00:20 +08:00
|
|
|
zephyr_library_sources(fatal.c)
|