12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- $OpenBSD: patch-gcc_config_sparc_openbsd64_h,v 1.4 2012/10/07 20:09:45 landry Exp $
- --- gcc/config/sparc/openbsd64.h.orig Thu Dec 9 17:31:47 2010
- +++ gcc/config/sparc/openbsd64.h Sat Oct 6 12:10:31 2012
- @@ -23,7 +23,7 @@ along with GCC; see the file COPYING3. If not see
- /* XXX - do we really want HARD_QUAD? */
- #undef TARGET_DEFAULT
- #define TARGET_DEFAULT \
- -(MASK_V9 + MASK_PTR64 + MASK_64BIT + MASK_HARD_QUAD \
- +(MASK_V9 + MASK_PTR64 + MASK_64BIT + /* MASK_HARD_QUAD */ \
- + MASK_APP_REGS + MASK_FPU + MASK_STACK_BIAS + MASK_LONG_DOUBLE_128)
-
- #undef SPARC_DEFAULT_CMODEL
- @@ -33,10 +33,7 @@ along with GCC; see the file COPYING3. If not see
- #define TARGET_OS_CPP_BUILTINS() \
- do \
- { \
- - builtin_define ("__unix__"); \
- - builtin_define ("__OpenBSD__"); \
- - builtin_assert ("system=unix"); \
- - builtin_assert ("system=OpenBSD"); \
- + OPENBSD_OS_CPP_BUILTINS(); \
- builtin_define ("__sparc64__"); \
- builtin_define ("__sparcv9__"); \
- builtin_define ("__sparc_v9__"); \
- @@ -47,15 +44,20 @@ along with GCC; see the file COPYING3. If not see
- #undef CPP_SUBTARGET_SPEC
- #define CPP_SUBTARGET_SPEC ""
-
- -/* Inherited from sp64-elf. */
- -#undef NO_IMPLICIT_EXTERN_C
- -
- #undef ASM_SPEC
- +#ifdef PIE_DEFAULT
- #define ASM_SPEC "\
- +-s %{fpic|fPIC:-K PIC} %{!fno-pie: %{!p: %{!pg: -K PIC}}} \
- +%{mlittle-endian:-EL} \
- +%(asm_cpu) %(asm_arch) \
- +"
- +#else
- +#define ASM_SPEC "\
- -s %{fpic|fPIC|fpie|fPIE:-K PIC} \
- %{mlittle-endian:-EL} \
- %(asm_cpu) %(asm_arch) \
- "
- +#endif
-
- /* Layout of source language data types. */
- #undef WCHAR_TYPE
- @@ -64,6 +66,15 @@ along with GCC; see the file COPYING3. If not see
- #undef WCHAR_TYPE_SIZE
- #define WCHAR_TYPE_SIZE 32
-
- +#undef WINT_TYPE
- +#define WINT_TYPE "int"
- +
- +#undef INTMAX_TYPE
- +#define INTMAX_TYPE "long long int"
- +
- +#undef UINTMAX_TYPE
- +#define UINTMAX_TYPE "long long unsigned int"
- +
- #undef LONG_DOUBLE_TYPE_SIZE
- #define LONG_DOUBLE_TYPE_SIZE 128
-
- @@ -73,6 +84,7 @@ along with GCC; see the file COPYING3. If not see
- %{shared:-shared} %{R*} \
- %{static:-Bstatic} \
- %{!static:-Bdynamic} \
- + %{rdynamic:-export-dynamic} \
- %{assert*} \
- -dynamic-linker /usr/libexec/ld.so"
-
|