diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-12 12:01:12 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-12 12:01:12 +0000 |
commit | 29ad76a5ac4899481eb7ef288da470b5babbbcad (patch) | |
tree | c1fa79f62cc88a90b92c700567933699daf78670 /contrib | |
parent | fc4ab6580e03b50e15ef9d11b605732193158c69 (diff) | |
download | FreeBSD-src-29ad76a5ac4899481eb7ef288da470b5babbbcad.zip FreeBSD-src-29ad76a5ac4899481eb7ef288da470b5babbbcad.tar.gz |
Fixes for building a.out bits.
Submitted by: bde
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/gcc/config/i386/freebsd.h | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/contrib/gcc/config/i386/freebsd.h b/contrib/gcc/config/i386/freebsd.h index f118d42..cce27dd 100644 --- a/contrib/gcc/config/i386/freebsd.h +++ b/contrib/gcc/config/i386/freebsd.h @@ -101,6 +101,15 @@ Boston, MA 02111-1307, USA. */ %{!shared:crtend.o%s} \ %{shared:crtendS.o%s} crtn.o%s}" +/* FreeBSD conditionalizes the use of ".section rodata" depending on + ELF mode - otherwise .text. */ +#undef USE_CONST_SECTION +#define USE_CONST_SECTION TARGET_ELF + +/* ".string" doesn't work for the aout case. */ +#undef STRING_ASM_OP +#define STRING_ASM_OP (TARGET_AOUT ? "\t.asciz\t" : "\t.string\t") + /************************[ Target stuff ]***********************************/ @@ -347,12 +356,21 @@ Boston, MA 02111-1307, USA. */ This is used to align code labels according to Intel recommendations. */ +/* XXX configuration of this is broken in the same way as HAVE_GAS_SHF_MERGE, + but it is easier to fix in an MD way. */ + #ifdef HAVE_GAS_MAX_SKIP_P2ALIGN -#define ASM_OUTPUT_MAX_SKIP_ALIGN(FILE, LOG, MAX_SKIP) \ - if ((LOG) != 0) { \ - if ((MAX_SKIP) == 0) fprintf ((FILE), "\t.p2align %d\n", (LOG)); \ - else fprintf ((FILE), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP)); \ - } +#define ASM_OUTPUT_MAX_SKIP_ALIGN(FILE, LOG, MAX_SKIP) \ +do { \ + if ((LOG) != 0) { \ + if (TARGET_AOUT) \ + ASM_OUTPUT_ALIGN ((FILE), (LOG)); \ + else if ((MAX_SKIP) == 0) \ + fprintf ((FILE), "\t.p2align %d\n", (LOG)); \ + else \ + fprintf ((FILE), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP)); \ + } \ +} while (0) #endif |