diff options
author | Alan Modra <amodra@gmail.com> | 2001-01-15 02:36:21 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-01-15 02:36:21 +0000 |
commit | fcfd49160866d2d7d6e1ed8ac3a728af5a3db8e2 (patch) | |
tree | 2453a53b582a37989f70700837e073bccb634dd4 /gas/config/tc-hppa.h | |
parent | 19203624a6a5f946ee87ccfa767f0654999d2703 (diff) | |
download | binutils-gdb-fcfd49160866d2d7d6e1ed8ac3a728af5a3db8e2.tar.gz |
Missed this in last commit "Linux target variants for elfxx-hppa."
Diffstat (limited to 'gas/config/tc-hppa.h')
-rw-r--r-- | gas/config/tc-hppa.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/gas/config/tc-hppa.h b/gas/config/tc-hppa.h index bb40d59852b..013540c3f6d 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" |