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.
|
- #ifndef GCC_TM_H
- #define GCC_TM_H
- #define TARGET_CPU_DEFAULT ("arm7tdmi")
- #ifndef LIBC_GLIBC
- # define LIBC_GLIBC 1
- #endif
- #ifndef LIBC_UCLIBC
- # define LIBC_UCLIBC 2
- #endif
- #ifndef LIBC_BIONIC
- # define LIBC_BIONIC 3
- #endif
- #ifndef LIBC_MUSL
- # define LIBC_MUSL 4
- #endif
- #ifdef IN_GCC
- # include "options.h"
- # include "insn-constants.h"
- # include "config/vxworks-dummy.h"
- # include "config/dbxelf.h"
- # include "config/elfos.h"
- # include "config/arm/unknown-elf.h"
- # include "config/arm/elf.h"
- # include "config/arm/bpabi.h"
- # include "config/newlib-stdint.h"
- # include "config/arm/aout.h"
- # include "config/arm/arm.h"
- # include "config/initfini-array.h"
- #endif
- #if defined IN_GCC && !defined GENERATOR_FILE && !defined USED_FOR_TARGET
- # include "insn-flags.h"
- #endif
- #if defined IN_GCC && !defined GENERATOR_FILE
- # include "insn-modes.h"
- #endif
- # include "defaults.h"
- #endif /* GCC_TM_H */
|