2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2017-10-27 21:43:34 +08:00
|
|
|
zephyr_library()
|
2018-06-15 02:21:18 +08:00
|
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers)
|
2017-10-27 21:43:34 +08:00
|
|
|
|
2019-10-25 03:57:57 +08:00
|
|
|
if(CONFIG_X86_64)
|
|
|
|
zephyr_cc_option(-march=x86-64)
|
|
|
|
else()
|
2017-10-27 21:43:34 +08:00
|
|
|
zephyr_cc_option(-march=pentium)
|
2019-10-25 03:57:57 +08:00
|
|
|
endif()
|
2017-10-27 21:43:34 +08:00
|
|
|
|
|
|
|
zephyr_library_sources(soc.c)
|