cross-compilation.conf.in 1.6 KB

123456789101112131415161718192021222324
  1. # Note: OpenADK's and Meson's terminologies differ about the meaning
  2. # of 'build', 'host' and 'target':
  3. # - OpenADK's 'host' is Meson's 'build'
  4. # - OpenADK's 'target' is Meson's 'host'
  5. [binaries]
  6. c = '@TARGET_CROSS@gcc'
  7. cpp = '@TARGET_CROSS@g++'
  8. ar = '@TARGET_CROSS@ar'
  9. strip = '@TARGET_CROSS@strip'
  10. pkgconfig = '@STAGING_HOST_DIR@/usr/bin/pkg-config'
  11. [properties]
  12. c_args = [@TARGET_CFLAGS@]
  13. c_link_args = [@TARGET_LDFLAGS@]
  14. cpp_args = [@TARGET_CXXFLAGS@]
  15. cpp_link_args = [@TARGET_LDFLAGS@]
  16. needs_exe_wrapper = false
  17. [host_machine]
  18. system = 'linux'
  19. cpu_family ='@TARGET_ARCH@'
  20. cpu = '@TARGET_CPU@'
  21. endian = '@TARGET_ENDIAN@'