zephyr: Link MicroPython with the Zephyr kernel library.

Unlike most other Zephyr libraries, libkernel.a is not built as a
whole-archive.

Signed-off-by: Maureen Helm <maureen.helm@analog.com>
pull/9335/head
Maureen Helm 2024-01-02 14:21:37 -06:00
rodzic 60cb0a694e
commit 34fd075534
2 zmienionych plików z 1 dodań i 4 usunięć

Wyświetl plik

@ -109,6 +109,7 @@ zephyr_library_compile_definitions(
)
zephyr_library_sources(${MICROPY_SOURCE_QSTR})
zephyr_library_link_libraries(kernel)
add_dependencies(${MICROPY_TARGET} zephyr_generated_headers)

Wyświetl plik

@ -37,9 +37,5 @@ int main(void) {
#endif
real_main();
// This is needed so the linker includes k_timer_init, z_impl_k_timer_start
// and z_impl_k_timer_stop, as used by libmicropython.a.
k_timer_start(NULL, K_MSEC(0), K_MSEC(0));
return 0;
}