mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-10 22:00:09 +02:00
677 lines
25 KiB
Plaintext
677 lines
25 KiB
Plaintext
From b53fdd78959f52c2d28ae11a32462155ba2a0f2c Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= <jerome.duval@gmail.com>
|
|
Date: Sat, 5 Aug 2017 11:54:22 +0200
|
|
Subject: Haiku patch
|
|
|
|
|
|
diff --git a/bfd/config.bfd b/bfd/config.bfd
|
|
index b998830..a0699bb 100644
|
|
--- a/bfd/config.bfd
|
|
+++ b/bfd/config.bfd
|
|
@@ -367,7 +367,7 @@ case "${targ}" in
|
|
;;
|
|
arm-*-elf | arm*-*-freebsd* | arm*-*-linux-* | arm*-*-conix* | \
|
|
arm*-*-uclinux* | arm-*-kfreebsd*-gnu | \
|
|
- arm*-*-eabi* )
|
|
+ arm*-*-eabi* | arm*-*-haiku*)
|
|
targ_defvec=arm_elf32_le_vec
|
|
targ_selvecs=arm_elf32_be_vec
|
|
;;
|
|
@@ -718,6 +718,11 @@ case "${targ}" in
|
|
targ_selvecs="i386_elf32_vec iamcu_elf32_vec x86_64_elf32_vec i386_aout_linux_vec i386_pei_vec x86_64_pei_vec l1om_elf64_vec k1om_elf64_vec"
|
|
want64=true
|
|
;;
|
|
+ x86_64-*-haiku*)
|
|
+ targ_defvec=x86_64_elf64_vec
|
|
+ targ_selvecs="i386_elf32_vec"
|
|
+ want64=true
|
|
+ ;;
|
|
x86_64-*-nacl*)
|
|
targ_defvec=x86_64_elf32_nacl_vec
|
|
targ_selvecs="i386_elf32_nacl_vec x86_64_elf64_nacl_vec arm_elf32_nacl_be_vec arm_elf32_nacl_le_vec"
|
|
@@ -767,6 +772,9 @@ case "${targ}" in
|
|
targ_defvec=i386_elf32_vec
|
|
targ_selvecs="iamcu_elf32_vec i386_pe_vec i386_pei_vec"
|
|
;;
|
|
+ i[3-7]86-*-haiku*)
|
|
+ targ_defvec=i386_elf32_vec
|
|
+ ;;
|
|
i[3-7]86-*-interix*)
|
|
targ_defvec=i386_pei_vec
|
|
targ_selvecs="i386_pe_vec"
|
|
@@ -958,7 +966,10 @@ case "${targ}" in
|
|
targ_selvecs=ieee_vec
|
|
targ_underscore=yes
|
|
;;
|
|
-
|
|
+ m68*-*-haiku*)
|
|
+ targ_defvec=m68k_elf32_vec
|
|
+ targ_selvecs="m68k_coff_vec ieee_vec"
|
|
+ ;;
|
|
m88*-harris-cxux* | m88*-*-dgux* | m88*-*-sysv4*)
|
|
targ_defvec=m88k_elf32_vec
|
|
targ_selvecs=m88k_coff_bcs_vec
|
|
@@ -1014,6 +1025,10 @@ case "${targ}" in
|
|
targ_defvec=mips_elf32_trad_le_vec
|
|
targ_selvecs="mips_elf32_trad_be_vec mips_elf64_trad_be_vec mips_elf64_trad_le_vec mips_ecoff_le_vec mips_ecoff_be_vec"
|
|
;;
|
|
+ mips*el-*-haiku*)
|
|
+ targ_defvec=mips_elf32_le_vec
|
|
+ targ_selvecs="mips_elf32_be_vec mips_elf64_be_vec mips_elf64_le_vec mips_ecoff_le_vec mips_ecoff_be_vec"
|
|
+ ;;
|
|
mips*-*-netbsd*)
|
|
targ_defvec=mips_elf32_trad_be_vec
|
|
targ_selvecs="mips_elf32_trad_le_vec mips_elf64_trad_be_vec mips_elf64_trad_le_vec mips_ecoff_be_vec mips_ecoff_le_vec"
|
|
@@ -1318,6 +1333,11 @@ case "${targ}" in
|
|
targ_selvecs="mach_o_be_vec mach_o_le_vec mach_o_fat_vec pef_vec pef_xlib_vec sym_vec"
|
|
targ_archs="$targ_archs bfd_i386_arch"
|
|
;;
|
|
+ powerpc-*-haiku*)
|
|
+ targ_defvec=powerpc_elf32_vec
|
|
+ targ_selvecs="rs6000_xcoff_vec powerpc_elf32_le_vec pef_vec pef_xlib_vec powerpc_xcoff_vec powerpc_boot_vec"
|
|
+ targ_cflags=-D__HAIKU_TARGET__
|
|
+ ;;
|
|
powerpc-*-macos*)
|
|
targ_defvec=powerpc_xcoff_vec
|
|
;;
|
|
diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c
|
|
index 95ce1dc..682258b 100644
|
|
--- a/bfd/elf32-ppc.c
|
|
+++ b/bfd/elf32-ppc.c
|
|
@@ -10766,7 +10766,7 @@ ppc_elf_finish_dynamic_sections (bfd *output_bfd,
|
|
#define ELF_ARCH bfd_arch_powerpc
|
|
#define ELF_TARGET_ID PPC32_ELF_DATA
|
|
#define ELF_MACHINE_CODE EM_PPC
|
|
-#ifdef __QNXTARGET__
|
|
+#if defined(__QNXTARGET__) || defined(__HAIKU_TARGET__)
|
|
#define ELF_MAXPAGESIZE 0x1000
|
|
#define ELF_COMMONPAGESIZE 0x1000
|
|
#else
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 8e02b12..b7407e6 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -335,7 +335,7 @@ case "${ENABLE_GOLD}" in
|
|
is_elf=no
|
|
case "${target}" in
|
|
*-*-elf* | *-*-sysv4* | *-*-unixware* | *-*-eabi* | hppa*64*-*-hpux* \
|
|
- | *-*-linux* | *-*-gnu* | frv-*-uclinux* | *-*-irix5* | *-*-irix6* \
|
|
+ | *-*-linux* | *-*-gnu* | frv-*-uclinux* | *-*-irix5* | *-*-irix6* | *-*-haiku* \
|
|
| *-*-netbsd* | *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* \
|
|
| *-*-solaris2* | *-*-nto* | *-*-nacl*)
|
|
case "${target}" in
|
|
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c
|
|
index 4ba05ba..4880efd 100644
|
|
--- a/gas/config/tc-i386.c
|
|
+++ b/gas/config/tc-i386.c
|
|
@@ -420,7 +420,8 @@ const char extra_symbol_chars[] = "*%-([{"
|
|
&& !defined (TE_NETWARE) \
|
|
&& !defined (TE_FreeBSD) \
|
|
&& !defined (TE_DragonFly) \
|
|
- && !defined (TE_NetBSD)))
|
|
+ && !defined (TE_NetBSD) \
|
|
+ && !defined (TE_BeOS)))
|
|
/* This array holds the chars that always start a comment. If the
|
|
pre-processor is disabled, these aren't very useful. The option
|
|
--divide will remove '/' from this list. */
|
|
diff --git a/gas/config/te-beos.h b/gas/config/te-beos.h
|
|
new file mode 100644
|
|
index 0000000..23eea6a
|
|
--- /dev/null
|
|
+++ b/gas/config/te-beos.h
|
|
@@ -0,0 +1,30 @@
|
|
+/* te-beos.h -- BeOS target environment declarations.
|
|
+ Copyright 2013 Free Software Foundation, Inc.
|
|
+
|
|
+ This file is part of GAS, the GNU Assembler.
|
|
+
|
|
+ GAS is free software; you can redistribute it and/or modify
|
|
+ it under the terms of the GNU General Public License as published by
|
|
+ the Free Software Foundation; either version 3, or (at your option)
|
|
+ any later version.
|
|
+
|
|
+ GAS is distributed in the hope that it will be useful,
|
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
+ GNU General Public License for more details.
|
|
+
|
|
+ You should have received a copy of the GNU General Public License
|
|
+ along with GAS; see the file COPYING. If not, write to
|
|
+ the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
+ 02110-1301, USA. */
|
|
+
|
|
+/* Target environment for BeOS/Haiku. It is the same as the generic
|
|
+ target, except that it arranges via the TE_BeOS define to
|
|
+ suppress the use of "/" as a comment character. Some code in the
|
|
+ haiku kernel uses "/" to mean division. (What a concept!) */
|
|
+#define TE_BeOS 1
|
|
+
|
|
+#define LOCAL_LABELS_DOLLAR 1
|
|
+#define LOCAL_LABELS_FB 1
|
|
+
|
|
+#include "obj-format.h"
|
|
diff --git a/gas/config/te-haiku.h b/gas/config/te-haiku.h
|
|
new file mode 100644
|
|
index 0000000..5578046
|
|
--- /dev/null
|
|
+++ b/gas/config/te-haiku.h
|
|
@@ -0,0 +1,30 @@
|
|
+/* te-haiku.h -- Haiku target environment declarations.
|
|
+ Copyright 2013 Free Software Foundation, Inc.
|
|
+
|
|
+ This file is part of GAS, the GNU Assembler.
|
|
+
|
|
+ GAS is free software; you can redistribute it and/or modify
|
|
+ it under the terms of the GNU General Public License as published by
|
|
+ the Free Software Foundation; either version 3, or (at your option)
|
|
+ any later version.
|
|
+
|
|
+ GAS is distributed in the hope that it will be useful,
|
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
+ GNU General Public License for more details.
|
|
+
|
|
+ You should have received a copy of the GNU General Public License
|
|
+ along with GAS; see the file COPYING. If not, write to
|
|
+ the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
+ 02110-1301, USA. */
|
|
+
|
|
+/* Target environment for BeOS/Haiku. It is the same as the generic
|
|
+ target, except that it arranges via the TE_BeOS define to
|
|
+ suppress the use of "/" as a comment character. Some code in the
|
|
+ haiku kernel uses "/" to mean division. (What a concept!) */
|
|
+#define TE_BeOS 1
|
|
+
|
|
+#define LOCAL_LABELS_DOLLAR 1
|
|
+#define LOCAL_LABELS_FB 1
|
|
+
|
|
+#include "obj-format.h"
|
|
diff --git a/gas/configure.tgt b/gas/configure.tgt
|
|
index e2df659..93e926d 100644
|
|
--- a/gas/configure.tgt
|
|
+++ b/gas/configure.tgt
|
|
@@ -159,6 +159,7 @@ case ${generic_target} in
|
|
fmt=coff em=wince-pe ;;
|
|
arm-*-pe) fmt=coff em=pe ;;
|
|
arm-*-riscix*) fmt=aout em=riscix ;;
|
|
+ arm-*-haiku*) fmt=elf em=haiku ;;
|
|
|
|
avr-*-*) fmt=elf bfd_gas=yes ;;
|
|
|
|
@@ -215,10 +216,11 @@ case ${generic_target} in
|
|
i386-ibm-aix*) fmt=coff em=i386aix ;;
|
|
i386-sequent-bsd*) fmt=aout em=dynix ;;
|
|
i386-*-beospe*) fmt=coff em=pe ;;
|
|
- i386-*-beos*) fmt=elf ;;
|
|
+ i386-*-beos*) fmt=elf em=beos ;;
|
|
i386-*-coff) fmt=coff ;;
|
|
i386-*-elfiamcu) fmt=elf arch=iamcu ;;
|
|
- i386-*-elf*) fmt=elf ;;
|
|
+ i386-*-elf) fmt=elf ;;
|
|
+ i386-*-haiku*) fmt=elf em=haiku ;;
|
|
i386-*-kaos*) fmt=elf ;;
|
|
i386-*-bsd*) fmt=aout em=386bsd ;;
|
|
i386-*-nacl*) fmt=elf em=nacl
|
|
@@ -320,6 +322,7 @@ case ${generic_target} in
|
|
m68k-*-netbsd*) fmt=aout em=nbsd bfd_gas=yes ;;
|
|
m68k-*-openbsd*) fmt=aout em=nbsd bfd_gas=yes ;;
|
|
m68k-*-psos*) fmt=elf em=psos;;
|
|
+ m68k-*-haiku*) fmt=elf em=haiku ;;
|
|
|
|
mep-*-elf) fmt=elf ;;
|
|
|
|
@@ -342,6 +345,7 @@ case ${generic_target} in
|
|
mips-*-elf* | mips-*-rtems*) fmt=elf ;;
|
|
mips-*-netbsd*) fmt=elf em=tmips ;;
|
|
mips-*-openbsd*) fmt=elf em=tmips ;;
|
|
+ mips*-*-haiku*) fmt=elf endian=little em=haiku ;;
|
|
|
|
mmix-*-*) fmt=elf ;;
|
|
|
|
@@ -380,9 +384,10 @@ case ${generic_target} in
|
|
ppc-*-aix5.[01]) fmt=coff em=aix5 ;;
|
|
ppc-*-aix[5-9].*) fmt=coff em=aix5 ;;
|
|
ppc-*-aix*) fmt=coff em=aix ;;
|
|
- ppc-*-beos*) fmt=coff ;;
|
|
+ ppc-*-beos*) fmt=coff em=beos ;;
|
|
ppc-*-*n*bsd* | ppc-*-elf*) fmt=elf ;;
|
|
ppc-*-eabi* | ppc-*-sysv4*) fmt=elf ;;
|
|
+ ppc-*-haiku*) fmt=elf em=haiku ;;
|
|
ppc-*-linux-*) fmt=elf em=linux ;;
|
|
ppc-*-solaris*) fmt=elf em=solaris ;;
|
|
ppc-*-rtems*) fmt=elf ;;
|
|
diff --git a/ld/Makefile.am b/ld/Makefile.am
|
|
index 0598923..b02941c 100644
|
|
--- a/ld/Makefile.am
|
|
+++ b/ld/Makefile.am
|
|
@@ -175,6 +175,7 @@ ALL_EMULATION_SOURCES = \
|
|
earmcoff.c \
|
|
earmelf.c \
|
|
earmelf_fbsd.c \
|
|
+ earmelf_haiku.c \
|
|
earmelf_linux.c \
|
|
earmelf_linux_eabi.c \
|
|
earmelf_nacl.c \
|
|
@@ -269,6 +270,7 @@ ALL_EMULATION_SOURCES = \
|
|
eelf32or1k_linux.c \
|
|
eelf32ppc.c \
|
|
eelf32ppc_fbsd.c \
|
|
+ eelf32ppchaiku.c \
|
|
eelf32ppclinux.c \
|
|
eelf32ppcnto.c \
|
|
eelf32ppcsim.c \
|
|
@@ -290,11 +292,13 @@ ALL_EMULATION_SOURCES = \
|
|
eelf_i386_be.c \
|
|
eelf_i386_chaos.c \
|
|
eelf_i386_fbsd.c \
|
|
+ eelf_i386_haiku.c \
|
|
eelf_i386_ldso.c \
|
|
eelf_i386_nacl.c \
|
|
eelf_i386_sol2.c \
|
|
eelf_i386_vxworks.c \
|
|
eelf_iamcu.c \
|
|
+ eelf_mipsel_haiku.c \
|
|
eelf_s390.c \
|
|
egld960.c \
|
|
egld960coff.c \
|
|
@@ -505,6 +509,7 @@ ALL_64_EMULATION_SOURCES = \
|
|
eelf_x86_64.c \
|
|
eelf_x86_64_cloudabi.c \
|
|
eelf_x86_64_fbsd.c \
|
|
+ eelf_x86_64_haiku.c \
|
|
eelf_x86_64_nacl.c \
|
|
eelf_x86_64_sol2.c \
|
|
ehppa64linux.c \
|
|
@@ -757,6 +762,10 @@ earmelf_fbsd.c: $(srcdir)/emulparams/armelf_fbsd.sh \
|
|
$(ELF_DEPS) $(srcdir)/emultempl/armelf.em \
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
+earmelf_haiku.c: $(srcdir)/emulparams/armelf_haiku.sh \
|
|
+ $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \
|
|
+ $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
+
|
|
earmelf_linux.c: $(srcdir)/emulparams/armelf_linux.sh \
|
|
$(ELF_DEPS) $(srcdir)/emultempl/armelf.em \
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
@@ -1240,6 +1249,12 @@ eelf32ppc_fbsd.c: $(srcdir)/emulparams/elf32ppc_fbsd.sh \
|
|
$(srcdir)/emultempl/ppc32elf.em ldemul-list.h \
|
|
$(ELF_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
+eelf32ppchaiku.c: $(srcdir)/emulparams/elf32ppchaiku.sh \
|
|
+ $(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emulparams/elf32ppccommon.sh \
|
|
+ $(srcdir)/emultempl/ppc32elf.em $(ELF_DEPS) \
|
|
+ ldemul-list.h \
|
|
+ $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
+
|
|
eelf32ppclinux.c: $(srcdir)/emulparams/elf32ppclinux.sh \
|
|
$(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emulparams/elf32ppccommon.sh \
|
|
$(srcdir)/emultempl/ppc32elf.em ldemul-list.h \
|
|
@@ -1322,6 +1337,9 @@ eelf_i386_fbsd.c: $(srcdir)/emulparams/elf_i386_fbsd.sh \
|
|
$(srcdir)/emulparams/elf_i386.sh \
|
|
$(ELF_X86_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
+eelf_i386_haiku.c: $(srcdir)/emulparams/elf_i386_haiku.sh \
|
|
+ $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
+
|
|
eelf_i386_ldso.c: $(srcdir)/emulparams/elf_i386_ldso.sh \
|
|
$(ELF_X86_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
@@ -1335,6 +1353,9 @@ eelf_i386_sol2.c: $(srcdir)/emulparams/elf_i386_sol2.sh \
|
|
$(srcdir)/emultempl/solaris2.em \
|
|
$(ELF_X86_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
+eelf_mipsel_haiku.c: $(srcdir)/emulparams/elf_mipsel_haiku.sh \
|
|
+ $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
+
|
|
eelf_i386_vxworks.c: $(srcdir)/emulparams/elf_i386_vxworks.sh \
|
|
$(srcdir)/emulparams/vxworks.sh $(srcdir)/emultempl/vxworks.em \
|
|
$(ELF_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
@@ -2013,6 +2034,10 @@ eelf_x86_64_fbsd.c: $(srcdir)/emulparams/elf_x86_64_fbsd.sh \
|
|
$(srcdir)/emulparams/elf_x86_64.sh \
|
|
$(ELF_X86_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
+eelf_x86_64_haiku.c: $(srcdir)/emulparams/elf_x86_64_haiku.sh \
|
|
+ $(srcdir)/emulparams/elf_x86_64.sh \
|
|
+ $(ELF_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
+
|
|
eelf_x86_64_nacl.c: $(srcdir)/emulparams/elf_x86_64_nacl.sh \
|
|
$(srcdir)/emulparams/elf_x86_64.sh \
|
|
$(srcdir)/emulparams/elf_nacl.sh \
|
|
diff --git a/ld/configure.tgt b/ld/configure.tgt
|
|
index a3db909..6a4da5e 100644
|
|
--- a/ld/configure.tgt
|
|
+++ b/ld/configure.tgt
|
|
@@ -150,6 +150,7 @@ arm*-*-uclinux*) targ_emul=armelf_linux
|
|
;;
|
|
arm-*-vxworks) targ_emul=armelf_vxworks ;;
|
|
arm*-*-conix*) targ_emul=armelf ;;
|
|
+arm*-*-haiku*) targ_emul=armelf_haiku; targ_extra_emuls=armelf ;;
|
|
avr-*-*) targ_emul=avr2
|
|
targ_extra_emuls="avr1 avr25 avr3 avr31 avr35 avr4 avr5 avr51 avr6 avrxmega1 avrxmega2 avrxmega3 avrxmega4 avrxmega5 avrxmega6 avrxmega7 avrtiny"
|
|
;;
|
|
@@ -372,6 +373,9 @@ i[3-7]86-*-interix*) targ_emul=i386pe_posix;
|
|
targ_extra_ofiles="deffilep.o pe-dll.o" ;;
|
|
i[3-7]86-*-beospe*) targ_emul=i386beos ;;
|
|
i[3-7]86-*-beos*) targ_emul=elf_i386_be ;;
|
|
+i[3-7]86-*-haiku*) targ_emul=elf_i386_haiku ;;
|
|
+x86_64-*-haiku*) targ_emul=elf_x86_64_haiku
|
|
+ targ_extra_emuls="elf_x86_64 elf_i386_haiku" ;;
|
|
i[3-7]86-*-vxworks*) targ_emul=elf_i386_vxworks ;;
|
|
i[3-7]86-*-chaos) targ_emul=elf_i386_chaos
|
|
;;
|
|
@@ -455,7 +459,9 @@ m68*-*-netbsdaout* | m68*-*-netbsd*)
|
|
targ_extra_emuls="m68kelfnbsd m68k4knbsd" ;;
|
|
m68*-*-psos*) targ_emul=m68kpsos ;;
|
|
m68*-*-rtemscoff*) targ_emul=m68kcoff ;;
|
|
-m68*-*-rtems*) targ_emul=m68kelf
|
|
+m68*-*-rtems*) targ_emul=m68kelf ;;
|
|
+m68*-*-haiku*) targ_emul=m68kelf
|
|
+ targ_extra_emuls=m68kcoff
|
|
;;
|
|
m8*-*-*) targ_emul=m88kbcs
|
|
;;
|
|
@@ -484,6 +490,9 @@ mips*-sgi-irix6*) targ_emul=elf32bmipn32
|
|
mips*el-*-netbsd*) targ_emul=elf32ltsmip
|
|
targ_extra_emuls="elf32btsmip elf64ltsmip elf64btsmip"
|
|
;;
|
|
+mips*el-*-haiku*) targ_emul=elf_mipsel_haiku
|
|
+ targ_extra_emuls="elf32ltsmip elf32btsmip elf32ltsmipn32 elf64ltsmip elf32btsmipn32 elf64btsmip"
|
|
+ ;;
|
|
mips*-*-netbsd*) targ_emul=elf32btsmip
|
|
targ_extra_emuls="elf32ltsmip elf64btsmip elf64ltsmip"
|
|
;;
|
|
@@ -642,6 +651,7 @@ powerpcle-*-pe | powerpcle-*-winnt* | powerpcle-*-cygwin*)
|
|
powerpc-*-aix[5-9]*) targ_emul=aix5ppc ;;
|
|
powerpc-*-aix*) targ_emul=aixppc ;;
|
|
powerpc-*-beos*) targ_emul=aixppc ;;
|
|
+powerpc-*-haiku*) targ_emul=elf32ppchaiku ;;
|
|
powerpc-*-windiss*) targ_emul=elf32ppcwindiss ;;
|
|
powerpc-*-lynxos*) targ_emul=ppclynx ;;
|
|
rs6000-*-aix[5-9]*) targ_emul=aix5rs6 ;;
|
|
diff --git a/ld/emulparams/armelf_haiku.sh b/ld/emulparams/armelf_haiku.sh
|
|
new file mode 100644
|
|
index 0000000..9dcdf54
|
|
--- /dev/null
|
|
+++ b/ld/emulparams/armelf_haiku.sh
|
|
@@ -0,0 +1,26 @@
|
|
+ARCH=arm
|
|
+SCRIPT_NAME=elf
|
|
+OUTPUT_FORMAT="elf32-littlearm"
|
|
+BIG_OUTPUT_FORMAT="elf32-bigarm"
|
|
+LITTLE_OUTPUT_FORMAT="elf32-littlearm"
|
|
+MAXPAGESIZE=0x8000
|
|
+COMMONPAGESIZE=0x1000
|
|
+TEMPLATE_NAME=elf32
|
|
+EXTRA_EM_FILE=armelf
|
|
+GENERATE_SHLIB_SCRIPT=yes
|
|
+GENERATE_PIE_SCRIPT=yes
|
|
+
|
|
+DATA_START_SYMBOLS='__data_start = . ;';
|
|
+OTHER_TEXT_SECTIONS='*(.glue_7t) *(.glue_7)'
|
|
+OTHER_BSS_SYMBOLS='__bss_start__ = .;'
|
|
+OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ;'
|
|
+OTHER_END_SYMBOLS='__end__ = . ;'
|
|
+OTHER_SECTIONS='.note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }'
|
|
+
|
|
+TEXT_START_ADDR=0x00008000
|
|
+TARGET2_TYPE=got-rel
|
|
+
|
|
+# ARM does not support .s* sections.
|
|
+NO_SMALL_DATA=yes
|
|
+
|
|
+. ${srcdir}/emulparams/elf_haiku.sh
|
|
diff --git a/ld/emulparams/elf32ppchaiku.sh b/ld/emulparams/elf32ppchaiku.sh
|
|
new file mode 100644
|
|
index 0000000..547e5c8
|
|
--- /dev/null
|
|
+++ b/ld/emulparams/elf32ppchaiku.sh
|
|
@@ -0,0 +1,7 @@
|
|
+. ${srcdir}/emulparams/elf32ppc.sh
|
|
+. ${srcdir}/emulparams/elf_haiku.sh
|
|
+TEXT_START_ADDR=0x200000
|
|
+MAXPAGESIZE=0x1000
|
|
+GENERATE_SHLIB_SCRIPT=yes
|
|
+BSS_PLT=
|
|
+LIBPATH_SUFFIX=
|
|
diff --git a/ld/emulparams/elf_haiku.sh b/ld/emulparams/elf_haiku.sh
|
|
new file mode 100644
|
|
index 0000000..401eedc
|
|
--- /dev/null
|
|
+++ b/ld/emulparams/elf_haiku.sh
|
|
@@ -0,0 +1 @@
|
|
+ELF_INTERPRETER_NAME=\"/system/runtime_loader\"
|
|
diff --git a/ld/emulparams/elf_i386_haiku.sh b/ld/emulparams/elf_i386_haiku.sh
|
|
new file mode 100644
|
|
index 0000000..b70da86
|
|
--- /dev/null
|
|
+++ b/ld/emulparams/elf_i386_haiku.sh
|
|
@@ -0,0 +1,12 @@
|
|
+SCRIPT_NAME=elf
|
|
+OUTPUT_FORMAT="elf32-i386"
|
|
+TEXT_START_ADDR=0x200000
|
|
+NONPAGED_TEXT_START_ADDR=0x200000
|
|
+MAXPAGESIZE=0x1000
|
|
+ARCH=i386
|
|
+MACHINE=
|
|
+NOP=0x90909090
|
|
+TEMPLATE_NAME=elf32
|
|
+GENERATE_SHLIB_SCRIPT=yes
|
|
+NO_SMALL_DATA=yes
|
|
+. ${srcdir}/emulparams/elf_haiku.sh
|
|
diff --git a/ld/emulparams/elf_mipsel_haiku.sh b/ld/emulparams/elf_mipsel_haiku.sh
|
|
new file mode 100644
|
|
index 0000000..ab38e23
|
|
--- /dev/null
|
|
+++ b/ld/emulparams/elf_mipsel_haiku.sh
|
|
@@ -0,0 +1,3 @@
|
|
+. ${srcdir}/emulparams/elf32lmip.sh
|
|
+. ${srcdir}/emulparams/elf_haiku.sh
|
|
+
|
|
diff --git a/ld/emulparams/elf_x86_64_haiku.sh b/ld/emulparams/elf_x86_64_haiku.sh
|
|
new file mode 100644
|
|
index 0000000..f049559
|
|
--- /dev/null
|
|
+++ b/ld/emulparams/elf_x86_64_haiku.sh
|
|
@@ -0,0 +1,2 @@
|
|
+. ${srcdir}/emulparams/elf_x86_64.sh
|
|
+. ${srcdir}/emulparams/elf_haiku.sh
|
|
diff --git a/libtool.m4 b/libtool.m4
|
|
index 24d13f3..84d70b8 100644
|
|
--- a/libtool.m4
|
|
+++ b/libtool.m4
|
|
@@ -2342,7 +2342,7 @@ haiku*)
|
|
soname_spec='${libname}${release}${shared_ext}$major'
|
|
shlibpath_var=LIBRARY_PATH
|
|
shlibpath_overrides_runpath=yes
|
|
- sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/beos/system/lib'
|
|
+ sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'
|
|
hardcode_into_libs=yes
|
|
;;
|
|
|
|
--
|
|
2.13.1
|
|
|
|
|
|
From 4a1925b857b1fb1e48480c6e0f20add37aaf7040 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= <jerome.duval@gmail.com>
|
|
Date: Sat, 5 Aug 2017 12:27:13 +0200
|
|
Subject: Haiku: regenerate configure and Makefile.in.
|
|
|
|
|
|
diff --git a/binutils/configure b/binutils/configure
|
|
index ea013d1..36d3aed 100755
|
|
--- a/binutils/configure
|
|
+++ b/binutils/configure
|
|
@@ -10429,7 +10429,7 @@ haiku*)
|
|
soname_spec='${libname}${release}${shared_ext}$major'
|
|
shlibpath_var=LIBRARY_PATH
|
|
shlibpath_overrides_runpath=yes
|
|
- sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/beos/system/lib'
|
|
+ sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'
|
|
hardcode_into_libs=yes
|
|
;;
|
|
|
|
diff --git a/gprof/configure b/gprof/configure
|
|
index 4c17248..63d73e7 100755
|
|
--- a/gprof/configure
|
|
+++ b/gprof/configure
|
|
@@ -10105,7 +10105,7 @@ haiku*)
|
|
soname_spec='${libname}${release}${shared_ext}$major'
|
|
shlibpath_var=LIBRARY_PATH
|
|
shlibpath_overrides_runpath=yes
|
|
- sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/beos/system/lib'
|
|
+ sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'
|
|
hardcode_into_libs=yes
|
|
;;
|
|
|
|
diff --git a/ld/Makefile.in b/ld/Makefile.in
|
|
index 7c78198..0c2657e 100644
|
|
--- a/ld/Makefile.in
|
|
+++ b/ld/Makefile.in
|
|
@@ -543,6 +543,7 @@ ALL_EMULATION_SOURCES = \
|
|
earmcoff.c \
|
|
earmelf.c \
|
|
earmelf_fbsd.c \
|
|
+ earmelf_haiku.c \
|
|
earmelf_linux.c \
|
|
earmelf_linux_eabi.c \
|
|
earmelf_nacl.c \
|
|
@@ -637,6 +638,7 @@ ALL_EMULATION_SOURCES = \
|
|
eelf32or1k_linux.c \
|
|
eelf32ppc.c \
|
|
eelf32ppc_fbsd.c \
|
|
+ eelf32ppchaiku.c \
|
|
eelf32ppclinux.c \
|
|
eelf32ppcnto.c \
|
|
eelf32ppcsim.c \
|
|
@@ -658,11 +660,13 @@ ALL_EMULATION_SOURCES = \
|
|
eelf_i386_be.c \
|
|
eelf_i386_chaos.c \
|
|
eelf_i386_fbsd.c \
|
|
+ eelf_i386_haiku.c \
|
|
eelf_i386_ldso.c \
|
|
eelf_i386_nacl.c \
|
|
eelf_i386_sol2.c \
|
|
eelf_i386_vxworks.c \
|
|
eelf_iamcu.c \
|
|
+ eelf_mipsel_haiku.c \
|
|
eelf_s390.c \
|
|
egld960.c \
|
|
egld960coff.c \
|
|
@@ -872,6 +876,7 @@ ALL_64_EMULATION_SOURCES = \
|
|
eelf_x86_64.c \
|
|
eelf_x86_64_cloudabi.c \
|
|
eelf_x86_64_fbsd.c \
|
|
+ eelf_x86_64_haiku.c \
|
|
eelf_x86_64_nacl.c \
|
|
eelf_x86_64_sol2.c \
|
|
ehppa64linux.c \
|
|
@@ -1180,6 +1185,7 @@ distclean-compile:
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmcoff.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_fbsd.Po@am__quote@
|
|
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_haiku.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_linux.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_linux_eabi.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_nacl.Po@am__quote@
|
|
@@ -1297,6 +1303,7 @@ distclean-compile:
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32or1k_linux.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppc.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppc_fbsd.Po@am__quote@
|
|
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppchaiku.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppclinux.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcnto.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcsim.Po@am__quote@
|
|
@@ -1342,6 +1349,7 @@ distclean-compile:
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_be.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_chaos.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_fbsd.Po@am__quote@
|
|
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_haiku.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_ldso.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_nacl.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_sol2.Po@am__quote@
|
|
@@ -1351,10 +1359,12 @@ distclean-compile:
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_k1om_fbsd.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_l1om.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_l1om_fbsd.Po@am__quote@
|
|
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_mipsel_haiku.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_s390.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_cloudabi.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_fbsd.Po@am__quote@
|
|
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_haiku.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_nacl.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_sol2.Po@am__quote@
|
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egld960.Po@am__quote@
|
|
@@ -2345,6 +2355,10 @@ earmelf_fbsd.c: $(srcdir)/emulparams/armelf_fbsd.sh \
|
|
$(ELF_DEPS) $(srcdir)/emultempl/armelf.em \
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
+earmelf_haiku.c: $(srcdir)/emulparams/armelf_haiku.sh \
|
|
+ $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \
|
|
+ $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
+
|
|
earmelf_linux.c: $(srcdir)/emulparams/armelf_linux.sh \
|
|
$(ELF_DEPS) $(srcdir)/emultempl/armelf.em \
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
@@ -2828,6 +2842,12 @@ eelf32ppc_fbsd.c: $(srcdir)/emulparams/elf32ppc_fbsd.sh \
|
|
$(srcdir)/emultempl/ppc32elf.em ldemul-list.h \
|
|
$(ELF_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
+eelf32ppchaiku.c: $(srcdir)/emulparams/elf32ppchaiku.sh \
|
|
+ $(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emulparams/elf32ppccommon.sh \
|
|
+ $(srcdir)/emultempl/ppc32elf.em $(ELF_DEPS) \
|
|
+ ldemul-list.h \
|
|
+ $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
+
|
|
eelf32ppclinux.c: $(srcdir)/emulparams/elf32ppclinux.sh \
|
|
$(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emulparams/elf32ppccommon.sh \
|
|
$(srcdir)/emultempl/ppc32elf.em ldemul-list.h \
|
|
@@ -2910,6 +2930,9 @@ eelf_i386_fbsd.c: $(srcdir)/emulparams/elf_i386_fbsd.sh \
|
|
$(srcdir)/emulparams/elf_i386.sh \
|
|
$(ELF_X86_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
+eelf_i386_haiku.c: $(srcdir)/emulparams/elf_i386_haiku.sh \
|
|
+ $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
+
|
|
eelf_i386_ldso.c: $(srcdir)/emulparams/elf_i386_ldso.sh \
|
|
$(ELF_X86_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
@@ -2923,6 +2946,9 @@ eelf_i386_sol2.c: $(srcdir)/emulparams/elf_i386_sol2.sh \
|
|
$(srcdir)/emultempl/solaris2.em \
|
|
$(ELF_X86_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
+eelf_mipsel_haiku.c: $(srcdir)/emulparams/elf_mipsel_haiku.sh \
|
|
+ $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
+
|
|
eelf_i386_vxworks.c: $(srcdir)/emulparams/elf_i386_vxworks.sh \
|
|
$(srcdir)/emulparams/vxworks.sh $(srcdir)/emultempl/vxworks.em \
|
|
$(ELF_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
@@ -3601,6 +3627,10 @@ eelf_x86_64_fbsd.c: $(srcdir)/emulparams/elf_x86_64_fbsd.sh \
|
|
$(srcdir)/emulparams/elf_x86_64.sh \
|
|
$(ELF_X86_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
+eelf_x86_64_haiku.c: $(srcdir)/emulparams/elf_x86_64_haiku.sh \
|
|
+ $(srcdir)/emulparams/elf_x86_64.sh \
|
|
+ $(ELF_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
+
|
|
eelf_x86_64_nacl.c: $(srcdir)/emulparams/elf_x86_64_nacl.sh \
|
|
$(srcdir)/emulparams/elf_x86_64.sh \
|
|
$(srcdir)/emulparams/elf_nacl.sh \
|
|
diff --git a/opcodes/configure b/opcodes/configure
|
|
index 5a4da06..b7cb0c3 100755
|
|
--- a/opcodes/configure
|
|
+++ b/opcodes/configure
|
|
@@ -10354,7 +10354,7 @@ haiku*)
|
|
soname_spec='${libname}${release}${shared_ext}$major'
|
|
shlibpath_var=LIBRARY_PATH
|
|
shlibpath_overrides_runpath=yes
|
|
- sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/beos/system/lib'
|
|
+ sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'
|
|
hardcode_into_libs=yes
|
|
;;
|
|
|
|
--
|
|
2.13.1
|
|
|