# DJGPP specific changes to binutils for the DJGPP port of binutils # excluding the changes specific to libbfd and libiberty. 2020-03-01 Juan Manuel Guerrero * binutils/addr2line.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. * binutils/ar.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. * binutils/coffdump.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. * binutils/config.in [__DJGPP__]: Added DJGPP specific macros definitions. They are all NO-OPS for other OSes. * binutils/cxxfilt.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. * binutils/nm.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. * binutils/objcopy.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. * binutils/objdump.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. * binutils/readelf.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. (print_symbol) [__DJGPP__]: Use mbtowc instead of mbrtowc. * binutils/size.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. * binutils/srconv.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. * binutils/strings.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. * binutils/sysdump.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. * config.sub: Use uname result to set basic_machine value instead of hardcoded one. * djgpp/build.sh: DJGPP specific shell script to adjust, configure and compile progs and libs. To support the build of a binutils version used by a cross-compiler, the sed scripts that modified bfd/Makefile.in and config.in files have been removed. This change is now part of the patch. * gas/as.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. * gas/config/obj-coff-seh.c (get_pxdata_name): Pacify compiler. * gas/config.in [__DJGPP__]: Added DJGPP specific macros definitions. They are all NO-OPS for other OSes. * gas/dw2gencfi.c (get_debugseg_name): Pacify compiler. * gold/config.in [__DJGPP__]: Added DJGPP specific macros definitions. They are all NO-OPS for other OSes. * gprof/gconfig.in [__DJGPP__]: Added DJGPP specific macros definitions. They are all NO-OPS for other OSes. * gprof/gprof.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. (main) [COFF_GO32_EXE, COFF_GO32]: Call bfd_init to check to enable/disable the coff 64k relocation support. * ld/config.in [__DJGPP__]: Added DJGPP specific macros definitions. They are all NO-OPS for other OSes. [__DJGPP__]: For DJGPP versions greather than 2.03 enable support to resolve multiple symbol definitions due to the use of DXE3 modules by defining the HAVE_DXE3_SUPPORT macro. * ld/configure: Set HAVE_DXE3_SUPPORT to 1 if using DJGPP as taget OS. * ld/ldfile.c [__DJGPP__]: New function map_LFN_to_SFN. Maps a library long filename to a short filename according to a table defined in /dev/env/DJDIR/lib/libnames.tab. (ldfile_try_open_bfd) [__DJGPP__]: If library is not found by its original name try the mapped SFN one. * ld/ldmain.c (main): Use STRIP_FULL_PATH_AND_EXTENSION to adjust file name. (multiple_definition) [HAVE_DXE3_SUPPORT]: If the linker is compiled for DX3 module support, it will be able to resolve multiple symbol definitions. This is usually the case when different DXE3 import libraries provide the same wrapper function to call certain function from the DXE3 module. If the symbol is defined in a static library and in an import library, the import library definition takes always precedence over the static library. This is to guarantee that all aplications linked with the same DXE3 module use the same functionality and not the one from the static library. The DXE3 module provides functions ported to DJGPP, the functions from the static library may not be ported to DJGPP and may behave differently. (multiple_definition) [HAVE_DXE3_SUPPORT]: Allow also the older file name $$dxe$$.o as identifier of import libraries generated by dxe3gen.exe. * ld/libnames.tab: New file providing the mapping table between the library's LFN to SFN. LFN to SFN mapping for PCRE2 libraries added. * ld/scripttempl/i386go32.sc: DJGPP specific adjustments to the linker script. Taken from djcross-binutils-2.19.1-10ap.src.rpm. Added discard .gnu.lto_* sections command to linker script. Fixed w/out relocation (-r) and w/out relocation and do ctor (-Ur) linker scripts. * opcodes/config.in [__DJGPP__]: Added DJGPP specific macros definitions. They are all NO-OPS for other OSes. * libctf/config.h.in [__DJGPP__]: Added DJGPP specific macros definitions. Define HAVE_TSL_SUPPORT if the gcc version is greather equal than 4.3.0. * libctf/swap.h [__DJGPP__]: bswap_identity_64, bswap_16, bswap_32 and bswap_64 reimplemented as macros to avoid issues with the inline versions of those functions with different gcc versions. * libctf/ctf-archive.c [HAVE_TSL_SUPPORT]: Do not use __thread if not supported by gcc. diff -aprNU5 binutils-2.34.orig/binutils/ar.c binutils-2.34/binutils/ar.c --- binutils-2.34.orig/binutils/ar.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/binutils/ar.c 2020-03-01 19:35:24 +0000 @@ -719,11 +719,11 @@ main (int argc, char **argv) setlocale (LC_CTYPE, ""); #endif bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - program_name = argv[0]; + program_name = STRIP_FULL_PATH_AND_EXTENSION(argv[0]); xmalloc_set_program_name (program_name); bfd_set_error_program_name (program_name); #if BFD_SUPPORTS_PLUGINS bfd_plugin_set_program_name (program_name); #endif diff -aprNU5 binutils-2.34.orig/binutils/coffdump.c binutils-2.34/binutils/coffdump.c --- binutils-2.34.orig/binutils/coffdump.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/binutils/coffdump.c 2020-03-01 19:35:24 +0000 @@ -497,11 +497,11 @@ main (int ac, char **av) setlocale (LC_CTYPE, ""); #endif bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - program_name = av[0]; + program_name = STRIP_FULL_PATH_AND_EXTENSION(av[0]); xmalloc_set_program_name (program_name); bfd_set_error_program_name (program_name); expandargv (&ac, &av); diff -aprNU5 binutils-2.34.orig/binutils/config.in binutils-2.34/binutils/config.in --- binutils-2.34.orig/binutils/config.in 2020-02-01 11:50:08 +0000 +++ binutils-2.34/binutils/config.in 2020-03-01 19:35:24 +0000 @@ -300,5 +300,40 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE /* Define to `unsigned int' if does not define. */ #undef size_t + +#ifdef __DJGPP__ +# if defined (__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8)) +# define __gnuc_extension__ __extension__ +# else +# define __gnuc_extension__ +# endif + +# undef IS_SLASH +# define IS_SLASH(c) ((c) == '/' || (c) == '\\') +# undef IS_DIRECTORY_SEPARATOR +# define IS_DIRECTORY_SEPARATOR(c) (IS_SLASH(c) || (c) == ':') + +# include +# define STRIP_FULL_PATH_AND_EXTENSION(file_name) \ + (__gnuc_extension__ \ + ({ \ + char *_dst, *_src; \ + _dst = _src = unconst((file_name), char *); \ + while (*_src++) \ + ; \ + while ((_src - _dst) && (*--_src != '.')) \ + ; \ + for (*_src = '\0'; (_src - _dst); _src--) \ + if (IS_DIRECTORY_SEPARATOR(*_src)) \ + break; \ + if (_src - _dst) \ + while ((*_dst++ = *++_src)) \ + ; \ + (file_name); \ + }) \ + ) +#else +# define STRIP_FULL_PATH_AND_EXTENSION(file_name) (file_name) +#endif diff -aprNU5 binutils-2.34.orig/binutils/cxxfilt.c binutils-2.34/binutils/cxxfilt.c --- binutils-2.34.orig/binutils/cxxfilt.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/binutils/cxxfilt.c 2020-03-01 19:35:24 +0000 @@ -142,11 +142,11 @@ main (int argc, char **argv) { int c; const char *valid_symbols; enum demangling_styles style = auto_demangling; - program_name = argv[0]; + program_name = STRIP_FULL_PATH_AND_EXTENSION(argv[0]); xmalloc_set_program_name (program_name); bfd_set_error_program_name (program_name); expandargv (&argc, &argv); diff -aprNU5 binutils-2.34.orig/binutils/nm.c binutils-2.34/binutils/nm.c --- binutils-2.34.orig/binutils/nm.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/binutils/nm.c 2020-03-01 19:35:24 +0000 @@ -1695,11 +1695,11 @@ main (int argc, char **argv) setlocale (LC_COLLATE, ""); #endif bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - program_name = *argv; + program_name = STRIP_FULL_PATH_AND_EXTENSION(argv[0]); xmalloc_set_program_name (program_name); bfd_set_error_program_name (program_name); #if BFD_SUPPORTS_PLUGINS bfd_plugin_set_program_name (program_name); #endif diff -aprNU5 binutils-2.34.orig/binutils/objcopy.c binutils-2.34/binutils/objcopy.c --- binutils-2.34.orig/binutils/objcopy.c 2020-01-28 09:32:00 +0000 +++ binutils-2.34/binutils/objcopy.c 2020-03-01 19:35:24 +0000 @@ -5935,11 +5935,11 @@ main (int argc, char *argv[]) setlocale (LC_CTYPE, ""); #endif bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - program_name = argv[0]; + program_name = STRIP_FULL_PATH_AND_EXTENSION(argv[0]); xmalloc_set_program_name (program_name); START_PROGRESS (program_name, 0); expandargv (&argc, &argv); diff -aprNU5 binutils-2.34.orig/binutils/objdump.c binutils-2.34/binutils/objdump.c --- binutils-2.34.orig/binutils/objdump.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/binutils/objdump.c 2020-03-01 19:35:24 +0000 @@ -5031,11 +5031,11 @@ main (int argc, char **argv) #endif bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - program_name = *argv; + program_name = STRIP_FULL_PATH_AND_EXTENSION(argv[0]); xmalloc_set_program_name (program_name); bfd_set_error_program_name (program_name); START_PROGRESS (program_name, 0); diff -aprNU5 binutils-2.34.orig/binutils/readelf.c binutils-2.34/binutils/readelf.c --- binutils-2.34.orig/binutils/readelf.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/binutils/readelf.c 2020-03-01 19:35:24 +0000 @@ -584,11 +584,16 @@ print_symbol (signed int width, const ch #ifdef HAVE_MBSTATE_T /* Try to find out how many bytes made up the character that was just printed. Advance the symbol pointer past the bytes that were displayed. */ +#ifdef __DJGPP__ + /* DJGPP does not provide mbrtowc. */ + n = mbtowc (& w, symbol - 1, MB_CUR_MAX); +#else n = mbrtowc (& w, symbol - 1, MB_CUR_MAX, & state); +#endif #else n = 1; #endif if (n != (size_t) -1 && n != (size_t) -2 && n > 0) symbol += (n - 1); diff -aprNU5 binutils-2.34.orig/binutils/size.c binutils-2.34/binutils/size.c --- binutils-2.34.orig/binutils/size.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/binutils/size.c 2020-03-01 19:35:24 +0000 @@ -141,11 +141,11 @@ main (int argc, char **argv) setlocale (LC_CTYPE, ""); #endif bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - program_name = *argv; + program_name = STRIP_FULL_PATH_AND_EXTENSION(argv[0]); xmalloc_set_program_name (program_name); bfd_set_error_program_name (program_name); expandargv (&argc, &argv); diff -aprNU5 binutils-2.34.orig/binutils/srconv.c binutils-2.34/binutils/srconv.c --- binutils-2.34.orig/binutils/srconv.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/binutils/srconv.c 2020-03-01 19:35:24 +0000 @@ -1731,11 +1731,11 @@ main (int ac, char **av) setlocale (LC_CTYPE, ""); #endif bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - program_name = av[0]; + program_name = STRIP_FULL_PATH_AND_EXTENSION(av[0]); xmalloc_set_program_name (program_name); bfd_set_error_program_name (program_name); expandargv (&ac, &av); diff -aprNU5 binutils-2.34.orig/binutils/strings.c binutils-2.34/binutils/strings.c --- binutils-2.34.orig/binutils/strings.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/binutils/strings.c 2020-03-01 19:35:24 +0000 @@ -153,11 +153,11 @@ main (int argc, char **argv) setlocale (LC_ALL, ""); #endif bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - program_name = argv[0]; + program_name = STRIP_FULL_PATH_AND_EXTENSION(argv[0]); xmalloc_set_program_name (program_name); bfd_set_error_program_name (program_name); expandargv (&argc, &argv); diff -aprNU5 binutils-2.34.orig/binutils/sysdump.c binutils-2.34/binutils/sysdump.c --- binutils-2.34.orig/binutils/sysdump.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/binutils/sysdump.c 2020-03-01 19:35:24 +0000 @@ -668,11 +668,11 @@ main (int ac, char **av) setlocale (LC_CTYPE, ""); #endif bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - program_name = av[0]; + program_name = STRIP_FULL_PATH_AND_EXTENSION(av[0]); xmalloc_set_program_name (program_name); bfd_set_error_program_name (program_name); expandargv (&ac, &av); diff -aprNU5 binutils-2.34.orig/config.sub binutils-2.34/config.sub --- binutils-2.34.orig/config.sub 2020-01-18 13:55:46 +0000 +++ binutils-2.34/config.sub 2020-03-01 19:35:24 +0000 @@ -301,10 +301,19 @@ case $1 in basic_machine=i686-pc os=dicos ;; djgpp) basic_machine=i586-pc + UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown + case $UNAME_MACHINE in + *386*) basic_machine=i386-pc;; + *486*) basic_machine=i486-pc;; + *586*) basic_machine=i586-pc;; + *686*) basic_machine=i686-pc;; + *786*) basic_machine=i786-pc;; + *) basic_machine=i586-pc;; + esac os=msdosdjgpp ;; ebmon29k) basic_machine=a29k-amd os=ebmon diff -aprNU5 binutils-2.34.orig/djgpp/build.sh binutils-2.34/djgpp/build.sh --- binutils-2.34.orig/djgpp/build.sh 1970-01-01 00:00:00 +0000 +++ binutils-2.34/djgpp/build.sh 2020-03-01 19:35:24 +0000 @@ -0,0 +1,490 @@ +# This script only works in the ./djgpp directory. + +export HOME=. +export PATH_SEPARATOR=: +export PATH_EXPAND=y +export TEST_FINDS_EXE=y +export LD=ld +export NM=nm +export LN_S="cp -p" +export GMSGFMT=${GMSGFMT='/dev/env/DJDIR/bin/msgfmt'} +export MSGFMT=${MSGFMT='/dev/env/DJDIR/bin/msgfmt'} +export MSGMERGE=${MSGMERGE='/dev/env/DJDIR/bin/msgmerge'} +export XGETTEXT=${XGETTEXT='/dev/env/DJDIR/bin/xgettext'} +export ac_cv_path_AWK=${AWK='/dev/env/DJDIR/bin/gawk'} +export ac_cv_path_EMACS=${EMACS='/dev/env/DJDIR/gnu/emacs/bin/emacs'} +export ac_cv_path_M4=${M4='/dev/env/DJDIR/bin/m4'} +export ac_cv_path_GREP=${GREP='/dev/env/DJDIR/bin/grep'} +export ac_cv_path_EGREP=${EGREP='/dev/env/DJDIR/bin/egrep'} +export ac_cv_path_FGREP=${FGREP='/dev/env/DJDIR/bin/fgrep'} +export ac_cv_path_SED=${SED='/dev/env/DJDIR/bin/sed'} +export ac_cv_path_MAKEINFO=${MAKEINFO='/dev/env/DJDIR/bin/makeinfo'} +export ac_cv_path_INSTALL_INFO=${INSTALL_INFO='/dev/env/DJDIR/bin/install-info'} +export ac_cv_path_ROFF=${ROFF='/dev/env/DJDIR/bin/groff'} +export ac_cv_path_GROFF=${GROFF='/dev/env/DJDIR/bin/groff'} +export ac_cv_path_NROFF=${NROFF='/dev/env/DJDIR/bin/nroff'} +export ac_cv_path_PERL=${PERL='/dev/env/DJDIR/bin/perl'} +export ac_cv_path_mkdir=${MKDIR_P='/dev/env/DJDIR/bin/mkdir -p'} +export ac_cv_path_RM=${RM='/dev/env/DJDIR/bin/rm'} +export ac_cv_path_MV=${MV='/dev/env/DJDIR/bin/mv'} +export ac_cv_path_TAR=${TAR='/dev/env/DJDIR/bin/tar'} +export ac_cv_path_PR_PROGRAM=${PR='/dev/env/DJDIR/bin/pr'} +export ac_cv_path_ed_PROGRAM=${ED='/dev/env/DJDIR/bin/ed'} +export ac_cv_path_TEXI2DVI=${TEXI2DVI='texi2dvi'} +export ac_cv_path_TEXI2PDF=${TEXI2PDF='texi2pdf'} +export ac_cv_path_DVIPS=${DVIPS='dvips'} +export ac_cv_path_PS2PDF=${PS2PDF='ps2pdf'} +export ac_cv_path_TEST_SHELL=${TEST_SHELL='/dev/env/DJDIR/bin/bash'} +export ac_cv_path_MKTEMP=${MKTEMP='/dev/env/DJDIR/bin/mktemp'} +export ac_cv_prog_LN_S="cp -p" +export ac_cv_prog_AWK=${AWK='/dev/env/DJDIR/bin/gawk'} +export ac_cv_prog_EMACS=${EMACS='/dev/env/DJDIR/gnu/emacs/bin/emacs'} +export ac_cv_prog_M4=${M4='/dev/env/DJDIR/bin/m4'} +export ac_cv_prog_GREP=${GREP='/dev/env/DJDIR/bin/grep'} +export ac_cv_prog_EGREP=${EGREP='/dev/env/DJDIR/bin/egrep'} +export ac_cv_prog_FGREP=${FGREP='/dev/env/DJDIR/bin/fgrep'} +export ac_cv_prog_SED=${SED='/dev/env/DJDIR/bin/sed'} +export ac_cv_prog_MAKEINFO=${MAKEINFO='/dev/env/DJDIR/bin/makeinfo'} +export ac_cv_prog_INSTALL_INFO=${INSTALL_INFO='/dev/env/DJDIR/bin/install-info'} +export ac_cv_prog_ROFF=${ROFF='/dev/env/DJDIR/bin/groff'} +export ac_cv_prog_GROFF=${GROFF='/dev/env/DJDIR/bin/groff'} +export ac_cv_prog_NROFF=${NROFF='/dev/env/DJDIR/bin/nroff'} +export ac_cv_prog_PERL=${PERL='/dev/env/DJDIR/bin/perl'} +export ac_cv_prog_mkdir=${MKDIR_P='/dev/env/DJDIR/bin/mkdir -p'} +export ac_cv_prog_RM=${RM='/dev/env/DJDIR/bin/rm'} +export ac_cv_prog_MV=${MV='/dev/env/DJDIR/bin/mv'} +export ac_cv_prog_CAT=${CAT='/dev/env/DJDIR/bin/cat'} +export ac_cv_prog_SORT=${SORT='/dev/env/DJDIR/bin/sort'} +export ac_cv_prog_TAR=${TAR='/dev/env/DJDIR/bin/tar'} +export ac_cv_prog_PR_PROGRAM=${PR='/dev/env/DJDIR/bin/pr'} +export ac_cv_prog_ed_PROGRAM=${ED='/dev/env/DJDIR/bin/ed'} +export ac_cv_prog_TEXI2DVI=${TEXI2DVI='texi2dvi'} +export ac_cv_prog_TEXI2PDF=${TEXI2PDF='texi2pdf'} +export ac_cv_prog_DVIPS=${DVIPS='dvips'} +export ac_cv_prog_PS2PDF=${PS2PDF='ps2pdf'} +export ac_cv_prog_TEST_SHELL=${TEST_SHELL='/dev/env/DJDIR/bin/bash'} +export ac_cv_prog_MKTEMP=${MKTEMP='/dev/env/DJDIR/bin/mktemp'} +export ac_cv_func_fork=no +export ac_cv_func_mkfifo=no +export ac_cv_func_mknod=no +export ac_cv_func_mmap=no +export ac_cv_func_vfork=no + +# Do not allow that the BFD's configure script determine the +# host dependant file_ptr a.k.a. off_t type as BFD_HOST_64_BIT. +# This is the case if ftello64 and fseeko64 are found. But DJGPP +# does not provide the full set of 64 bit file functions required +# for a working 64 bit BFD. +export ac_cv_func_fseeko64=${ac_cv_func_fseeko64=no} +export ac_cv_func_ftello64=${ac_cv_func_ftello64=no} +export ac_cv_have_decl_fseeko64=${ac_cv_have_decl_fseeko64=no} +export ac_cv_have_decl_ftello64=${ac_cv_have_decl_ftello64=no} + +# Ensure that always old GNU extern inline semantics is used +# (aka -fgnu89-inline) even if ISO C99 semantics has been specified. +case $(gcc --version 2>/dev/null | sed "/^.* \([1-9]\+\.[0-9]\+[.0-9]*\).*$/!d;s/^.* \([1-9]\+\.[0-9]\+[.0-9]*\).*$/\1/") in +[1-3].*|4.[0-1][.0-9]* ) export CFLAGS=${CFLAGS='-g2 -O2 -std=gnu99 -march=i386 -mtune=i586'};; +* ) export CFLAGS=${CFLAGS='-g2 -O2 -fgnu89-inline -march=i386 -mtune=i586'};; +esac + +# DJGPP's implementation of printf survives out-of-memory conditions. +export gl_cv_func_printf_enomem='yes' + +# Enable libiberty installation. +# Passing --enable-install-libiberty to the toplovel configure seems not to be enough. +export enable_install_libiberty=yes + +# Select NLS support. +# NLS_SUPPORT='--enable-nls' + NLS_SUPPORT='--disable-nls' + +if [ "x${NLS_SUPPORT}" = "x--enable-nls" ]; then + rm -vf ../bfd/po/*gmo + rm -vf ../bfd/po/*pot + rm -vf ../binutils/po/*gmo + rm -vf ../binutils/po/*pot + rm -vf ../gas/po/*gmo + rm -vf ../gas/po/*pot + rm -vf ../gold/po/*gmo + rm -vf ../gold/po/*pot + rm -vf ../gprof/po/*gmo + rm -vf ../gprof/po/*pot + rm -vf ../ld/po/*gmo + rm -vf ../ld/po/*pot + rm -vf ../opcodes/po/*gmo + rm -vf ../opcodes/po/*pot + rm -vf ../bfd/po/*gmo + rm -vf ../bfd/po/*pot +fi + + +# +# 1: Adjust the configure scripts. +# + +cat > script.sed << EOF +# For some reason the function does not work with bash 2.05b. +/^func_lalib_p/,/^}$/ { + /test/ i\\ + case \$1 in\\ + *.la | *.lo) + /GREP/ { + s/$/;;/ + a\\ + *) false;;\\ + esac + } +} + +# Use func_lalib_p instead of func_lalib_unsafe_p. +/func_lalib_unsafe_p[ ][^(]/ s/_unsafe// + +# Adjust temp directory. +/{TMPDIR-\/tmp}/ s|{TMPDIR-/tmp}|{TMPDIR-\${TMP-\${TEMP-.}}}| + +# Remove -lc reference from the dependency_libs= line in .la files. +# This is unnecessary when linking with static labraries and causes +# multiple symbol definitions that cannot be resolved when using DXE3 modules. +/^# Libraries that this one depends upon.$/,/^# Directory that this library needs to be installed in:$/ { + /^# Directory that this library needs to be installed in:$/ { + n + a\\ + sed "/^dependency_libs=/ s|[ ]\\\\{1,\\\\}-lc| |" \$output > fixed.sed && cp -vf fixed.sed \$output + } +} + +# Supress makeinfo test. DJGPP does not provide any other port than 4.13. +/# For an installed makeinfo, we require it to be from texinfo 4.7 or/,/;;/ { + /MAKEINFO.*makeinfo/ s/MAKEINFO/IGNORE_&/ +} + +# We always use _deps and _libs instead of .deps and .libs, because +# the latter is an invalid name on 8+3 MS-DOS filesystem. This makes +# the generated Makefiles good for every DJGPP installation, not only +# the one where the package was configured (which could happen to be +# a Windows box, where leading dots in file names are allowed). +s,\.deps,_deps,g +s,\.libs,_libs,g +/^rmdir[ ]*\.tst/ i\\ +am__leading_dot=_ + +# Autoconf 2.63b produces if clauses that are enclosed in \` +# so we cannot use \` to replace parenthesized commands. +# This case must be treated before the parenthesized commands +# are replaced by \`. +/.*\`if[ ](/ { + s/(/"/ + s/)/"/ +} + +# Replace (command) > /dev/null with \`command > /dev/null\`, since +# parenthesized commands always return zero status in the ported Bash, +# even if the named command doesn't exist +/if ([^|;\`]*null/{ + s,(,\`, + s,\\([^ )]\\)),\\1, + /null[ ]*2>&1/ s,2>&1,&\`, + /null.*null/ s,null.*null,&\`, + /null.*null/ !{ + /null[ ]*2>&1/ !s,null,&\`, + } +} + +# DOS-style absolute file names should be supported as well +/\*) top_srcdir=/s,/\*,[\\\\\\\\/]* | ?:[\\\\\\\\/]*, + +# The following two items are changes needed for configuring +# and compiling across partitions. +# 1) The given srcdir value is always translated from the +# "x:" syntax into "/dev/x" syntax while we run configure. +/^[ ]*-srcdir=\\*.*$/ a\\ + ac_optarg=\`echo "\$ac_optarg" | sed "s,^\\\\([A-Za-z]\\\\):,/dev/\\\\1,"\` +/set X \`ls -Lt \\\$srcdir/ i\\ + if \`echo \$srcdir | grep "^/dev/" - > /dev/null\`; then\\ + srcdir=\`echo "\$srcdir" | sed -e "s%^/dev/%%" -e "s%/%:/%"\`\\ + fi + +# Autoconf 2.52e generated configure scripts +# write absolute paths into Makefiles making +# them useless for DJGPP installations for which +# the package has not been configured for. +/am_missing_run=/,/^$/ { + /^fi$/ a\\ +am_missing_run=\`echo "\$am_missing_run" | sed 's%/dev.*/@FILE_NAME@[-_0-9]\\\\{1,1\\\\}[-.0-9A-z+]*%\${top_srcdir}%;s%.:.*/@FILE_NAME@[-_0-9]\\\\{1,1\\\\}[-.0-9A-z+]*%\${top_srcdir}%'\` +} +/^[ ]*install_sh=/,/^$/ { + /^fi$/ a\\ +install_sh=\`echo "\$install_sh" | sed 's%/dev.*/@FILE_NAME@[-_0-9]\\\\{1,1\\\\}[-.0-9A-z+]*%\${top_srcdir}%;s%.:.*/@FILE_NAME@[-_0-9]\\\\{1,1\\\\}[-.0-9A-z+]*%\${top_srcdir}%'\` +} + +# Only if both builddir and srcdir are on the same +# partition the absolute paths are converted to +# relative paths so that the produced makefiles are +# good for all installations but not only for the one +# where it was configured. +/^# If the template does not know about datarootdir, expand it.$/ i\\ +# DJGPP specific.\\ +# Autoconf generated configure scripts write\\ +# absolute paths into Makefiles making them\\ +# useless for DJGPP installations for which\\ +# the package has not been configured for.\\ +djgpp_ac_abs_top_builddir_drive=\\\$(echo \${ac_abs_top_builddir} | sed -e 's%:[/\\\\\\\\]*.*$%%;s%^/dev/\\\\([A-z]\\\\)/.*$%\\\\1%')\\ +djgpp_ac_abs_top_srcdir_drive=\\\$(echo \${ac_abs_top_srcdir} | sed -e 's%:[/\\\\\\\\]*.*$%%;s%^/dev/\\\\([A-z]\\\\)/.*$%\\\\1%')\\ +if [ "x\\\${ac_abs_top_srcdir}" == "x\\\${ac_top_srcdir}" ]; then\\ + paths_are_absolute=yes\\ +else\\ + paths_are_absolute=no\\ +fi\\ +\\ +if [ "x\\\${djgpp_ac_abs_top_builddir_drive}" == "x\\\${djgpp_ac_abs_top_srcdir_drive}" ]; then\\ + # builddir and srcdir are on the same partition.\\ +\\ + # Convert absolute buildir paths to relative ones.\\ + paths_to_be_adjusted="ac_abs_builddir ac_abs_top_builddir"\\ + for path in \\\${paths_to_be_adjusted}; do\\ + eval _path=\\\\\\\${\$path}\\ + eval djgpp_\\\${path}=\$(echo \\\${_path} | sed -e "s%\\\${ac_abs_top_builddir}%\\\${ac_builddir}%")\\ + done\\ +\\ + if [ "x\\\${paths_are_absolute}" == "xyes" ]; then\\ + # Convert absolute srcdir paths to relative ones.\\ + djgpp_relative_prefix=\$(echo \\\${ac_abs_builddir} | sed -e 's%^[A-z]:%%;s%^/dev/[A-z]%%;s%^%.%;s%[/\\\\\\\\][A-z0-9._+-]\\\\+%/..%g;s%[/\\\\\\\\]$%%')\\ + paths_to_be_adjusted="ac_srcdir ac_abs_srcdir ac_top_srcdir ac_abs_top_srcdir"\\ + for path in \\\${paths_to_be_adjusted}; do\\ + eval _path=\\\\\\\${\$path}\\ + eval djgpp_\\\${path}=\$(echo \\\${_path} | sed -e "s%^[A-z]:%%;s%^/dev/[A-z]%%;s%^%\\\${djgpp_relative_prefix}%")\\ + done\\ + else\\ + djgpp_ac_srcdir="\\\${ac_srcdir}"\\ + djgpp_ac_abs_srcdir="\\\${ac_srcdir}"\\ + djgpp_ac_top_srcdir="\\\${ac_top_srcdir}"\\ + djgpp_ac_abs_top_srcdir="\\\${ac_top_srcdir}"\\ + fi\\ +else\\ + # builddir and srcdir are on different partitions.\\ +\\ + paths_to_be_adjusted="ac_abs_builddir ac_abs_top_builddir"\\ + for path in \\\${paths_to_be_adjusted}; do\\ + eval djgpp_\\\${path}=\\\\\\\${\$path}\\ + done\\ +\\ + paths_to_be_adjusted="ac_srcdir ac_abs_srcdir ac_top_srcdir ac_abs_top_srcdir"\\ + for path in \\\${paths_to_be_adjusted}; do\\ + eval djgpp_\\\${path}=\\\\\\\${\$path}\\ + done\\ +fi\\ + + +/^s|@configure_input@|\\\$ac_sed_conf_input|;t t$/,/^\\\$ac_datarootdir_hack$/ { + s/\\\$ac_srcdir/\\\$djgpp_ac_srcdir/ + s/\\\$ac_abs_srcdir/\\\$djgpp_ac_abs_srcdir/ + s/\\\$ac_top_srcdir/\\\$djgpp_ac_top_srcdir/ + s/\\\$ac_abs_top_srcdir/\\\$djgpp_ac_abs_top_srcdir/ + s/\\\$ac_abs_builddir/\\\$djgpp_ac_abs_builddir/ + s/\\\$ac_abs_top_builddir/\\\$djgpp_ac_abs_top_builddir/ +} + +# Add DJGPP version information. +/^#define VERSION/ s/\\\$VERSION/& (DJGPP port (r1))/ + +# We need makeinfo to make the html formated docs. +/\\\$am_missing_run[ ]*makeinfo/ s,\\\$am_missing_run,, + +# The path to the FORTRAN compiler and libraries +# shall contain no absolute path reference so it +# will be good for all djgpp installations. +/^FLIBS="\\\$ac_cv_flibs"/ i\\ +ac_djgpp_path=\`echo "\$DJDIR" | sed 's%\\\\\\\\\\\\%/%g' | tr \$as_cr_LETTERS \$as_cr_letters\`\\ +ac_cv_flibs=\`echo "\$ac_cv_flibs" | sed "s%-L$ac_djgpp_path%-L/dev/env/DJDIR%g"\` + +# Do not split info output. +/^MAKEINFO=.*$/s:=.*$:&" --no-split": + +# The CR test for awk does not work for DJGPP. +/^ac_cs_awk_cr=/,/^$/ { + /^fi$/ a\\ +ac_cs_awk_cr=\$ac_cr +} + +# AWK program above erroneously prepends '/' to C:/dos/paths +/# AWK program above erroneously prepends/,/esac/ { + s/mingw/*djgpp* | mingw/ +} + +# Force the test for 'ln -s' to report 'cp -pf'. +/as_ln_s='ln -s'/ s/ln -s/cp -pf/ + +##LIBTOOL="\${CONFIG_SHELL-\$SHELL} "'\$(top_builddir)/libtool' +# Set the right shell for libtool +/^LIBTOOL=.*libtool'$/ s/".*"/'\$(SHELL) '/ + +# Adjust the config.site path for the case +# of recursive called configure scripts +/^if test "\$no_recursion" != yes; then/ a\\ + djgpp_config_site=\$CONFIG_SITE +/case \$srcdir in/,/esac/ { + / # Relative name.$/ a\\ +export CONFIG_SITE=\$ac_top_build_prefix\$djgpp_config_site +} + +# DJGPP specific adjustments of the compile-time system search path for libraries. +/^[ ]*lt_search_path_spec=.*-print-search-dirs/ s,\`\$, -e \\"s%[A-z]:[\\\\\\\\/]djgpp-[0-9].[0-9][0-9][\\\\\\\\/]%/dev/env/DJDIR/%g\\"&, + +# Fix realpath check. DJGPP always prepends a drive letter. +/checking whether realpath works/,/^_ACEOF$/ { + /name && \\*name == '\\/'/ s/\\*name/name[2]/ +} + +# This works around a bug in DJGPP port of Bash 2.0x. +s|return \$ac_retval|(&)|g + +# DJGPP port of Bash 2.04 doesn't like this redirection of stdin +/exec 7 ./file.out + update ./file.out ${file} + touch ${file} -r ${file}.orig +done +rm -vf ./file.out ./script.sed + + + +# +# 2: Adjust the Makefile.ins and other files. +# + +cat > script.sed << EOF +# For html docs. +/^MAKEINFOHTML[ ]*=/ s/$/ --no-split/ +s/--split-size=5000000/--no-split/g + +# Fixes for ./libiberty/Makefile.in +# ps support for libiberty docs. +/dvi-subdir[ ]\\{1,\\}pdf-subdir/ s/dvi-subdir[ ]\\{1,\\}pdf-subdir/& ps-subdir/ + +/^LIBIBERTY_PDFFILES[ ]*=/ i\\ +LIBIBERTY_PSFILES = libiberty.ps\\ +\\ +ps: \\\$(LIBIBERTY_PSFILES) ps-subdir\\ + + +/^libiberty.pdf[ ]*:/ i\\ +libiberty.ps : ./libiberty.dvi \\\$(srcdir)/libiberty.texi \\\$(TEXISRC)\\ + dvips -o ./libiberty.ps ./libiberty.dvi\\ + +# Enable libiberty installation. +# Passing --enable-install-libiberty to the toplovel configure seems not to be enough. +s/@target_header_dir@/libiberty/ + +# Fixes for ./etc/Makefile.in. +/^HTMLFILES =.*configure.html$/ i\\ +PSFILES = standards.ps configure.ps +/epstopdf/ s/[ ]\\{1,\\}-outfile/ --outfile/ + +# Fixes for ./ld/Makefile.in. +/^install-exec-local[ ]*:.*ld-new.*$/ { + s/$/ install-data-local-djgpp/ +i\\ +install-data-local-djgpp:\\ + \\\$(mkinstalldirs) \\\$(DESTDIR)\\\$(scriptdir)\\ + for f in libnames.tab; do \\\\\\ + \\\$(INSTALL_DATA) \\\$(top_srcdir)/\\\$\\\$f \\\$(DESTDIR)\\\$(scriptdir)/\\\$\\\$f ; \\\\\\ + done\\ + +} +EOF + + +for file in ./../bfd/Makefile.in ./../bfd/doc/Makefile.in ./../binutils/doc/Makefile.in ./../etc/Makefile.in ./../gas/doc/Makefile.in ./../gprof/Makefile.in ./../ld/Makefile.in ./../libiberty/Makefile.in ./../libctf/Makefile.in; do + if test ! -f ${file}.orig; then + cp -vf ${file} ${file}.orig + touch ${file}.orig -r ${file} + fi + sed -f ./script.sed ${file}.orig > ./file.out + update ./file.out ${file} + touch ${file} -r ${file}.orig +done +rm -vf ./file.out ./script.sed + +dtou ../ld/configure.ac +touch ../ld/configure.ac -r ../ld/configure.tgt + + +# +# 3: Configure and build the libs and programs. +# + +touch start_build.txt + +echo +echo Configuring the progs and libs. +echo See build_log.txt file for output. + + +echo Using: > build_log.txt +gcc --version >> build_log.txt +as --version >> build_log.txt +echo >> build_log.txt +ld --version >> build_log.txt +echo >> build_log.txt +echo >> build_log.txt +echo >> build_log.txt + +echo Configuring the progs and libs for DJGPP. >> build_log.txt +echo >> build_log.txt + +../configure --prefix='/dev/env/DJDIR' --disable-dependency-tracking ${NLS_SUPPORT} \ + --with-mpc-include='/dev/env/DJDIR/include' --with-mpc-lib='/dev/env/DJDIR/lib' \ + --with-mpfr-include='/dev/env/DJDIR/include' --with-mpfr-lib='/dev/env/DJDIR/lib' \ + --with-gmp-include='/dev/env/DJDIR/include' --with-gmp-lib='/dev/env/DJDIR/lib' \ + --with-isl-include='/dev/env/DJDIR/include' --with-isl-lib='/dev/env/DJDIR/lib' \ + --enable-install-bfd --enable-install-libiberty \ + --enable-build-warnings=-Wimplicit,-Wcomment,-Wformat,-Wparentheses,-Wpointer-arith >> build_log.txt 2>&1 + +echo >> build_log.txt +echo ################################################################################ >> build_log.txt +echo >> build_log.txt + + +# Remove target alias from tooldir and scriptdir paths so +# that the linker scripts and binaries are installed in +# their DJGPP specific canonical places. +sed "/^.*tooldir = /s|/.*$||" ./Makefile > file.out +mv -vf ./file.out ./Makefile + + +echo +echo Building the progs and libs. +echo See build_log.txt file for output. +echo Building the progs and libs for DJGPP. >> build_log.txt +echo >> build_log.txt +make >> build_log.txt 2>&1 + +touch stop_build.txt diff -aprNU5 binutils-2.34.orig/gas/as.c binutils-2.34/gas/as.c --- binutils-2.34.orig/gas/as.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/gas/as.c 2020-03-01 19:35:24 +0000 @@ -1240,11 +1240,11 @@ main (int argc, char ** argv) #ifdef HOST_SPECIAL_INIT HOST_SPECIAL_INIT (argc, argv); #endif - myname = argv[0]; + myname = STRIP_FULL_PATH_AND_EXTENSION(argv[0]); xmalloc_set_program_name (myname); expandargv (&argc, &argv); START_PROGRESS (myname, 0); diff -aprNU5 binutils-2.34.orig/gas/config/obj-coff-seh.c binutils-2.34/gas/config/obj-coff-seh.c --- binutils-2.34.orig/gas/config/obj-coff-seh.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/gas/config/obj-coff-seh.c 2020-03-01 19:35:24 +0000 @@ -62,11 +62,11 @@ get_pxdata_name (segT seg, const char *b else if (dot < dollar) name = dot; else name = dollar; - sname = concat (base_name, name, NULL); + sname = concat (base_name, name, (char *)NULL); return sname; } /* Allocate a seh_seg_list structure. */ diff -aprNU5 binutils-2.34.orig/gas/config.in binutils-2.34/gas/config.in --- binutils-2.34.orig/gas/config.in 2020-02-01 11:49:54 +0000 +++ binutils-2.34/gas/config.in 2020-03-01 19:35:24 +0000 @@ -412,5 +412,42 @@ #undef inline #endif /* Define to `unsigned int' if does not define. */ #undef size_t + +#ifdef __DJGPP__ +# include + +# if defined (__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8)) +# define __gnuc_extension__ __extension__ +# else +# define __gnuc_extension__ +# endif + +# undef IS_SLASH +# define IS_SLASH(c) ((c) == '/' || (c) == '\\') +# undef IS_DIRECTORY_SEPARATOR +# define IS_DIRECTORY_SEPARATOR(c) (IS_SLASH(c) || (c) == ':') + +# include +# define STRIP_FULL_PATH_AND_EXTENSION(file_name) \ + (__gnuc_extension__ \ + ({ \ + char *_dst, *_src; \ + _dst = _src = unconst((file_name), char *); \ + while (*_src++) \ + ; \ + while ((_src - _dst) && (*--_src != '.')) \ + ; \ + for (*_src = '\0'; (_src - _dst); _src--) \ + if (IS_DIRECTORY_SEPARATOR(*_src)) \ + break; \ + if (_src - _dst) \ + while ((*_dst++ = *++_src)) \ + ; \ + (file_name); \ + }) \ + ) +#else +# define STRIP_FULL_PATH_AND_EXTENSION(file_name) (file_name) +#endif diff -aprNU5 binutils-2.34.orig/gas/dw2gencfi.c binutils-2.34/gas/dw2gencfi.c --- binutils-2.34.orig/gas/dw2gencfi.c 2020-01-18 13:55:46 +0000 +++ binutils-2.34/gas/dw2gencfi.c 2020-03-01 19:35:24 +0000 @@ -255,11 +255,11 @@ get_debugseg_name (segT seg, const char else if (dot < dollar) name = dot; else name = dollar; - return concat (base_name, name, NULL); + return concat (base_name, name, (char *)NULL); } /* Allocate a dwcfi_seg_list structure. */ static struct dwcfi_seg_list * diff -aprNU5 binutils-2.34.orig/gold/config.in binutils-2.34/gold/config.in --- binutils-2.34.orig/gold/config.in 2020-01-18 14:04:34 +0000 +++ binutils-2.34/gold/config.in 2020-03-01 19:35:24 +0000 @@ -295,5 +295,39 @@ this defined. */ #undef _POSIX_1_SOURCE /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE +#ifdef __DJGPP__ +# if defined (__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8)) +# define __gnuc_extension__ __extension__ +# else +# define __gnuc_extension__ +# endif + +# undef IS_SLASH +# define IS_SLASH(c) ((c) == '/' || (c) == '\\') +# undef IS_DIRECTORY_SEPARATOR +# define IS_DIRECTORY_SEPARATOR(c) (IS_SLASH(c) || (c) == ':') + +# include +# define STRIP_FULL_PATH_AND_EXTENSION(file_name) \ + (__gnuc_extension__ \ + ({ \ + char *_dst, *_src; \ + _dst = _src = unconst((file_name), char *); \ + while (*_src++) \ + ; \ + while ((_src - _dst) && (*--_src != '.')) \ + ; \ + for (*_src = '\0'; (_src - _dst); _src--) \ + if (IS_DIRECTORY_SEPARATOR(*_src)) \ + break; \ + if (_src - _dst) \ + while ((*_dst++ = *++_src)) \ + ; \ + (file_name); \ + }) \ + ) +#else +# define STRIP_FULL_PATH_AND_EXTENSION(file_name) (file_name) +#endif diff -aprNU5 binutils-2.34.orig/gprof/gconfig.in binutils-2.34/gprof/gconfig.in --- binutils-2.34.orig/gprof/gconfig.in 2020-02-01 11:52:24 +0000 +++ binutils-2.34/gprof/gconfig.in 2020-03-01 19:35:24 +0000 @@ -117,5 +117,42 @@ this defined. */ #undef _POSIX_1_SOURCE /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE + +#ifdef __DJGPP__ +# include + +# if defined (__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8)) +# define __gnuc_extension__ __extension__ +# else +# define __gnuc_extension__ +# endif + +# undef IS_SLASH +# define IS_SLASH(c) ((c) == '/' || (c) == '\\') +# undef IS_DIRECTORY_SEPARATOR +# define IS_DIRECTORY_SEPARATOR(c) (IS_SLASH(c) || (c) == ':') + +# include +# define STRIP_FULL_PATH_AND_EXTENSION(file_name) \ + (__gnuc_extension__ \ + ({ \ + char *_dst, *_src; \ + _dst = _src = unconst((file_name), char *); \ + while (*_src++) \ + ; \ + while ((_src - _dst) && (*--_src != '.')) \ + ; \ + for (*_src = '\0'; (_src - _dst); _src--) \ + if (IS_DIRECTORY_SEPARATOR(*_src)) \ + break; \ + if (_src - _dst) \ + while ((*_dst++ = *++_src)) \ + ; \ + (file_name); \ + }) \ + ) +#else +# define STRIP_FULL_PATH_AND_EXTENSION(file_name) (file_name) +#endif diff -aprNU5 binutils-2.34.orig/gprof/gprof.c binutils-2.34/gprof/gprof.c --- binutils-2.34.orig/gprof/gprof.c 2020-01-18 13:55:48 +0000 +++ binutils-2.34/gprof/gprof.c 2020-03-01 19:35:24 +0000 @@ -196,11 +196,17 @@ main (int argc, char **argv) #ifdef ENABLE_NLS bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); #endif - whoami = argv[0]; +#if defined (COFF_GO32_EXE) || defined (COFF_GO32) + /* This call is necessary to check if coff + 64k relocation support shall be enabled or not. */ + bfd_init (); +#endif + + whoami = STRIP_FULL_PATH_AND_EXTENSION(argv[0]); xmalloc_set_program_name (whoami); expandargv (&argc, &argv); while ((ch = getopt_long (argc, argv, diff -aprNU5 binutils-2.34.orig/ld/config.in binutils-2.34/ld/config.in --- binutils-2.34.orig/ld/config.in 2020-02-01 11:50:28 +0000 +++ binutils-2.34/ld/config.in 2020-03-01 19:35:24 +0000 @@ -252,5 +252,52 @@ this defined. */ #undef _POSIX_1_SOURCE /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE + + + +/* + * DJGPP specific stuff. + */ + +/* DJGPP, DXE3 support: Enable resolution of multiple symbol definition + introduced by the import libraries by the linker. */ +#undef HAVE_DXE3_SUPPORT + +#ifdef __DJGPP__ +# include + +# if defined (__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8)) +# define __gnuc_extension__ __extension__ +# else +# define __gnuc_extension__ +# endif + +# undef IS_SLASH +# define IS_SLASH(c) ((c) == '/' || (c) == '\\') +# undef IS_DIRECTORY_SEPARATOR +# define IS_DIRECTORY_SEPARATOR(c) (IS_SLASH(c) || (c) == ':') + +# include +# define STRIP_FULL_PATH_AND_EXTENSION(file_name) \ + (__gnuc_extension__ \ + ({ \ + char *_dst, *_src; \ + _dst = _src = unconst((file_name), char *); \ + while (*_src++) \ + ; \ + while ((_src - _dst) && (*--_src != '.')) \ + ; \ + for (*_src = '\0'; (_src - _dst); _src--) \ + if (IS_DIRECTORY_SEPARATOR(*_src)) \ + break; \ + if (_src - _dst) \ + while ((*_dst++ = *++_src)) \ + ; \ + (file_name); \ + }) \ + ) +#else +# define STRIP_FULL_PATH_AND_EXTENSION(file_name) (file_name) +#endif diff -aprNU5 binutils-2.34.orig/ld/configure binutils-2.34/ld/configure --- binutils-2.34.orig/ld/configure 2020-02-01 11:50:24 +0000 +++ binutils-2.34/ld/configure 2020-03-01 19:35:24 +0000 @@ -17700,10 +17700,19 @@ ac_config_commands="$ac_config_commands +case "$target_os" in + *djgpp) +cat >>confdefs.h <<_ACEOF +#define HAVE_DXE3_SUPPORT 1 +_ACEOF + ;; +esac + + ac_config_files="$ac_config_files Makefile po/Makefile.in:po/Make-in" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure diff -aprNU5 binutils-2.34.orig/ld/ldfile.c binutils-2.34/ld/ldfile.c --- binutils-2.34.orig/ld/ldfile.c 2020-01-18 13:55:48 +0000 +++ binutils-2.34/ld/ldfile.c 2020-03-01 19:35:24 +0000 @@ -63,10 +63,127 @@ typedef struct search_arch static search_dirs_type **search_tail_ptr = &search_head; static search_arch_type *search_arch_head; static search_arch_type **search_arch_tail_ptr = &search_arch_head; + +#ifdef __DJGPP__ +/* Map library long filename to a library short filename according + to the filename table stored in /dev/env/DJDIR/lib/libnames.tab. */ + +static bfd_boolean +map_LFN_to_SFN (const char **filename) +{ + static char **table = NULL; + static int last_index = 0; + + + /* + * Initialize library name table from libnames.tab content. + */ + if (!table) + { + FILE *map = fopen ("/dev/env/DJDIR/lib/libnames.tab", "r"); + + if (map) + { + char line[128]; + int i = 0; + + while (fscanf(map, "%[^\n]\n", line) != EOF) + { + if (line[0] == '#') + continue; + else + i++; + } + + if (i) + { + last_index = 2 * i; + table = xmalloc(last_index * sizeof(char *)); + + i = 0; + rewind(map); + while (fscanf(map, "%[^\n]\n", line) != EOF) + { + if (line[0] != '#') + { + char long_name[FILENAME_MAX + 1], short_name[FILENAME_MAX + 1]; + + sscanf(line, "%s %s", long_name, short_name); + table[i++] = concat(long_name, (const char *) NULL); + table[i++] = concat(short_name, (const char *) NULL); + } + } + } + + fclose(map); + } + else if (verbose) + info_msg(_("cannot find \"/dev/env/DJDIR/lib/libnames.tab\"\n")); + } + + + /* + * Map library LFN to SFN using the table read from libnames.tab content. + */ + if (table) + { + char *extension, *libname, *prefix = concat(*filename, (const char *)NULL); + int i; + + /* Strip library prefix and suffix. */ + for (libname = prefix, i = 0; libname[i]; i++) + ; + +#define IS_DOT_A_SUFFIX(filename) ((filename)[--i] == 'a' && (filename)[--i] == '.') +#define IS_LIB_PREFIX(filename) ((filename)[--i] == 'b' && (filename)[--i] == 'i' && (filename)[--i] == 'l') + while (i) + if (IS_DOT_A_SUFFIX(libname)) + { + libname[i] = '\0'; + extension = libname + i; + break; + } + while (i) + if (IS_LIB_PREFIX(libname)) + { + if (i == 0) + { + libname += 3; + break; + } + if (libname[--i] == '/') + { + libname += i + 4; + break; + } + } +#undef IS_DOT_A_SUFFIX +#undef IS_LIB_PREFIX + + for (i = 0; i < last_index; i++) + if (strcmp(libname, table[i++]) == 0) + { + /* Create a short filename for the library. */ + *libname = '\0'; + *extension = '.'; + *filename = concat(prefix, table[i], extension, (const char *)NULL); + if (verbose) + info_msg(_("mapped \"%s\" to \"%s\"\n"), table[i - 1], table[i]); + + return TRUE; + } + + free(prefix); + } + + return FALSE; +} +#endif /* __DJGPP__ */ + /* Test whether a pathname, after canonicalization, is the same or a sub-directory of the sysroot directory. */ static bfd_boolean is_sysrooted_pathname (const char *name) @@ -123,12 +240,23 @@ ldfile_add_library_path (const char *nam bfd_boolean ldfile_try_open_bfd (const char *attempt, lang_input_statement_type *entry) { +#ifdef __DJGPP__ + bfd_boolean already_tried_SFN = FALSE; + +again: +#endif /* __DJGPP__ */ + entry->the_bfd = bfd_openr (attempt, entry->target); +#ifdef __DJGPP__ + if (!entry->the_bfd && !already_tried_SFN && (already_tried_SFN = map_LFN_to_SFN(&attempt))) + goto again; +#endif /* __DJGPP__ */ + if (verbose) { if (entry->the_bfd == NULL) info_msg (_("attempt to open %s failed\n"), attempt); else @@ -370,11 +498,11 @@ ldfile_open_file_search (const char *arc if (entry->flags.maybe_archive && !entry->flags.full_name_provided) string = concat (search->name, slash, lib, entry->filename, arch, suffix, (const char *) NULL); else string = concat (search->name, slash, entry->filename, - (const char *) 0); + (const char *) NULL); if (ldfile_try_open_bfd (string, entry)) { entry->filename = string; return TRUE; diff -aprNU5 binutils-2.34.orig/ld/ldmain.c binutils-2.34/ld/ldmain.c --- binutils-2.34.orig/ld/ldmain.c 2020-01-18 13:55:48 +0000 +++ binutils-2.34/ld/ldmain.c 2020-03-01 19:35:24 +0000 @@ -203,11 +203,11 @@ main (int argc, char **argv) setlocale (LC_CTYPE, ""); #endif bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - program_name = argv[0]; + program_name = STRIP_FULL_PATH_AND_EXTENSION(argv[0]); xmalloc_set_program_name (program_name); START_PROGRESS (program_name, 0); expandargv (&argc, &argv); @@ -992,10 +992,34 @@ multiple_definition (struct bfd_link_inf || (nsec->output_section != NULL && !bfd_is_abs_section (nsec) && bfd_is_abs_section (nsec->output_section)))) return; +#if defined(HAVE_DXE3_SUPPORT) && HAVE_DXE3_SUPPORT == 1 + /* DJGPP specific resolution of multiple symbol definitions. + A symbol defined in an object file or in an static library + and at the same time in an import library belonging to a + DXE3 module will be replaced by the symbol provided by the + import library. If more than one import library provides + the same symbol the first one will be used and all other + ones will be ignored. + A symbol from an import library is identified by its "dxe_tmp.o" + or "$$dxe$$.o" file name. */ + +#define IS_IMPORT_LIBRARY_SYMBOL(name) (((name)[0] == 'd' && (name)[1] == 'x' && (name)[2] == 'e' && (name)[3] == '_' && \ + (name)[4] == 't' && (name)[5] == 'm' && (name)[6] == 'p' && (name)[7] == '.' && \ + (name)[8] == 'o') || \ + ((name)[0] == '$' && (name)[1] == '$' && (name)[2] == 'd' && (name)[3] == 'x' && \ + (name)[4] == 'e' && (name)[5] == '$' && (name)[6] == '$' && (name)[7] == '.' && \ + (name)[8] == 'o')) + + if (h->type == bfd_link_hash_defined && IS_IMPORT_LIBRARY_SYMBOL(nsec->owner->filename)) + return; + +#undef IS_IMPORT_LIBRARY_SYMBOL +#endif /* HAVE_DXE3_SUPPORT */ + name = h->root.string; if (nbfd == NULL) { nbfd = obfd; nsec = osec; diff -aprNU5 binutils-2.34.orig/ld/libnames.tab binutils-2.34/ld/libnames.tab --- binutils-2.34.orig/ld/libnames.tab 1970-01-01 00:00:00 +0000 +++ binutils-2.34/ld/libnames.tab 2020-03-01 19:35:24 +0000 @@ -0,0 +1,31 @@ +# +# Table to map libraries long file name to short file names. +# The entry is: +# LFN SFN +# The library name is the name stripped from its directory name, +# stripped from its "lib" prefix and its ".a" suffix. +# +# +# E.g.: for the library +# +# /dev/env/DJDIR/lib/foobar-1.2.3/libverylongname-1.2.3.a +# +# the mapping entry will look like this: +# +# verylongname-1.2.3 vln123 +# + + +# LFN SFN + +# Map for GNU gettext libraries. +gettextlib gtxtlib +gettextpo gtxtpo +gettextsrc gtxtsrc + + +# Map for perl compatible regular expressions libraries with API 2 (aka PCRE2). +pcre2-8 pcr28 +pcre2-16 pcr216 +pcre2-32 pcr232 +pcre2-posix pcr2posix diff -aprNU5 binutils-2.34.orig/ld/scripttempl/i386go32.sc binutils-2.34/ld/scripttempl/i386go32.sc --- binutils-2.34.orig/ld/scripttempl/i386go32.sc 2020-01-18 13:55:48 +0000 +++ binutils-2.34/ld/scripttempl/i386go32.sc 2020-03-01 19:35:24 +0000 @@ -45,18 +45,27 @@ SECTIONS } .data ${RELOCATING+ ${DATA_ALIGNMENT}} : { ${RELOCATING+djgpp_first_ctor = . ; *(SORT(.ctors.*)) *(.ctor) + *(.ctors) djgpp_last_ctor = . ;} ${RELOCATING+djgpp_first_dtor = . ; *(SORT(.dtors.*)) *(.dtor) + *(.dtors) djgpp_last_dtor = . ;} + __environ = . ; + PROVIDE(_environ = .) ; + LONG(0) ; *(.data) ${RELOCATING+*(.data.*)} + /* Ugly workaround to prevent entire .bss to have attribute CONTENT */ + /* for C++ executables. */ + *(.bss.*) + ${RELOCATING+*(.gcc_exc*)} ${RELOCATING+___EH_FRAME_BEGIN__ = . ;} ${RELOCATING+*(.eh_fram*)} ${RELOCATING+___EH_FRAME_END__ = . ;} ${RELOCATING+LONG(0);} @@ -67,15 +76,17 @@ SECTIONS } ${CONSTRUCTING+${RELOCATING-$CTOR}} ${CONSTRUCTING+${RELOCATING-$DTOR}} .bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} : { - *(.bss${RELOCATING+ .bss.* .gnu.linkonce.b.*}) + *(.bss${RELOCATING+ .gnu.linkonce.b.*}) *(COMMON) ${RELOCATING+ end = . ; PROVIDE(_end = .) ;} ${RELOCATING+ . = ALIGN(${SEGMENT_SIZE});} } + /* Discard LTO sections. */ + /DISCARD/ : { *(gnu.lto_*) } /* Stabs debugging sections. */ .stab 0 : { *(.stab) } .stabstr 0 : { *(.stabstr) } EOF diff -aprNU5 binutils-2.34.orig/libctf/config.h.in binutils-2.34/libctf/config.h.in --- binutils-2.34.orig/libctf/config.h.in 2020-01-18 14:02:32 +0000 +++ binutils-2.34/libctf/config.h.in 2020-03-01 19:35:24 +0000 @@ -153,5 +153,35 @@ this defined. */ #undef _POSIX_1_SOURCE /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE + +#ifdef __DJGPP__ +/* gcc no longer includes this by default. */ +# include + +/* + * (ENOTSUP and EOPNOTSUPP have the same value on Linux, + * but according to POSIX.1 these error values should be + * distinct.) + */ + +# if !defined(ENOTSUP) && defined(EOPNOTSUPP) +# define ENOTSUP EOPNOTSUPP +# endif + +/* Values taken from FreeBSD. */ +# ifndef ENOTSUP +# define ENOTSUP 9926 /* Operation not supported (POSIX.1-2001). */ +# endif + +# undef DJGPP_GCC_VERSION +# define DJGPP_GCC_VERSION ((__GNUC__) * 10000 + (__GNUC_MINOR__) * 100 + (__GNUC_PATCHLEVEL__)) +# if DJGPP_GCC_VERSION < 40300 +# define HAVE_TSL_SUPPORT 0 +# else +# define HAVE_TSL_SUPPORT 1 +# endif /* DJGPP_GCC_VERSION */ +# undef DJGPP_GCC_VERSION + +#endif /* __DJGPP__ */ diff -aprNU5 binutils-2.34.orig/libctf/ctf-archive.c binutils-2.34/libctf/ctf-archive.c --- binutils-2.34.orig/libctf/ctf-archive.c 2020-01-18 13:55:48 +0000 +++ binutils-2.34/libctf/ctf-archive.c 2020-03-01 19:58:00 +0000 @@ -43,11 +43,15 @@ static void *arc_mmap_file (int fd, size static int arc_mmap_writeout (int fd, void *header, size_t headersz, const char **errmsg); static int arc_mmap_unmap (void *header, size_t headersz, const char **errmsg); /* bsearch() internal state. */ +#if (HAVE_TSL_SUPPORT - 1) == 0 static __thread char *search_nametbl; +#else +static char *search_nametbl; +#endif /* Write out a CTF archive to the start of the file referenced by the passed-in fd. The entries in CTF_FILES are referenced by name: the names are passed in the names array, which must have CTF_FILES entries. diff -aprNU5 binutils-2.34.orig/libctf/swap.h binutils-2.34/libctf/swap.h --- binutils-2.34.orig/libctf/swap.h 2020-01-18 13:55:48 +0000 +++ binutils-2.34/libctf/swap.h 2020-03-01 19:59:52 +0000 @@ -25,10 +25,11 @@ #ifdef HAVE_BYTESWAP_H #include #else +#ifndef __DJGPP__ /* Provide our own versions of the byteswap functions. */ static inline uint16_t bswap_16 (uint16_t v) { return ((v >> 8) & 0xff) | ((v & 0xff) << 8); @@ -59,8 +60,64 @@ bswap_64 (uint64_t v) | ((v & 0x00000000ff000000ULL) << 8) | ((v & 0x0000000000ff0000ULL) << 24) | ((v & 0x000000000000ff00ULL) << 40) | ((v & 0x00000000000000ffULL) << 56)); } +#else /* __DJGPP__ */ + +/* The inline functions make trouble with diferent versions of gcc thus use macros. */ +# if defined (__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8)) +# define __gnuc_extension__ __extension__ +# else +# define __gnuc_extension__ +# endif + +# define bswap_identity_64(v) \ + (__gnuc_extension__ \ + ({ \ + uint64_t value = (v); \ + value; \ + }) \ + ) + +# define bswap_16(v) \ + (__gnuc_extension__ \ + ({ \ + uint16_t _v = (v); \ + uint16_t value = ( ((_v >> 8) & 0xFF) \ + | ((_v & 0xFF) << 8)); \ + value; \ + }) \ + ) + +# define bswap_32(v) \ + (__gnuc_extension__ \ + ({ \ + uint32_t _v = (v); \ + uint32_t value = ( ((_v & 0xFF000000) >> 24) \ + | ((_v & 0x00FF0000) >> 8) \ + | ((_v & 0x0000FF00) << 8) \ + | ((_v & 0x000000FF) << 24)); \ + value; \ + }) \ + ) + +# define bswap_64(v) \ + (__gnuc_extension__ \ + ({ \ + uint64_t _v = (v); \ + uint64_t value = ( ((_v & 0xFF00000000000000ULL) >> 56) \ + | ((_v & 0x00FF000000000000ULL) >> 40) \ + | ((_v & 0x0000FF0000000000ULL) >> 24) \ + | ((_v & 0x000000FF00000000ULL) >> 8) \ + | ((_v & 0x00000000FF000000ULL) << 8) \ + | ((_v & 0x0000000000FF0000ULL) << 24) \ + | ((_v & 0x000000000000FF00ULL) << 40) \ + | ((_v & 0x00000000000000FFULL) << 56)); \ + value; \ + }) \ + ) +#endif /* __DJGPP__ */ + #endif /* !defined(HAVE_BYTESWAP_H) */ #endif /* !defined(_CTF_SWAP_H) */ diff -aprNU5 binutils-2.34.orig/opcodes/config.in binutils-2.34/opcodes/config.in --- binutils-2.34.orig/opcodes/config.in 2020-02-01 11:49:44 +0000 +++ binutils-2.34/opcodes/config.in 2020-03-01 19:35:24 +0000 @@ -118,5 +118,42 @@ this defined. */ #undef _POSIX_1_SOURCE /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE + +#ifdef __DJGPP__ +# include + +# if defined (__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8)) +# define __gnuc_extension__ __extension__ +# else +# define __gnuc_extension__ +# endif + +# undef IS_SLASH +# define IS_SLASH(c) ((c) == '/' || (c) == '\\') +# undef IS_DIRECTORY_SEPARATOR +# define IS_DIRECTORY_SEPARATOR(c) (IS_SLASH(c) || (c) == ':') + +# include +# define STRIP_FULL_PATH_AND_EXTENSION(file_name) \ + (__gnuc_extension__ \ + ({ \ + char *_dst, *_src; \ + _dst = _src = unconst((file_name), char *); \ + while (*_src++) \ + ; \ + while ((_src - _dst) && (*--_src != '.')) \ + ; \ + for (*_src = '\0'; (_src - _dst); _src--) \ + if (IS_DIRECTORY_SEPARATOR(*_src)) \ + break; \ + if (_src - _dst) \ + while ((*_dst++ = *++_src)) \ + ; \ + (file_name); \ + }) \ + ) +#else +# define STRIP_FULL_PATH_AND_EXTENSION(file_name) (file_name) +#endif 2020-03-16 Juan Manuel Guerrero * ld/scripttempl/i386go32.sc: Added missing leading dot to the gnu.lto_ symbol. diff -aprNU5 binutils-2.34.orig/ld/scripttempl/i386go32.sc binutils-2.34/ld/scripttempl/i386go32.sc --- binutils-2.34.orig/ld/scripttempl/i386go32.sc 2020-03-16 20:51:36 +0000 +++ binutils-2.34/ld/scripttempl/i386go32.sc 2020-03-16 20:58:40 +0000 @@ -82,11 +82,11 @@ SECTIONS *(COMMON) ${RELOCATING+ end = . ; PROVIDE(_end = .) ;} ${RELOCATING+ . = ALIGN(${SEGMENT_SIZE});} } /* Discard LTO sections. */ - /DISCARD/ : { *(gnu.lto_*) } + /DISCARD/ : { *(.gnu.lto_*) } /* Stabs debugging sections. */ .stab 0 : { *(.stab) } .stabstr 0 : { *(.stabstr) } EOF