diff options
-rw-r--r-- | gnu/gcc/gcc/config/sparc/openbsd64.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/gcc/gcc/config/sparc/openbsd64.h b/gnu/gcc/gcc/config/sparc/openbsd64.h index 33fa8f75a3c..dc419b97f8b 100644 --- a/gnu/gcc/gcc/config/sparc/openbsd64.h +++ b/gnu/gcc/gcc/config/sparc/openbsd64.h @@ -52,11 +52,19 @@ Boston, MA 02110-1301, USA. */ #undef NO_IMPLICIT_EXTERN_C #undef ASM_SPEC +#ifdef PIE_DEFAULT +#define ASM_SPEC "\ +%{v:-V} -s %{fpic|fPIC:-K PIC} %{!fno-pie: %{!p: %{!pg: -K PIC}}} \ +%{mlittle-endian:-EL} \ +%(asm_cpu) %(asm_arch) \ +" +#else #define ASM_SPEC "\ %{v:-V} -s %{fpic|fPIC|fpie|fPIE:-K PIC} \ %{mlittle-endian:-EL} \ %(asm_cpu) %(asm_arch) \ " +#endif /* Layout of source language data types. */ #undef WCHAR_TYPE |