Missed this in last commit "Linux target variants for elfxx-hppa."
authorAlan Modra <amodra@gmail.com>
Mon, 15 Jan 2001 02:36:21 +0000 (02:36 +0000)
committerAlan Modra <amodra@gmail.com>
Mon, 15 Jan 2001 02:36:21 +0000 (02:36 +0000)
gas/ChangeLog
gas/config/tc-hppa.h

index 4b5a58dd26ba227630320c03c5fcdcedf8646d25..bed841e14f7b1b3dd71dda7a78416219885ad470 100644 (file)
@@ -1,3 +1,7 @@
+2001-01-14  Alan Modra  <alan@linuxcare.com.au>
+
+       * config/tc-hppa.h (TARGET_FORMAT): Add hppa-linux variants.
+
 2001-01-14  Kazu Hirata  <kazu@hxi.com>
 
        * config/tc-alpha.c: Fix formatting.
index bb40d59852bfeb65fec6242d6b9f90548b574c91..013540c3f6daeaae8c0d201bd8be267953949b2a 100644 (file)
@@ -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.
 #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"
This page took 0.053719 seconds and 4 git commands to generate.