Files
exkernel/xpack-riscv-none-elf-gcc-13.4.0-1/lib/gcc/riscv-none-elf/13.4.0/plugin/include/tm.h
Fabio Scotto di Santolo c59b4004e5 Implemented project structure
2025-11-29 18:43:07 +01:00

44 lines
1.0 KiB
C

#ifndef GCC_TM_H
#define GCC_TM_H
#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
#ifndef TARGET_DEFAULT_ISA_SPEC
# define TARGET_DEFAULT_ISA_SPEC ISA_SPEC_CLASS_20191213
#endif
#ifndef TARGET_RISCV_ATTRIBUTE
# define TARGET_RISCV_ATTRIBUTE 1
#endif
#ifndef TARGET_RISCV_DEFAULT_ARCH
# define TARGET_RISCV_DEFAULT_ARCH rv32imac
#endif
#ifndef TARGET_RISCV_DEFAULT_ABI
# define TARGET_RISCV_DEFAULT_ABI ilp32
#endif
#ifdef IN_GCC
# include "options.h"
# include "insn-constants.h"
# include "config/elfos.h"
# include "config/newlib-stdint.h"
# include "config/riscv/riscv.h"
# include "config/riscv/elf.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 */