c2000.txt 510 B

123456789101112131415161718192021222324252627
  1. # This file assumes that path to the Texas Instruments C20000 toolchain is added
  2. # to the environment(PATH) variable, so that Meson can find
  3. # cl2000 and ar2000 while building.
  4. [binaries]
  5. c = 'cl2000'
  6. ar = 'ar2000'
  7. strip = 'cl2000'
  8. [host_machine]
  9. system = 'bare metal'
  10. cpu_family = 'c2000'
  11. cpu = 'c28x'
  12. endian = 'little'
  13. [properties]
  14. needs_exe_wrapper = true
  15. c_args = [
  16. '-v28',
  17. '-ml',
  18. '-mt']
  19. c_link_args = [
  20. '-z',
  21. '--rom_model',
  22. '\f28004x_flash.cmd']
  23. cpp_args = []
  24. cpp_link_args = []