Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
6,030 additions
and 2 deletions.
- +2 −0 fixincludes/mkfixinc.sh
- +13 −2 gcc/config.gcc
- +24 −0 gcc/config/redox.h
- +8 −0 libgcc/config.host
- +5,977 −0 libstdc++-v3/configure
- +6 −0 libstdc++-v3/crossconfig.m4
@@ -0,0 +1,24 @@ | ||
#undef TARGET_REDOX | ||
#define TARGET_REDOX 1 | ||
|
||
#undef LIB_SPEC | ||
#define LIB_SPEC "-lc" | ||
|
||
#undef STARTFILE_SPEC | ||
#define STARTFILE_SPEC "crt0.o%s" | ||
|
||
#undef ENDFILE_SPEC | ||
#define ENDFILE_SPEC "" | ||
|
||
#undef NO_IMPLICIT_EXTERN_C | ||
#define NO_IMPLICIT_EXTERN_C 1 | ||
|
||
#undef TARGET_OS_CPP_BUILTINS | ||
#define TARGET_OS_CPP_BUILTINS() \ | ||
do { \ | ||
builtin_define ("__redox__"); \ | ||
builtin_define ("__unix__"); \ | ||
builtin_assert ("system=redox"); \ | ||
builtin_assert ("system=unix"); \ | ||
builtin_assert ("system=posix"); \ | ||
} while(0); |
Oops, something went wrong.