CMakeLists.txt 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # SPDX-License-Identifier: Apache-2.0
  2. zephyr_library()
  3. zephyr_library_sources(libc-hooks.c)
  4. # Zephyr normally uses -ffreestanding, which with current GNU toolchains
  5. # means that the flag macros used by newlib 3.x <inttypes.h> to signal
  6. # support for PRI.64 macros are not present. To make them available we
  7. # need to hook into the include path before the system files and
  8. # explicitly include the newlib header that provides those macros.
  9. zephyr_include_directories(include)
  10. # LIBC_*_DIR may or may not have been set by the toolchain. E.g. when
  11. # using ZEPHYR_TOOLCHAIN_VARIANT=cross-compile it will be either up to the
  12. # toolchain to know where it's libc implementation is, or if it is
  13. # unable to, it will be up to the user to specify LIBC_*_DIR vars to
  14. # point to a newlib implementation. Note that this does not change the
  15. # directory order if LIBC_INCLUDE_DIR is already a system header
  16. # directory.
  17. if(LIBC_INCLUDE_DIR)
  18. zephyr_include_directories(${LIBC_INCLUDE_DIR})
  19. endif()
  20. if(LIBC_LIBRARY_DIR)
  21. set(LIBC_LIBRARY_DIR_FLAG -L${LIBC_LIBRARY_DIR})
  22. endif()
  23. # define __LINUX_ERRNO_EXTENSIONS__ so we get errno defines like -ESHUTDOWN
  24. # used by the network stack
  25. zephyr_compile_definitions(__LINUX_ERRNO_EXTENSIONS__)
  26. # We are using
  27. # - ${CMAKE_C_LINKER_WRAPPER_FLAG}${CMAKE_LINK_LIBRARY_FLAG}c
  28. # - ${CMAKE_C_LINKER_WRAPPER_FLAG}${CMAKE_LINK_LIBRARY_FLAG}gcc
  29. # - c
  30. # in code below.
  31. # This is needed because when linking with newlib on aarch64, then libgcc has a
  32. # link dependency to libc (strchr), but libc also has dependencies to libgcc.
  33. #
  34. # CMake is capable of handling circular link dependencies for CMake defined
  35. # static libraries, which can be further controlled using LINK_INTERFACE_MULTIPLICITY.
  36. # However, libc and libgcc are not regular CMake libraries, and is seen as linker
  37. # flags by CMake, and thus symbol de-duplications will be performed.
  38. # CMake link options cannot be used, as that will place those libs first on the
  39. # linker invocation. -Wl,--start-group is problematic as the placement of -lc
  40. # and -lgcc is not guaranteed in case later libraries are also using
  41. # -lc / -libbgcc as interface linker flags.
  42. #
  43. # Thus, we resort to use `${CMAKE_C_LINKER_WRAPPER_FLAG}${CMAKE_LINK_LIBRARY_FLAG}`
  44. # as this ensures the uniqueness and thus avoids symbol de-duplication which means
  45. # libc will be followed by libgcc, which is finally followed by libc again.
  46. list(JOIN CMAKE_C_LINKER_WRAPPER_FLAG "" linker_wrapper_string)
  47. zephyr_link_libraries(
  48. m
  49. "${linker_wrapper_string}${CMAKE_LINK_LIBRARY_FLAG}c"
  50. ${LIBC_LIBRARY_DIR_FLAG} # NB: Optional
  51. $<$<BOOL:${CONFIG_NEWLIB_LIBC_FLOAT_PRINTF}>:-u_printf_float>
  52. $<$<BOOL:${CONFIG_NEWLIB_LIBC_FLOAT_SCANF}>:-u_scanf_float>
  53. # Lib C depends on libgcc. e.g. libc.a(lib_a-fvwrite.o) references __aeabi_idiv
  54. "${linker_wrapper_string}${CMAKE_LINK_LIBRARY_FLAG}gcc"
  55. c
  56. )
  57. if(CONFIG_NEWLIB_LIBC_NANO)
  58. zephyr_link_libraries(
  59. -specs=nano.specs
  60. )
  61. zephyr_compile_options(
  62. -specs=nano.specs
  63. )
  64. endif()