Kconfig 530 B

123456789101112131415161718192021
  1. if TARGET_NSIM
  2. config SYS_BOARD
  3. default "nsim"
  4. config SYS_VENDOR
  5. default "synopsys"
  6. config SYS_CONFIG_NAME
  7. default "nsim"
  8. config NSIM_BOARD_CPPFLAGS
  9. string "board arc-specific compiler options"
  10. help
  11. For nSIM we allow to set custom arc-specific compiler options
  12. (like -mcpu=) instead of hardcoding them in its makefile as nSIM
  13. target is used for representing targets without fixed CPU version
  14. like FPGA-based boards and software simulators.
  15. This variable takes space separated compiler options list.
  16. endif