cross-compilation.conf.in 894 B

1234567891011121314151617181920212223242526272829303132
  1. # Note: Buildroot's and Meson's terminologies differ about the meaning
  2. # of 'build', 'host' and 'target':
  3. # - Buildroot's 'host' is Meson's 'build'
  4. # - Buildroot's 'target' is Meson's 'host'
  5. [binaries]
  6. c = '@TARGET_CC@'
  7. cpp = '@TARGET_CXX@'
  8. ar = '@TARGET_AR@'
  9. strip = '@TARGET_STRIP@'
  10. pkgconfig = '@PKGCONF_HOST_BINARY@'
  11. g-ir-compiler = '@STAGING_DIR@/usr/bin/g-ir-compiler'
  12. g-ir-scanner = '@STAGING_DIR@/usr/bin/g-ir-scanner'
  13. [built-in options]
  14. c_args = [@TARGET_CFLAGS@]
  15. c_link_args = [@TARGET_LDFLAGS@]
  16. cpp_args = [@TARGET_CXXFLAGS@]
  17. cpp_link_args = [@TARGET_LDFLAGS@]
  18. wrap_mode = 'nodownload'
  19. [properties]
  20. needs_exe_wrapper = true
  21. sys_root = '@STAGING_DIR@'
  22. pkg_config_libdir = '@STAGING_DIR@/usr/lib/pkgconfig:@STAGING_DIR@/usr/share/pkgconfig'
  23. pkg_config_static = '@STATIC@'
  24. [host_machine]
  25. system = 'linux'
  26. cpu_family = '@TARGET_ARCH@'
  27. cpu = '@TARGET_CPU@'
  28. endian = '@TARGET_ENDIAN@'