You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
886B

  1. #ifndef GCC_TM_H
  2. #define GCC_TM_H
  3. #define TARGET_CPU_DEFAULT ("arm7tdmi")
  4. #ifndef LIBC_GLIBC
  5. # define LIBC_GLIBC 1
  6. #endif
  7. #ifndef LIBC_UCLIBC
  8. # define LIBC_UCLIBC 2
  9. #endif
  10. #ifndef LIBC_BIONIC
  11. # define LIBC_BIONIC 3
  12. #endif
  13. #ifndef LIBC_MUSL
  14. # define LIBC_MUSL 4
  15. #endif
  16. #ifdef IN_GCC
  17. # include "options.h"
  18. # include "insn-constants.h"
  19. # include "config/vxworks-dummy.h"
  20. # include "config/dbxelf.h"
  21. # include "config/elfos.h"
  22. # include "config/arm/unknown-elf.h"
  23. # include "config/arm/elf.h"
  24. # include "config/arm/bpabi.h"
  25. # include "config/newlib-stdint.h"
  26. # include "config/arm/aout.h"
  27. # include "config/arm/arm.h"
  28. # include "config/initfini-array.h"
  29. #endif
  30. #if defined IN_GCC && !defined GENERATOR_FILE && !defined USED_FOR_TARGET
  31. # include "insn-flags.h"
  32. #endif
  33. #if defined IN_GCC && !defined GENERATOR_FILE
  34. # include "insn-modes.h"
  35. #endif
  36. # include "defaults.h"
  37. #endif /* GCC_TM_H */