From: amodra Date: Mon, 15 Jan 2001 02:36:21 +0000 (+0000) Subject: Missed this in last commit "Linux target variants for elfxx-hppa." X-Git-Tag: pre-posix-scan~1273 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f56b601cf7c7cba47448f17a772f65aef7059fec;p=pf3gnuchains%2Fpf3gnuchains4x.git Missed this in last commit "Linux target variants for elfxx-hppa." --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 4b5a58dd26..bed841e14f 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2001-01-14 Alan Modra + + * config/tc-hppa.h (TARGET_FORMAT): Add hppa-linux variants. + 2001-01-14 Kazu Hirata * config/tc-alpha.c: Fix formatting. diff --git a/gas/config/tc-hppa.h b/gas/config/tc-hppa.h index bb40d59852..013540c3f6 100644 --- a/gas/config/tc-hppa.h +++ b/gas/config/tc-hppa.h @@ -1,5 +1,5 @@ /* tc-hppa.h -- Header file for the PA - Copyright (C) 1989, 93, 94, 95, 96, 97, 98, 99, 2000 + Copyright 1989, 93, 94, 95, 96, 97, 98, 99, 2000, 2001 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -48,12 +48,20 @@ #ifdef OBJ_ELF #if TARGET_ARCH_SIZE == 64 #include "bfd/elf64-hppa.h" -#define TARGET_FORMAT "elf64-hppa" +#ifdef TE_LINUX +#define TARGET_FORMAT "elf64-hppa-linux" #else +#define TARGET_FORMAT "elf64-hppa" +#endif +#else /* TARGET_ARCH_SIZE == 32 */ #include "bfd/elf32-hppa.h" +#ifdef TE_LINUX +#define TARGET_FORMAT "elf32-hppa-linux" +#else #define TARGET_FORMAT "elf32-hppa" #endif #endif +#endif #ifdef OBJ_SOM #include "bfd/som.h"