ccrx.txt 539 B

1234567891011121314151617181920212223
  1. # This file assumes that path to the Renesas CC-RX toolchain is added
  2. # to the environment(PATH) variable, so that Meson can find
  3. # ccrx and rlink while building.
  4. [binaries]
  5. c = 'ccrx'
  6. cpp = 'ccrx'
  7. ar = 'rlink'
  8. strip = 'rlink'
  9. [properties]
  10. # The '--cpu' option with the appropriate target type should be mentioned
  11. # to cross compile c/c++ code with ccrx,.
  12. c_args = ['-cpu=rx600']
  13. cpp_args = ['-cpu=rx600']
  14. c_link_args = []
  15. cpp_link_args = []
  16. [host_machine]
  17. system = 'bare metal'
  18. cpu_family = 'rx'
  19. cpu = 'rx600'
  20. endian = 'little'