summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorXavier ASUS <xavi92psx@gmail.com>2019-10-24 23:17:51 +0200
committerXavier ASUS <xavi92psx@gmail.com>2019-10-24 23:18:52 +0200
commit9e93944f18de5d7e38c15651df0235156d9c6d4e (patch)
treefc4f9b788698849e547bb2c1ec82ec7d2742fd83 /support
parentd5577a84aadd0195a95b5b4d83e49b40af49425b (diff)
Removed intermediate files
Diffstat (limited to 'support')
-rw-r--r--support/cpp/Makefile323
-rw-r--r--support/cpp/config.log2407
-rwxr-xr-xsupport/cpp/config.status1148
-rw-r--r--support/makebin/Makefile25
-rw-r--r--support/packihx/Makefile54
-rw-r--r--support/packihx/config.log391
-rwxr-xr-xsupport/packihx/config.status997
-rw-r--r--support/regression/Makefile374
-rw-r--r--support/scripts/Makefile21
-rw-r--r--support/sdbinutils/Makefile11312
-rw-r--r--support/sdbinutils/bfd/config.log2012
-rwxr-xr-xsupport/sdbinutils/bfd/config.status2688
-rw-r--r--support/sdbinutils/binutils/config.log3270
-rwxr-xr-xsupport/sdbinutils/binutils/config.status2248
-rwxr-xr-xsupport/sdbinutils/config.status1103
-rw-r--r--support/sdbinutils/libiberty/config.log4310
-rwxr-xr-xsupport/sdbinutils/libiberty/config.status1216
-rw-r--r--support/valdiag/Makefile54
18 files changed, 0 insertions, 33953 deletions
diff --git a/support/cpp/Makefile b/support/cpp/Makefile
deleted file mode 100644
index 132789e..0000000
--- a/support/cpp/Makefile
+++ /dev/null
@@ -1,323 +0,0 @@
-# Makefile for GNU C Preprocessor.
-#
-# hacked from gcc Makefile by kvigor.
-#
-# Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995
-# 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
-
-#This file is part of GNU CC.
-
-#GNU CC 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 2, or (at your option)
-#any later version.
-
-#GNU CC 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 GNU CC; see the file COPYING. If not, write to
-#the Free Software Foundation, 59 Temple Place - Suite 330,
-#Boston MA 02111-1307, USA.
-
-EXEEXT =
-TARGET = ../../bin/sdcpp$(EXEEXT)
-
-
-
-# This is the default target.
-all: $(TARGET)
-
-# Directory where sources are, from where we are.
-srcdir = .
-
-
-
-LIBS =
-CFLAGS = -g -O2 -Wall
-ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) \
- $(CFLAGS) $(WARN_CFLAGS) $(XCFLAGS) -DHAVE_CONFIG_H
-ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
-LDFLAGS =
-
-AWK = gawk
-CC = gcc
-AR = ar
-AR_FLAGS = rc
-RANLIB = ranlib
-SHELL = /bin/sh
-STRIP = strip
-# on sysV, define this as cp.
-INSTALL = /usr/bin/install -c
-# Some systems may be missing symbolic links, regular links, or both.
-# Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate.
-LN=ln
-LN_S=ln -s
-# These permit overriding just for certain files.
-INSTALL_PROGRAM = ${INSTALL}
-INSTALL_DATA = ${INSTALL} -m 644
-
-# Some compilers can't handle cc -c blah.c -o foo/blah.o.
-# In stage2 and beyond, we force this to "-o $@" since we know we're using gcc.
-OUTPUT_OPTION = -o $@
-
-# Some versions of `touch' (such as the version on Solaris 2.8)
-# do not correctly set the timestamp due to buggy versions of `utime'
-# in the kernel. So, we use `echo' instead.
-STAMP = echo timestamp >
-
-# Where to find some libiberty headers.
-LIBIBERTY_DIR = $(srcdir)/../sdbinutils/include
-LIBCPP_DIR = $(srcdir)/libcpp
-OBSTACK_H = $(LIBIBERTY_DIR)/obstack.h
-SPLAY_TREE_H= $(LIBIBERTY_DIR)/splay-tree.h
-
-# Test to see whether <limits.h> exists in the system header files.
-LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h ]
-
-# Common prefix for installation directories.
-# NOTE: This directory must exist when you start installation.
-prefix = /usr/local
-# Directory in which to put localized header files. On the systems with
-# gcc as the native cc, `local_prefix' may not be `prefix' which is
-# `/usr'.
-# NOTE: local_prefix *should not* default from prefix.
-local_prefix = /usr/local
-# Directory in which to put host dependent programs and libraries
-exec_prefix = ${prefix}
-# Directory in which to put the executable for the command `gcc'
-bindir = ${exec_prefix}/bin
-includedir = $(local_prefix)/include
-# where the info files go
-exeext =
-
-transform = s,x,x,
-lang_opt_files=$(srcdir)/sdcpp.opt
-
-# All option source files
-ALL_OPT_FILES=$(lang_opt_files) $(extra_opt_files)
-
-# Top build directory, relative to here.
-top_builddir = .
-
-# Whether we were configured with NLS.
-USE_NLS = @USE_NLS@
-
-# Internationalization library.
-INTLLIBS = @INTLLIBS@
-
-# Change this to a null string if obstacks are installed in the
-# system library.
-OBSTACK=obstack.o
-
-# End of variables for you to override.
-
-install: all
- mkdir -p $(DESTDIR)$(bindir)
- $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)/`echo sdcpp|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTDIR)$(bindir)/`echo sdcpp|sed '$(transform)'`$(EXEEXT)
-
-uninstall:
- rm -f $(DESTDIR)$(bindir)/`echo sdcpp|sed '$(transform)'`$(EXEEXT)
-clean:
- -rm -f $(TARGET) *.o core libcpp.a
- rm -f s-options optionlist options.h s-options-h options.c
-
-distclean: clean
- -rm -f auto-host.h auto-build.h cstamp-h Makefile \
- config.status config.run config.cache config.bak config.log *~ \
- configargs.h
-
-# This tells GNU Make version 3 not to put all variables in the environment.
-.NOEXPORT:
-
-# GCONFIG_H lists the config files that the generator files depend on, while
-# CONFIG_H lists the the ones ordinary gcc files depend on, which includes
-# a file generated by gencodes.
-CONFIG_H = config.h
-SYSTEM_H = system.h hwint.h
-
-# sed inserts variable overrides after the following line.
-####target overrides
-#@target_overrides@
-
-####host overrides
-#@host_overrides@
-
-####cross overrides
-#@cross_defines@
-#@cross_overrides@
-
-####build overrides
-#@build_overrides@
-#
-
-INCLUDES = -I$(srcdir) -I$(LIBCPP_DIR) -I$(LIBCPP_DIR)/include -I$(LIBIBERTY_DIR) -I.
-
-# Always use -I$(srcdir)/config when compiling.
-.c.o:
- $(CC) -c $(ALL_CFLAGS) $(INCLUDES) $(ALL_CPPFLAGS) $< $(OUTPUT_OPTION)
-
-# cstamp-h.in controls rebuilding of config.in.
-# It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't
-# delete it. A stamp file is needed as autoheader won't update the file if
-# nothing has changed.
-# It remains in the source directory and is part of the distribution.
-# This follows what is done in shellutils, fileutils, etc.
-# "echo timestamp" is used instead of touch to be consistent with other
-# packages that use autoconf (??? perhaps also to avoid problems with patch?).
-# ??? Newer versions have a maintainer mode that may be useful here.
-$(srcdir)/config.in: $(srcdir)/cstamp-h.in $(srcdir)/acconfig.h
-$(srcdir)/cstamp-h.in: $(srcdir)/configure.in $(srcdir)/acconfig.h
- (cd $(srcdir) && autoheader)
- @rm -f $(srcdir)/cstamp-h.in
- echo timestamp > $(srcdir)/cstamp-h.in
-auto-host.h: cstamp-h ; @true
-cstamp-h: config.in config.status
- CONFIG_HEADERS=auto-host.h:config.in LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status
-
-# Really, really stupid make features, such as SUN's KEEP_STATE, may force
-# a target to build even if it is up-to-date. So we must verify that
-# config.status does not exist before failing.
-config.status: $(srcdir)/configure version.c
- @if [ ! -f config.status ] ; then \
- echo You must configure gcc. Look at http://gcc.gnu.org/install/ for details.; \
- false; \
- else \
- LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status --recheck; \
- fi
-
-
-optionlist: s-options ; @true
-s-options: $(ALL_OPT_FILES) Makefile $(srcdir)/opt-gather.awk
- $(AWK) -f $(srcdir)/opt-gather.awk $(ALL_OPT_FILES) > tmp-optionlist
- $(SHELL) $(srcdir)/move-if-change tmp-optionlist optionlist
- $(STAMP) s-options
-
-options.c: optionlist $(srcdir)/opt-functions.awk $(srcdir)/optc-gen.awk
- $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/optc-gen.awk \
- -v header_name="config.h system.h options.h" < $< > $@
-
-options.h: s-options-h ; @true
-s-options-h: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opth-gen.awk
- $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opth-gen.awk \
- < $< > tmp-options.h
- $(SHELL) $(srcdir)/move-if-change tmp-options.h options.h
- $(STAMP) $@
-
-#
-# Remake cpp and protoize.
-
-PREPROCESSOR_DEFINES = \
- -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
- -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
- -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_alias)\" \
- -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/backward\" \
- -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
- -DCROSS_INCLUDE_DIR=\"$(gcc_tooldir)/sys-include\" \
- -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\"
-
-##########################
-# Libcpp
-
-LIBCPP_OBJS = charset.o directives.o errors.o expr.o files.o identifiers.o \
- init.o lex.o line-map.o macro.o mkdeps.o symtab.o traditional.o
-
-
-##LIBCPP_DEPS = cpplib.h cpphash.h hashtable.h intl.h options.h $(OBSTACK_H) $(SYSTEM_H)
-
-# Most of the other archives built/used by this makefile are for
-# targets. This one is strictly for the host.
-libcpp.a: $(LIBCPP_OBJS)
- -rm -rf libcpp.a
- $(AR) $(AR_FLAGS) libcpp.a $(LIBCPP_OBJS)
- -$(RANLIB) libcpp.a
-
-charset.o: $(LIBCPP_DIR)/charset.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-directives.o: $(LIBCPP_DIR)/directives.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-errors.o: $(LIBCPP_DIR)/errors.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-expr.o: $(LIBCPP_DIR)/expr.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-files.o: $(LIBCPP_DIR)/files.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-identifiers.o: $(LIBCPP_DIR)/identifiers.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-init.o: $(LIBCPP_DIR)/init.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-lex.o: $(LIBCPP_DIR)/lex.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-line-map.o: $(LIBCPP_DIR)/line-map.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-macro.o: $(LIBCPP_DIR)/macro.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-mkdeps.o: $(LIBCPP_DIR)/mkdeps.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-symtab.o: $(LIBCPP_DIR)/symtab.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-traditional.o: $(LIBCPP_DIR)/traditional.c $(CONFIG_H) $(LIBCPP_DEPS)
- $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
-
-##########################
-# Libiberty
-
-LIBIBERTY = ../sdbinutils/libiberty/libiberty.a
-
-$(LIBIBERTY):
- cd ../sdbinutils/libiberty/ && if [ -e Makefile ]; then $(MAKE); else ./configure && $(MAKE); fi
-
-##########################
-# Sdcpp
-
-SDCC_OBJS = sdcpp.o sdcpp-opts.o sdcpp-diagnostic.o c-ppoutput.o cppdefault.o prefix.o version.o opts.o opts-common.o options.o c-incpath.o
-
-$(TARGET): $(SDCC_OBJS) $(LIBIBERTY) libcpp.a $(LIBDEPS)
- mkdir -p $(dir $@)
- $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(SDCC_OBJS) \
- libcpp.a $(LIBIBERTY) $(LIBS)
-
-sdcpp.o: sdcpp.c $(CONFIG_H) $(SYSTEM_H) options.h
-
-sdcpp-opts.o: sdcpp-opts.c $(CONFIG_H) $(LIBCPP_DEPS) options.h
-
-sdcpp-diagnostic.o: sdcpp-diagnostic.c $(CONFIG_H) $(LIBCPP_DEPS)
-
-c-ppoutput.o: c-ppoutput.c $(CONFIG_H) $(SYSTEM_H)
-
-options.o: options.c $(CONFIG_H) $(LIBCPP_DEPS) options.h
-
-opts.o: opts.c $(CONFIG_H) $(LIBCPP_DEPS) options.h
-
-opts-common.o: opts.c $(CONFIG_H) $(LIBCPP_DEPS) options.h
-
-c-incpath.o: $(CONFIG_H) $(LIBCPP_DEPS) c-incpath.h
-
-version.o: version.c version.h
-
-cppcharset.o: cppcharset.c $(CONFIG_H) $(SYSTEM_H)
-
-prefix.o: prefix.c $(CONFIG_H) $(SYSTEM_H) Makefile prefix.h
- $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
- -DPREFIX=\"$(prefix)\" \
- -c $(srcdir)/prefix.c
-
-cppdefault.o: cppdefault.c $(CONFIG_H) $(SYSTEM_H) cppdefault.h Makefile
- $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
- $(PREPROCESSOR_DEFINES) \
- -c $(srcdir)/cppdefault.c
diff --git a/support/cpp/config.log b/support/cpp/config.log
deleted file mode 100644
index afcaf6d..0000000
--- a/support/cpp/config.log
+++ /dev/null
@@ -1,2407 +0,0 @@
-This file contains any messages produced by compilers while
-running configure, to aid debugging if configure makes a mistake.
-
-It was created by configure, which was
-generated by GNU Autoconf 2.69. Invocation command line was
-
- $ ./configure --disable-option-checking --prefix=/usr/local --disable-mcs51-port --disable-z80-port --disable-z180-port --disable-r2k-port --disable-r3ka-port --disable-gbz80-port --disable-tlcs90-port --disable-ez80_z80-port --disable-ds390-port --disable-ds400-port --disable-pic14-port --disable-pic16-port --disable-hc08-port --disable-s08-port --disable-pdk13-port --disable-pdk14-port --disable-pdk15-port --enable-pdk16-port --disable-ucsim --disable-device-lib --disable-packihx --disable-pdk16-port docdir=${datarootdir}/doc/${PACKAGE} --cache-file=/dev/null --srcdir=.
-
-## --------- ##
-## Platform. ##
-## --------- ##
-
-hostname = xavier-asus
-uname -m = x86_64
-uname -r = 4.15.0-65-generic
-uname -s = Linux
-uname -v = #74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019
-
-/usr/bin/uname -p = unknown
-/bin/uname -X = unknown
-
-/bin/arch = unknown
-/usr/bin/arch -k = unknown
-/usr/convex/getsysinfo = unknown
-/usr/bin/hostinfo = unknown
-/bin/machine = unknown
-/usr/bin/oslevel = unknown
-/bin/universe = unknown
-
-PATH: /home/xavier/.cargo/bin
-PATH: /home/xavier/.local/bin
-PATH: /usr/local/sbin
-PATH: /usr/local/bin
-PATH: /usr/sbin
-PATH: /usr/bin
-PATH: /sbin
-PATH: /bin
-PATH: /usr/games
-PATH: /usr/local/games
-PATH: /snap/bin
-PATH: /usr/local/xtensa-esp32-elf/bin
-
-
-## ----------- ##
-## Core tests. ##
-## ----------- ##
-
-configure:2411: checking for gcc
-configure:2427: found /usr/bin/gcc
-configure:2438: result: gcc
-configure:2667: checking for C compiler version
-configure:2676: gcc --version >&5
-gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
-Copyright (C) 2017 Free Software Foundation, Inc.
-This is free software; see the source for copying conditions. There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-configure:2687: $? = 0
-configure:2676: gcc -v >&5
-Using built-in specs.
-COLLECT_GCC=gcc
-COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
-OFFLOAD_TARGET_NAMES=nvptx-none
-OFFLOAD_TARGET_DEFAULT=1
-Target: x86_64-linux-gnu
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
-Thread model: posix
-gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
-configure:2687: $? = 0
-configure:2676: gcc -V >&5
-gcc: error: unrecognized command line option '-V'
-gcc: fatal error: no input files
-compilation terminated.
-configure:2687: $? = 1
-configure:2676: gcc -qversion >&5
-gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
-gcc: fatal error: no input files
-compilation terminated.
-configure:2687: $? = 1
-configure:2707: checking whether the C compiler works
-configure:2729: gcc conftest.c >&5
-configure:2733: $? = 0
-configure:2781: result: yes
-configure:2784: checking for C compiler default output file name
-configure:2786: result: a.out
-configure:2792: checking for suffix of executables
-configure:2799: gcc -o conftest conftest.c >&5
-configure:2803: $? = 0
-configure:2825: result:
-configure:2847: checking whether we are cross compiling
-configure:2855: gcc -o conftest conftest.c >&5
-configure:2859: $? = 0
-configure:2866: ./conftest
-configure:2870: $? = 0
-configure:2885: result: no
-configure:2890: checking for suffix of object files
-configure:2912: gcc -c conftest.c >&5
-configure:2916: $? = 0
-configure:2937: result: o
-configure:2941: checking whether we are using the GNU C compiler
-configure:2960: gcc -c conftest.c >&5
-configure:2960: $? = 0
-configure:2969: result: yes
-configure:2978: checking whether gcc accepts -g
-configure:2998: gcc -c -g conftest.c >&5
-configure:2998: $? = 0
-configure:3039: result: yes
-configure:3056: checking for gcc option to accept ISO C89
-configure:3119: gcc -c -g -O2 conftest.c >&5
-configure:3119: $? = 0
-configure:3132: result: none needed
-configure:3153: checking whether gcc and cc understand -c and -o together
-configure:3184: gcc -c conftest.c -o conftest2.o >&5
-configure:3188: $? = 0
-configure:3194: gcc -c conftest.c -o conftest2.o >&5
-configure:3198: $? = 0
-configure:3209: cc -c conftest.c >&5
-configure:3213: $? = 0
-configure:3221: cc -c conftest.c -o conftest2.o >&5
-configure:3225: $? = 0
-configure:3231: cc -c conftest.c -o conftest2.o >&5
-configure:3235: $? = 0
-configure:3253: result: yes
-configure:3277: checking how to run the C preprocessor
-configure:3308: gcc -E conftest.c
-configure:3308: $? = 0
-configure:3322: gcc -E conftest.c
-conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:3322: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:3347: result: gcc -E
-configure:3367: gcc -E conftest.c
-configure:3367: $? = 0
-configure:3381: gcc -E conftest.c
-conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:3381: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:3410: checking for inline
-configure:3426: gcc -c -g -O2 conftest.c >&5
-configure:3426: $? = 0
-configure:3434: result: inline
-configure:3453: checking for built-in _Bool
-configure:3469: gcc -c -g -O2 conftest.c >&5
-configure:3469: $? = 0
-configure:3477: result: yes
-configure:3487: checking size of short
-configure:3507: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:17:20: error: duplicate case value
- switch (0) case 0: case (sizeof (short) == 4):;
- ^~~~
-conftest.c:17:12: note: previously used here
- switch (0) case 0: case (sizeof (short) == 4):;
- ^~~~
-configure:3507: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| /* end confdefs.h. */
-| #include "confdefs.h"
-| #include <sys/types.h>
-|
-|
-| int
-| main ()
-| {
-| switch (0) case 0: case (sizeof (short) == 4):;
-| ;
-| return 0;
-| }
-configure:3507: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:17:20: error: duplicate case value
- switch (0) case 0: case (sizeof (short) == 8):;
- ^~~~
-conftest.c:17:12: note: previously used here
- switch (0) case 0: case (sizeof (short) == 8):;
- ^~~~
-configure:3507: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| /* end confdefs.h. */
-| #include "confdefs.h"
-| #include <sys/types.h>
-|
-|
-| int
-| main ()
-| {
-| switch (0) case 0: case (sizeof (short) == 8):;
-| ;
-| return 0;
-| }
-configure:3507: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:17:20: error: duplicate case value
- switch (0) case 0: case (sizeof (short) == 1):;
- ^~~~
-conftest.c:17:12: note: previously used here
- switch (0) case 0: case (sizeof (short) == 1):;
- ^~~~
-configure:3507: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| /* end confdefs.h. */
-| #include "confdefs.h"
-| #include <sys/types.h>
-|
-|
-| int
-| main ()
-| {
-| switch (0) case 0: case (sizeof (short) == 1):;
-| ;
-| return 0;
-| }
-configure:3507: gcc -c -g -O2 conftest.c >&5
-configure:3507: $? = 0
-configure:3519: result: 2
-configure:3527: checking size of int
-configure:3547: gcc -c -g -O2 conftest.c >&5
-configure:3547: $? = 0
-configure:3559: result: 4
-configure:3567: checking size of long
-configure:3587: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:19:20: error: duplicate case value
- switch (0) case 0: case (sizeof (long) == 4):;
- ^~~~
-conftest.c:19:12: note: previously used here
- switch (0) case 0: case (sizeof (long) == 4):;
- ^~~~
-configure:3587: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| /* end confdefs.h. */
-| #include "confdefs.h"
-| #include <sys/types.h>
-|
-|
-| int
-| main ()
-| {
-| switch (0) case 0: case (sizeof (long) == 4):;
-| ;
-| return 0;
-| }
-configure:3587: gcc -c -g -O2 conftest.c >&5
-configure:3587: $? = 0
-configure:3599: result: 8
-configure:3609: checking for grep that handles long lines and -e
-configure:3667: result: /bin/grep
-configure:3672: checking for egrep
-configure:3734: result: /bin/grep -E
-configure:3739: checking execution character set
-configure:3776: result: ASCII
-configure:3795: checking whether make sets $(MAKE)
-configure:3817: result: yes
-configure:3827: checking whether a default assembler was specified
-configure:3838: result: no
-configure:3842: checking whether a default linker was specified
-configure:3853: result: no
-configure:3862: checking for gawk
-configure:3878: found /usr/bin/gawk
-configure:3889: result: gawk
-configure:3906: checking whether ln works
-configure:3929: result: yes
-configure:3941: checking whether ln -s works
-configure:3964: result: yes
-configure:4019: checking for ranlib
-configure:4035: found /usr/bin/ranlib
-configure:4046: result: ranlib
-configure:4107: checking for a BSD compatible install
-configure:4149: result: /usr/bin/install -c
-configure:4159: checking for ANSI C header files
-configure:4179: gcc -c -g -O2 conftest.c >&5
-configure:4179: $? = 0
-configure:4252: gcc -o conftest -g -O2 conftest.c >&5
-configure:4252: $? = 0
-configure:4252: ./conftest
-configure:4252: $? = 0
-configure:4263: result: yes
-configure:4271: checking whether time.h and sys/time.h may both be included
-configure:4291: gcc -c -g -O2 conftest.c >&5
-configure:4291: $? = 0
-configure:4298: result: yes
-configure:4306: checking for working stdbool.h
-configure:4322: gcc -c -g -O2 conftest.c >&5
-configure:4322: $? = 0
-configure:4329: result: yes
-configure:4337: checking whether string.h and strings.h may both be included
-configure:4354: gcc -c -g -O2 conftest.c >&5
-configure:4354: $? = 0
-configure:4361: result: yes
-configure:4369: checking for sys/wait.h that is POSIX.1 compatible
-configure:4395: gcc -c -g -O2 conftest.c >&5
-configure:4395: $? = 0
-configure:4402: result: yes
-configure:4415: checking for sys/types.h
-configure:4415: gcc -c -g -O2 conftest.c >&5
-configure:4415: $? = 0
-configure:4415: result: yes
-configure:4415: checking for sys/stat.h
-configure:4415: gcc -c -g -O2 conftest.c >&5
-configure:4415: $? = 0
-configure:4415: result: yes
-configure:4415: checking for stdlib.h
-configure:4415: gcc -c -g -O2 conftest.c >&5
-configure:4415: $? = 0
-configure:4415: result: yes
-configure:4415: checking for string.h
-configure:4415: gcc -c -g -O2 conftest.c >&5
-configure:4415: $? = 0
-configure:4415: result: yes
-configure:4415: checking for memory.h
-configure:4415: gcc -c -g -O2 conftest.c >&5
-configure:4415: $? = 0
-configure:4415: result: yes
-configure:4415: checking for strings.h
-configure:4415: gcc -c -g -O2 conftest.c >&5
-configure:4415: $? = 0
-configure:4415: result: yes
-configure:4415: checking for inttypes.h
-configure:4415: gcc -c -g -O2 conftest.c >&5
-configure:4415: $? = 0
-configure:4415: result: yes
-configure:4415: checking for stdint.h
-configure:4415: gcc -c -g -O2 conftest.c >&5
-configure:4415: $? = 0
-configure:4415: result: yes
-configure:4415: checking for unistd.h
-configure:4415: gcc -c -g -O2 conftest.c >&5
-configure:4415: $? = 0
-configure:4415: result: yes
-configure:4433: checking limits.h usability
-configure:4433: gcc -c -g -O2 conftest.c >&5
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking limits.h presence
-configure:4433: gcc -E conftest.c
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking for limits.h
-configure:4433: result: yes
-configure:4433: checking stddef.h usability
-configure:4433: gcc -c -g -O2 conftest.c >&5
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking stddef.h presence
-configure:4433: gcc -E conftest.c
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking for stddef.h
-configure:4433: result: yes
-configure:4433: checking for string.h
-configure:4433: result: yes
-configure:4433: checking for strings.h
-configure:4433: result: yes
-configure:4433: checking for stdlib.h
-configure:4433: result: yes
-configure:4433: checking time.h usability
-configure:4433: gcc -c -g -O2 conftest.c >&5
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking time.h presence
-configure:4433: gcc -E conftest.c
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking for time.h
-configure:4433: result: yes
-configure:4433: checking fcntl.h usability
-configure:4433: gcc -c -g -O2 conftest.c >&5
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking fcntl.h presence
-configure:4433: gcc -E conftest.c
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking for fcntl.h
-configure:4433: result: yes
-configure:4433: checking for unistd.h
-configure:4433: result: yes
-configure:4433: checking sys/file.h usability
-configure:4433: gcc -c -g -O2 conftest.c >&5
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking sys/file.h presence
-configure:4433: gcc -E conftest.c
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking for sys/file.h
-configure:4433: result: yes
-configure:4433: checking sys/time.h usability
-configure:4433: gcc -c -g -O2 conftest.c >&5
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking sys/time.h presence
-configure:4433: gcc -E conftest.c
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking for sys/time.h
-configure:4433: result: yes
-configure:4433: checking sys/param.h usability
-configure:4433: gcc -c -g -O2 conftest.c >&5
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking sys/param.h presence
-configure:4433: gcc -E conftest.c
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking for sys/param.h
-configure:4433: result: yes
-configure:4433: checking for sys/stat.h
-configure:4433: result: yes
-configure:4433: checking direct.h usability
-configure:4433: gcc -c -g -O2 conftest.c >&5
-conftest.c:72:10: fatal error: direct.h: No such file or directory
- #include <direct.h>
- ^~~~~~~~~~
-compilation terminated.
-configure:4433: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| #include <direct.h>
-configure:4433: result: no
-configure:4433: checking direct.h presence
-configure:4433: gcc -E conftest.c
-conftest.c:39:10: fatal error: direct.h: No such file or directory
- #include <direct.h>
- ^~~~~~~~~~
-compilation terminated.
-configure:4433: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| /* end confdefs.h. */
-| #include <direct.h>
-configure:4433: result: no
-configure:4433: checking for direct.h
-configure:4433: result: no
-configure:4433: checking malloc.h usability
-configure:4433: gcc -c -g -O2 conftest.c >&5
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking malloc.h presence
-configure:4433: gcc -E conftest.c
-configure:4433: $? = 0
-configure:4433: result: yes
-configure:4433: checking for malloc.h
-configure:4433: result: yes
-configure:4447: checking for CHAR_BIT
-configure:4471: result: yes
-configure:4517: checking whether byte ordering is bigendian
-configure:4532: gcc -c -g -O2 conftest.c >&5
-conftest.c:41:9: error: unknown type name 'not'
- not a universal capable compiler
- ^~~
-conftest.c:41:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
- not a universal capable compiler
- ^~~~~~~~~
-conftest.c:41:15: error: unknown type name 'universal'
-configure:4532: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_MALLOC_H 1
-| /* end confdefs.h. */
-| #ifndef __APPLE_CC__
-| not a universal capable compiler
-| #endif
-| typedef int dummy;
-|
-configure:4577: gcc -c -g -O2 conftest.c >&5
-configure:4577: $? = 0
-configure:4595: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:47:4: error: unknown type name 'not'; did you mean 'ino_t'?
- not big endian
- ^~~
- ino_t
-conftest.c:47:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
- not big endian
- ^~~~~~
-configure:4595: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_MALLOC_H 1
-| /* end confdefs.h. */
-| #include <sys/types.h>
-| #include <sys/param.h>
-|
-| int
-| main ()
-| {
-| #if BYTE_ORDER != BIG_ENDIAN
-| not big endian
-| #endif
-|
-| ;
-| return 0;
-| }
-configure:4723: result: no
-configure:4745: checking for mktemp
-configure:4761: found /bin/mktemp
-configure:4773: result: yes
-configure:4784: checking for strip
-configure:4800: found /usr/bin/strip
-configure:4812: result: strip
-configure:4822: checking for ar
-configure:4838: found /usr/bin/ar
-configure:4850: result: ar
-configure:4861: checking for preprocessor stringizing operator
-configure:4881: result: yes
-configure:4894: checking for clock
-configure:4894: gcc -o conftest -g -O2 conftest.c >&5
-configure:4894: $? = 0
-configure:4894: result: yes
-configure:4894: checking for strsignal
-configure:4894: gcc -o conftest -g -O2 conftest.c >&5
-configure:4894: $? = 0
-configure:4894: result: yes
-configure:4894: checking for strchr
-configure:4894: gcc -o conftest -g -O2 conftest.c >&5
-conftest.c:66:6: warning: conflicting types for built-in function 'strchr' [-Wbuiltin-declaration-mismatch]
- char strchr ();
- ^~~~~~
-configure:4894: $? = 0
-configure:4894: result: yes
-configure:4894: checking for strrchr
-configure:4894: gcc -o conftest -g -O2 conftest.c >&5
-conftest.c:67:6: warning: conflicting types for built-in function 'strrchr' [-Wbuiltin-declaration-mismatch]
- char strrchr ();
- ^~~~~~~
-configure:4894: $? = 0
-configure:4894: result: yes
-configure:4894: checking for lstat
-configure:4894: gcc -o conftest -g -O2 conftest.c >&5
-configure:4894: $? = 0
-configure:4894: result: yes
-configure:4904: checking for ssize_t
-configure:4904: gcc -c -g -O2 conftest.c >&5
-configure:4904: $? = 0
-configure:4904: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:82:22: error: expected expression before ')' token
- if (sizeof ((ssize_t)))
- ^
-configure:4904: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRINGIZE 1
-| #define HAVE_CLOCK 1
-| #define HAVE_STRSIGNAL 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_LSTAT 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| int
-| main ()
-| {
-| if (sizeof ((ssize_t)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:4904: result: yes
-configure:4918: checking for getpagesize
-configure:4918: gcc -o conftest -g -O2 conftest.c >&5
-configure:4918: $? = 0
-configure:4918: result: yes
-configure:5173: checking for working mmap from /dev/zero
-configure:5193: gcc -o conftest -g -O2 conftest.c >&5
-In file included from conftest.c:47:0:
-ct-mmap.inc: In function 'test_0':
-ct-mmap.inc:59:21: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:97:5: note: in expansion of macro 'perror_exit'
- perror_exit("test 0 mmap", 2);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:97:5: note: in expansion of macro 'perror_exit'
- perror_exit("test 0 mmap", 2);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:97:5: note: in expansion of macro 'perror_exit'
- perror_exit("test 0 mmap", 2);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:102:5: note: in expansion of macro 'perror_exit'
- perror_exit("test 0 munmap", 3);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:102:5: note: in expansion of macro 'perror_exit'
- perror_exit("test 0 munmap", 3);
- ^~~~~~~~~~~
-ct-mmap.inc: In function 'test_1':
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:112:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 mmap", 4);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:112:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 mmap", 4);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:116:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 fault", 5);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:116:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 fault", 5);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:122:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 munmap 1", 6);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:122:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 munmap 1", 6);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:128:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 no fault", 7);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:128:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 no fault", 7);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:131:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 munmap 2", 8);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:131:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 munmap 2", 8);
- ^~~~~~~~~~~
-ct-mmap.inc: In function 'test_2':
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:141:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 mmap", 9);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:141:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 mmap", 9);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:145:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 fault", 10);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:145:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 fault", 10);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:151:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 munmap 1", 11);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:151:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 munmap 1", 11);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:158:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 no fault", 12);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:158:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 no fault", 12);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:162:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 munmap 2", 13);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:162:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 munmap 2", 13);
- ^~~~~~~~~~~
-ct-mmap.inc: In function 'test_3':
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:182:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 mmap 1", 14);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:182:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 mmap 1", 14);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:185:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 mmap 2", 15);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:185:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 mmap 2", 15);
- ^~~~~~~~~~~
-ct-mmap.inc:195:4: warning: incompatible implicit declaration of built-in function 'exit'
- exit (16);
- ^~~~
-ct-mmap.inc:195:4: note: include '<stdlib.h>' or provide a declaration of 'exit'
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:201:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 fault", 17);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:201:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 fault", 17);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:207:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 munmap", 18);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:207:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 munmap", 18);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:212:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 no fault 1", 19);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:212:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 no fault 1", 19);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:219:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 no fault 2", 20);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:219:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 no fault 2", 20);
- ^~~~~~~~~~~
-ct-mmap.inc: In function 'main':
-ct-mmap.inc:228:8: warning: implicit declaration of function 'getpagesize' [-Wimplicit-function-declaration]
- pg = getpagesize ();
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:232:5: note: in expansion of macro 'perror_exit'
- perror_exit ("open /dev/zero", 1);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:232:5: note: in expansion of macro 'perror_exit'
- perror_exit ("open /dev/zero", 1);
- ^~~~~~~~~~~
-ct-mmap.inc:240:3: warning: incompatible implicit declaration of built-in function 'exit'
- exit(0);
- ^~~~
-ct-mmap.inc:240:3: note: include '<stdlib.h>' or provide a declaration of 'exit'
-configure:5193: $? = 0
-configure:5193: ./conftest
-configure:5193: $? = 0
-configure:5207: result: yes
-configure:5215: checking for working mmap with MAP_ANON(YMOUS)
-configure:5230: gcc -o conftest -g -O2 conftest.c >&5
-In file included from conftest.c:49:0:
-ct-mmap.inc: In function 'test_0':
-ct-mmap.inc:59:21: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:97:5: note: in expansion of macro 'perror_exit'
- perror_exit("test 0 mmap", 2);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:97:5: note: in expansion of macro 'perror_exit'
- perror_exit("test 0 mmap", 2);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:97:5: note: in expansion of macro 'perror_exit'
- perror_exit("test 0 mmap", 2);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:102:5: note: in expansion of macro 'perror_exit'
- perror_exit("test 0 munmap", 3);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:102:5: note: in expansion of macro 'perror_exit'
- perror_exit("test 0 munmap", 3);
- ^~~~~~~~~~~
-ct-mmap.inc: In function 'test_1':
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:112:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 mmap", 4);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:112:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 mmap", 4);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:116:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 fault", 5);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:116:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 fault", 5);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:122:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 munmap 1", 6);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:122:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 munmap 1", 6);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:128:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 no fault", 7);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:128:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 no fault", 7);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:131:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 munmap 2", 8);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:131:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 1 munmap 2", 8);
- ^~~~~~~~~~~
-ct-mmap.inc: In function 'test_2':
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:141:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 mmap", 9);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:141:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 mmap", 9);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:145:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 fault", 10);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:145:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 fault", 10);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:151:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 munmap 1", 11);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:151:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 munmap 1", 11);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:158:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 no fault", 12);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:158:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 no fault", 12);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:162:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 munmap 2", 13);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:162:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 2 munmap 2", 13);
- ^~~~~~~~~~~
-ct-mmap.inc: In function 'test_3':
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:182:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 mmap 1", 14);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:182:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 mmap 1", 14);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:185:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 mmap 2", 15);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:185:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 mmap 2", 15);
- ^~~~~~~~~~~
-ct-mmap.inc:195:4: warning: incompatible implicit declaration of built-in function 'exit'
- exit (16);
- ^~~~
-ct-mmap.inc:195:4: note: include '<stdlib.h>' or provide a declaration of 'exit'
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:201:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 fault", 17);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:201:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 fault", 17);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:207:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 munmap", 18);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:207:5: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 munmap", 18);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:212:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 no fault 1", 19);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:212:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 no fault 1", 19);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: warning: incompatible implicit declaration of built-in function 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:219:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 no fault 2", 20);
- ^~~~~~~~~~~
-ct-mmap.inc:59:21: note: include '<stdlib.h>' or provide a declaration of 'exit'
- do { perror(str); exit(val); } while (0)
- ^
-ct-mmap.inc:219:7: note: in expansion of macro 'perror_exit'
- perror_exit ("test 3 no fault 2", 20);
- ^~~~~~~~~~~
-ct-mmap.inc: In function 'main':
-ct-mmap.inc:228:8: warning: implicit declaration of function 'getpagesize' [-Wimplicit-function-declaration]
- pg = getpagesize ();
- ^~~~~~~~~~~
-ct-mmap.inc:240:3: warning: incompatible implicit declaration of built-in function 'exit'
- exit(0);
- ^~~~
-ct-mmap.inc:240:3: note: include '<stdlib.h>' or provide a declaration of 'exit'
-configure:5230: $? = 0
-configure:5230: ./conftest
-configure:5230: $? = 0
-configure:5244: result: yes
-configure:5253: checking for working mmap of a file
-configure:5305: gcc -o conftest -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:66:5: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
- exit(1);
- ^~~~
-conftest.c:66:5: warning: incompatible implicit declaration of built-in function 'exit'
-conftest.c:66:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
-conftest.c:69:5: warning: incompatible implicit declaration of built-in function 'exit'
- exit(2);
- ^~~~
-conftest.c:69:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
-conftest.c:73:5: warning: incompatible implicit declaration of built-in function 'exit'
- exit(3);
- ^~~~
-conftest.c:73:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
-conftest.c:76:5: warning: incompatible implicit declaration of built-in function 'exit'
- exit(4);
- ^~~~
-conftest.c:76:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
-conftest.c:79:5: warning: incompatible implicit declaration of built-in function 'exit'
- exit(5);
- ^~~~
-conftest.c:79:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
-conftest.c:81:3: warning: incompatible implicit declaration of built-in function 'exit'
- exit(0);
- ^~~~
-conftest.c:81:3: note: include '<stdlib.h>' or provide a declaration of 'exit'
-configure:5305: $? = 0
-configure:5305: ./conftest
-configure:5305: $? = 0
-configure:5315: result: yes
-configure:5331: checking whether getenv is declared
-configure:5354: gcc -c -g -O2 -I. -I./libiberty -I./libcpp/include conftest.c >&5
-conftest.c:53:10: fatal error: ansidecl.h: No such file or directory
- #include "ansidecl.h"
- ^~~~~~~~~~~~
-compilation terminated.
-configure:5354: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRINGIZE 1
-| #define HAVE_CLOCK 1
-| #define HAVE_STRSIGNAL 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_LSTAT 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_MMAP_DEV_ZERO 1
-| #define HAVE_MMAP_ANON 1
-| #define HAVE_MMAP_FILE 1
-| /* end confdefs.h. */
-| #undef HAVE_DECL_GETENV
-| #define HAVE_DECL_GETENV 1
-|
-| #include "ansidecl.h"
-| #include "system.h"
-|
-| int
-| main ()
-| {
-| #ifndef getenv
-| char *(*pfn) = (char *(*)) getenv ;
-| #endif
-| ;
-| return 0;
-| }
-configure:5369: result: no
-configure:5331: checking whether abort is declared
-configure:5354: gcc -c -g -O2 -I. -I./libiberty -I./libcpp/include conftest.c >&5
-conftest.c:54:10: fatal error: ansidecl.h: No such file or directory
- #include "ansidecl.h"
- ^~~~~~~~~~~~
-compilation terminated.
-configure:5354: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRINGIZE 1
-| #define HAVE_CLOCK 1
-| #define HAVE_STRSIGNAL 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_LSTAT 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_MMAP_DEV_ZERO 1
-| #define HAVE_MMAP_ANON 1
-| #define HAVE_MMAP_FILE 1
-| #define HAVE_DECL_GETENV 0
-| /* end confdefs.h. */
-| #undef HAVE_DECL_ABORT
-| #define HAVE_DECL_ABORT 1
-|
-| #include "ansidecl.h"
-| #include "system.h"
-|
-| int
-| main ()
-| {
-| #ifndef abort
-| char *(*pfn) = (char *(*)) abort ;
-| #endif
-| ;
-| return 0;
-| }
-configure:5369: result: no
-configure:5331: checking whether strsignal is declared
-configure:5354: gcc -c -g -O2 -I. -I./libiberty -I./libcpp/include conftest.c >&5
-conftest.c:55:10: fatal error: ansidecl.h: No such file or directory
- #include "ansidecl.h"
- ^~~~~~~~~~~~
-compilation terminated.
-configure:5354: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRINGIZE 1
-| #define HAVE_CLOCK 1
-| #define HAVE_STRSIGNAL 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_LSTAT 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_MMAP_DEV_ZERO 1
-| #define HAVE_MMAP_ANON 1
-| #define HAVE_MMAP_FILE 1
-| #define HAVE_DECL_GETENV 0
-| #define HAVE_DECL_ABORT 0
-| /* end confdefs.h. */
-| #undef HAVE_DECL_STRSIGNAL
-| #define HAVE_DECL_STRSIGNAL 1
-|
-| #include "ansidecl.h"
-| #include "system.h"
-|
-| int
-| main ()
-| {
-| #ifndef strsignal
-| char *(*pfn) = (char *(*)) strsignal ;
-| #endif
-| ;
-| return 0;
-| }
-configure:5369: result: no
-configure:5331: checking whether errno is declared
-configure:5354: gcc -c -g -O2 -I. -I./libiberty -I./libcpp/include conftest.c >&5
-conftest.c:56:10: fatal error: ansidecl.h: No such file or directory
- #include "ansidecl.h"
- ^~~~~~~~~~~~
-compilation terminated.
-configure:5354: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRINGIZE 1
-| #define HAVE_CLOCK 1
-| #define HAVE_STRSIGNAL 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_LSTAT 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_MMAP_DEV_ZERO 1
-| #define HAVE_MMAP_ANON 1
-| #define HAVE_MMAP_FILE 1
-| #define HAVE_DECL_GETENV 0
-| #define HAVE_DECL_ABORT 0
-| #define HAVE_DECL_STRSIGNAL 0
-| /* end confdefs.h. */
-| #undef HAVE_DECL_ERRNO
-| #define HAVE_DECL_ERRNO 1
-|
-| #include "ansidecl.h"
-| #include "system.h"
-|
-| int
-| main ()
-| {
-| #ifndef errno
-| char *(*pfn) = (char *(*)) errno ;
-| #endif
-| ;
-| return 0;
-| }
-configure:5369: result: no
-configure:5331: checking whether malloc is declared
-configure:5354: gcc -c -g -O2 -I. -I./libiberty -I./libcpp/include conftest.c >&5
-conftest.c:57:10: fatal error: ansidecl.h: No such file or directory
- #include "ansidecl.h"
- ^~~~~~~~~~~~
-compilation terminated.
-configure:5354: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRINGIZE 1
-| #define HAVE_CLOCK 1
-| #define HAVE_STRSIGNAL 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_LSTAT 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_MMAP_DEV_ZERO 1
-| #define HAVE_MMAP_ANON 1
-| #define HAVE_MMAP_FILE 1
-| #define HAVE_DECL_GETENV 0
-| #define HAVE_DECL_ABORT 0
-| #define HAVE_DECL_STRSIGNAL 0
-| #define HAVE_DECL_ERRNO 0
-| /* end confdefs.h. */
-| #undef HAVE_DECL_MALLOC
-| #define HAVE_DECL_MALLOC 1
-|
-| #include "ansidecl.h"
-| #include "system.h"
-|
-| int
-| main ()
-| {
-| #ifndef malloc
-| char *(*pfn) = (char *(*)) malloc ;
-| #endif
-| ;
-| return 0;
-| }
-configure:5369: result: no
-configure:5331: checking whether realloc is declared
-configure:5354: gcc -c -g -O2 -I. -I./libiberty -I./libcpp/include conftest.c >&5
-conftest.c:58:10: fatal error: ansidecl.h: No such file or directory
- #include "ansidecl.h"
- ^~~~~~~~~~~~
-compilation terminated.
-configure:5354: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRINGIZE 1
-| #define HAVE_CLOCK 1
-| #define HAVE_STRSIGNAL 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_LSTAT 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_MMAP_DEV_ZERO 1
-| #define HAVE_MMAP_ANON 1
-| #define HAVE_MMAP_FILE 1
-| #define HAVE_DECL_GETENV 0
-| #define HAVE_DECL_ABORT 0
-| #define HAVE_DECL_STRSIGNAL 0
-| #define HAVE_DECL_ERRNO 0
-| #define HAVE_DECL_MALLOC 0
-| /* end confdefs.h. */
-| #undef HAVE_DECL_REALLOC
-| #define HAVE_DECL_REALLOC 1
-|
-| #include "ansidecl.h"
-| #include "system.h"
-|
-| int
-| main ()
-| {
-| #ifndef realloc
-| char *(*pfn) = (char *(*)) realloc ;
-| #endif
-| ;
-| return 0;
-| }
-configure:5369: result: no
-configure:5331: checking whether calloc is declared
-configure:5354: gcc -c -g -O2 -I. -I./libiberty -I./libcpp/include conftest.c >&5
-conftest.c:59:10: fatal error: ansidecl.h: No such file or directory
- #include "ansidecl.h"
- ^~~~~~~~~~~~
-compilation terminated.
-configure:5354: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRINGIZE 1
-| #define HAVE_CLOCK 1
-| #define HAVE_STRSIGNAL 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_LSTAT 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_MMAP_DEV_ZERO 1
-| #define HAVE_MMAP_ANON 1
-| #define HAVE_MMAP_FILE 1
-| #define HAVE_DECL_GETENV 0
-| #define HAVE_DECL_ABORT 0
-| #define HAVE_DECL_STRSIGNAL 0
-| #define HAVE_DECL_ERRNO 0
-| #define HAVE_DECL_MALLOC 0
-| #define HAVE_DECL_REALLOC 0
-| /* end confdefs.h. */
-| #undef HAVE_DECL_CALLOC
-| #define HAVE_DECL_CALLOC 1
-|
-| #include "ansidecl.h"
-| #include "system.h"
-|
-| int
-| main ()
-| {
-| #ifndef calloc
-| char *(*pfn) = (char *(*)) calloc ;
-| #endif
-| ;
-| return 0;
-| }
-configure:5369: result: no
-configure:5331: checking whether free is declared
-configure:5354: gcc -c -g -O2 -I. -I./libiberty -I./libcpp/include conftest.c >&5
-conftest.c:60:10: fatal error: ansidecl.h: No such file or directory
- #include "ansidecl.h"
- ^~~~~~~~~~~~
-compilation terminated.
-configure:5354: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRINGIZE 1
-| #define HAVE_CLOCK 1
-| #define HAVE_STRSIGNAL 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_LSTAT 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_MMAP_DEV_ZERO 1
-| #define HAVE_MMAP_ANON 1
-| #define HAVE_MMAP_FILE 1
-| #define HAVE_DECL_GETENV 0
-| #define HAVE_DECL_ABORT 0
-| #define HAVE_DECL_STRSIGNAL 0
-| #define HAVE_DECL_ERRNO 0
-| #define HAVE_DECL_MALLOC 0
-| #define HAVE_DECL_REALLOC 0
-| #define HAVE_DECL_CALLOC 0
-| /* end confdefs.h. */
-| #undef HAVE_DECL_FREE
-| #define HAVE_DECL_FREE 1
-|
-| #include "ansidecl.h"
-| #include "system.h"
-|
-| int
-| main ()
-| {
-| #ifndef free
-| char *(*pfn) = (char *(*)) free ;
-| #endif
-| ;
-| return 0;
-| }
-configure:5369: result: no
-configure:5331: checking whether clock is declared
-configure:5354: gcc -c -g -O2 -I. -I./libiberty -I./libcpp/include conftest.c >&5
-conftest.c:61:10: fatal error: ansidecl.h: No such file or directory
- #include "ansidecl.h"
- ^~~~~~~~~~~~
-compilation terminated.
-configure:5354: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define HAVE__BOOL 1
-| #define SIZEOF_SHORT 2
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define STDC_HEADERS 1
-| #define TIME_WITH_SYS_TIME 1
-| #define HAVE_STDBOOL_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_SYS_WAIT_H 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRINGIZE 1
-| #define HAVE_CLOCK 1
-| #define HAVE_STRSIGNAL 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_LSTAT 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_MMAP_DEV_ZERO 1
-| #define HAVE_MMAP_ANON 1
-| #define HAVE_MMAP_FILE 1
-| #define HAVE_DECL_GETENV 0
-| #define HAVE_DECL_ABORT 0
-| #define HAVE_DECL_STRSIGNAL 0
-| #define HAVE_DECL_ERRNO 0
-| #define HAVE_DECL_MALLOC 0
-| #define HAVE_DECL_REALLOC 0
-| #define HAVE_DECL_CALLOC 0
-| #define HAVE_DECL_FREE 0
-| /* end confdefs.h. */
-| #undef HAVE_DECL_CLOCK
-| #define HAVE_DECL_CLOCK 1
-|
-| #include "ansidecl.h"
-| #include "system.h"
-|
-| int
-| main ()
-| {
-| #ifndef clock
-| char *(*pfn) = (char *(*)) clock ;
-| #endif
-| ;
-| return 0;
-| }
-configure:5369: result: no
-configure:5404: checking for gcc option to accept ISO C99
-configure:5553: gcc -c -g -O2 conftest.c >&5
-configure:5553: $? = 0
-configure:5566: result: none needed
-configure:5586: checking if mkdir takes one argument
-configure:5612: gcc -c -g -O2 conftest.c >&5
-configure:5612: $? = 0
-configure:5619: result: no
-configure:5760: checking what assembler to use
-configure:5842: result: /usr/bin/as
-configure:5847: checking what nm to use
-configure:5855: result: nm
-configure:5859: checking whether to enable maintainer-specific portions of Makefiles
-configure:5869: result: no
-configure:6076: creating ./config.status
-
-## ---------------------- ##
-## Running config.status. ##
-## ---------------------- ##
-
-This file was extended by config.status, which was
-generated by GNU Autoconf 2.69. Invocation command line was
-
- CONFIG_FILES =
- CONFIG_HEADERS =
- CONFIG_LINKS =
- CONFIG_COMMANDS =
- $ ./config.status
-
-on xavier-asus
-
-config.status:940: creating Makefile
-config.status:940: creating auto-host.h
-config.status:1110: auto-host.h is unchanged
-config.status:1124: executing default commands
-
-## ---------------- ##
-## Cache variables. ##
-## ---------------- ##
-
-ac_cv_c_bigendian=no
-ac_cv_c_charset=ASCII
-ac_cv_c_compiler_gnu=yes
-ac_cv_c_inline=inline
-ac_cv_c_stringize=yes
-ac_cv_env_CC_set=
-ac_cv_env_CC_value=
-ac_cv_env_CFLAGS_set=
-ac_cv_env_CFLAGS_value=
-ac_cv_env_CPPFLAGS_set=
-ac_cv_env_CPPFLAGS_value=
-ac_cv_env_CPP_set=
-ac_cv_env_CPP_value=
-ac_cv_env_LDFLAGS_set=
-ac_cv_env_LDFLAGS_value=
-ac_cv_env_LIBS_set=
-ac_cv_env_LIBS_value=
-ac_cv_env_build_alias_set=
-ac_cv_env_build_alias_value=
-ac_cv_env_host_alias_set=
-ac_cv_env_host_alias_value=
-ac_cv_env_target_alias_set=
-ac_cv_env_target_alias_value=
-ac_cv_func_clock=yes
-ac_cv_func_getpagesize=yes
-ac_cv_func_lstat=yes
-ac_cv_func_mmap_anon=yes
-ac_cv_func_mmap_dev_zero=yes
-ac_cv_func_mmap_file=yes
-ac_cv_func_strchr=yes
-ac_cv_func_strrchr=yes
-ac_cv_func_strsignal=yes
-ac_cv_header_direct_h=no
-ac_cv_header_fcntl_h=yes
-ac_cv_header_inttypes_h=yes
-ac_cv_header_limits_h=yes
-ac_cv_header_malloc_h=yes
-ac_cv_header_memory_h=yes
-ac_cv_header_stdbool_h=yes
-ac_cv_header_stdc=yes
-ac_cv_header_stddef_h=yes
-ac_cv_header_stdint_h=yes
-ac_cv_header_stdlib_h=yes
-ac_cv_header_string_h=yes
-ac_cv_header_strings_h=yes
-ac_cv_header_sys_file_h=yes
-ac_cv_header_sys_param_h=yes
-ac_cv_header_sys_stat_h=yes
-ac_cv_header_sys_time_h=yes
-ac_cv_header_sys_types_h=yes
-ac_cv_header_sys_wait_h=yes
-ac_cv_header_time=yes
-ac_cv_header_time_h=yes
-ac_cv_header_unistd_h=yes
-ac_cv_objext=o
-ac_cv_path_EGREP='/bin/grep -E'
-ac_cv_path_GREP=/bin/grep
-ac_cv_path_install='/usr/bin/install -c'
-ac_cv_prog_AR=ar
-ac_cv_prog_AWK=gawk
-ac_cv_prog_CPP='gcc -E'
-ac_cv_prog_STRIP=strip
-ac_cv_prog_ac_ct_CC=gcc
-ac_cv_prog_ac_ct_RANLIB=ranlib
-ac_cv_prog_cc_c89=
-ac_cv_prog_cc_c99=
-ac_cv_prog_cc_g=yes
-ac_cv_prog_cc_gcc_c_o=yes
-ac_cv_prog_have_mktemp_command=yes
-ac_cv_prog_make_make_set=yes
-ac_cv_sizeof_int=4
-ac_cv_sizeof_long=8
-ac_cv_sizeof_short=2
-ac_cv_type_ssize_t=yes
-gcc_cv_as=/usr/bin/as
-gcc_cv_as_gas_srcdir=./gas
-gcc_cv_c__bool=yes
-gcc_cv_decl_char_bit=yes
-gcc_cv_gas_major_version=
-gcc_cv_gas_minor_version=
-gcc_cv_have_decl_abort=no
-gcc_cv_have_decl_calloc=no
-gcc_cv_have_decl_clock=no
-gcc_cv_have_decl_errno=no
-gcc_cv_have_decl_free=no
-gcc_cv_have_decl_getenv=no
-gcc_cv_have_decl_malloc=no
-gcc_cv_have_decl_realloc=no
-gcc_cv_have_decl_strsignal=no
-gcc_cv_header_string=yes
-gcc_cv_mkdir_takes_one_arg=no
-gcc_cv_nm=nm
-gcc_cv_prog_LN=ln
-gcc_cv_prog_LN_S='ln -s'
-
-## ----------------- ##
-## Output variables. ##
-## ----------------- ##
-
-AR='ar'
-AWK='gawk'
-CC='gcc'
-CFLAGS=' -g -O2'
-CPP='gcc -E'
-CPPFLAGS=''
-DEFS='-DHAVE_CONFIG_H'
-ECHO_C=''
-ECHO_N='-n'
-ECHO_T=''
-EGREP='/bin/grep -E'
-EXEEXT=''
-GREP='/bin/grep'
-INSTALL='/usr/bin/install -c'
-INSTALL_DATA='${INSTALL} -m 644'
-INSTALL_PROGRAM='${INSTALL}'
-LDFLAGS=''
-LIBOBJS=''
-LIBS=''
-LN='ln'
-LN_S='ln -s'
-LTLIBOBJS=''
-MAINT='#'
-NO_MINUS_C_MINUS_O=''
-OBJEXT='o'
-OUTPUT_OPTION='-o $@'
-PACKAGE='sdcc'
-PACKAGE_BUGREPORT=''
-PACKAGE_NAME=''
-PACKAGE_STRING=''
-PACKAGE_TARNAME=''
-PACKAGE_URL=''
-PACKAGE_VERSION=''
-PATH_SEPARATOR=':'
-RANLIB='ranlib'
-SET_MAKE=''
-SHELL='/bin/bash'
-STRIP='strip'
-VERSION='const'
-WALL_FLAG='-Wall'
-ac_ct_CC='gcc'
-all_stagestuff=''
-bindir='${exec_prefix}/bin'
-build_alias=''
-build_canonical=''
-build_exeext=''
-build_install_headers_dir='install-headers-tar'
-build_xm_defines=''
-build_xm_file='auto-host.h ansidecl.h /.h defaults.h'
-build_xm_file_list=''
-c_target_objs=''
-check_languages=''
-const char pkgversion_string[] = PKGVERSION;'
-datadir='${datarootdir}'
-datarootdir='${prefix}/share'
-dep_host_xmake_file=''
-dep_tmake_file=''
-docdir='${datarootdir}/doc/${PACKAGE}'
-dvidir='${docdir}'
-exec_prefix='${prefix}'
-extra_c_flags=''
-extra_headers_list=''
-extra_objs=' '
-extra_parts=''
-extra_passes=''
-extra_programs=''
-gcc_config_arguments=''
-gcc_version='const'
-gcc_version_full='const char version_string[] = BASEVER DATESTAMP DEVPHASE VERSUFFIX;
-gcc_version_trigger='./version.c'
-have_mktemp_command='yes'
-host_alias=''
-host_canonical=''
-host_exeext=''
-host_extra_gcc_objs=''
-htmldir='${docdir}'
-includedir='${prefix}/include'
-infodir='${datarootdir}/info'
-install=''
-lang_tree_files=''
-libdir='${exec_prefix}/lib'
-libexecdir='${exec_prefix}/libexec'
-local_prefix='/usr/local'
-localedir='${datarootdir}/locale'
-localstatedir='${prefix}/var'
-mandir='${datarootdir}/man'
-manext='.1'
-md_file='/.md'
-objdir='/home/xavier/sdcc_gas/support/cpp'
-objext='.o'
-oldincludedir='/usr/include'
-out_file='/.c'
-out_object_file='.c.o'
-pdfdir='${docdir}'
-prefix='/usr/local'
-program_transform_name='s,x,x,'
-psdir='${docdir}'
-runstatedir='${localstatedir}/run'
-sbindir='${exec_prefix}/sbin'
-sharedstatedir='${prefix}/com'
-symbolic_link='ln -s'
-sysconfdir='${prefix}/etc'
-target_alias=''
-target_subdir=''
-thread_file=''
-warn_cflags='$(GCC_WARN_CFLAGS)'
-
-## ----------- ##
-## confdefs.h. ##
-## ----------- ##
-
-/* confdefs.h */
-#define PACKAGE_NAME ""
-#define PACKAGE_TARNAME ""
-#define PACKAGE_VERSION ""
-#define PACKAGE_STRING ""
-#define PACKAGE_BUGREPORT ""
-#define PACKAGE_URL ""
-#define HAVE__BOOL 1
-#define SIZEOF_SHORT 2
-#define SIZEOF_INT 4
-#define SIZEOF_LONG 8
-#define STDC_HEADERS 1
-#define TIME_WITH_SYS_TIME 1
-#define HAVE_STDBOOL_H 1
-#define STRING_WITH_STRINGS 1
-#define HAVE_SYS_WAIT_H 1
-#define HAVE_SYS_TYPES_H 1
-#define HAVE_SYS_STAT_H 1
-#define HAVE_STDLIB_H 1
-#define HAVE_STRING_H 1
-#define HAVE_MEMORY_H 1
-#define HAVE_STRINGS_H 1
-#define HAVE_INTTYPES_H 1
-#define HAVE_STDINT_H 1
-#define HAVE_UNISTD_H 1
-#define HAVE_LIMITS_H 1
-#define HAVE_STDDEF_H 1
-#define HAVE_STRING_H 1
-#define HAVE_STRINGS_H 1
-#define HAVE_STDLIB_H 1
-#define HAVE_TIME_H 1
-#define HAVE_FCNTL_H 1
-#define HAVE_UNISTD_H 1
-#define HAVE_SYS_FILE_H 1
-#define HAVE_SYS_TIME_H 1
-#define HAVE_SYS_PARAM_H 1
-#define HAVE_SYS_STAT_H 1
-#define HAVE_MALLOC_H 1
-#define HAVE_STRINGIZE 1
-#define HAVE_CLOCK 1
-#define HAVE_STRSIGNAL 1
-#define HAVE_STRCHR 1
-#define HAVE_STRRCHR 1
-#define HAVE_LSTAT 1
-#define HAVE_GETPAGESIZE 1
-#define HAVE_MMAP_DEV_ZERO 1
-#define HAVE_MMAP_ANON 1
-#define HAVE_MMAP_FILE 1
-#define HAVE_DECL_GETENV 0
-#define HAVE_DECL_ABORT 0
-#define HAVE_DECL_STRSIGNAL 0
-#define HAVE_DECL_ERRNO 0
-#define HAVE_DECL_MALLOC 0
-#define HAVE_DECL_REALLOC 0
-#define HAVE_DECL_CALLOC 0
-#define HAVE_DECL_FREE 0
-#define HAVE_DECL_CLOCK 0
-#define PACKAGE "sdcc"
-#define VERSION "const"
-
-configure: exit 0
diff --git a/support/cpp/config.status b/support/cpp/config.status
deleted file mode 100755
index d23b8a0..0000000
--- a/support/cpp/config.status
+++ /dev/null
@@ -1,1148 +0,0 @@
-#! /bin/bash
-# Generated by configure.
-# Run this file to recreate the current configuration.
-# Compiler output produced by configure, useful for debugging
-# configure, is in config.log if it exists.
-
-debug=false
-ac_cs_recheck=false
-ac_cs_silent=false
-
-SHELL=${CONFIG_SHELL-/bin/bash}
-export SHELL
-## -------------------- ##
-## M4sh Initialization. ##
-## -------------------- ##
-
-# Be more Bourne compatible
-DUALCASE=1; export DUALCASE # for MKS sh
-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
- emulate sh
- NULLCMD=:
- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
- # is contrary to our usage. Disable this feature.
- alias -g '${1+"$@"}'='"$@"'
- setopt NO_GLOB_SUBST
-else
- case `(set -o) 2>/dev/null` in #(
- *posix*) :
- set -o posix ;; #(
- *) :
- ;;
-esac
-fi
-
-
-as_nl='
-'
-export as_nl
-# Printing a long string crashes Solaris 7 /usr/bin/printf.
-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
-# Prefer a ksh shell builtin over an external printf program on Solaris,
-# but without wasting forks for bash or zsh.
-if test -z "$BASH_VERSION$ZSH_VERSION" \
- && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='print -r --'
- as_echo_n='print -rn --'
-elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='printf %s\n'
- as_echo_n='printf %s'
-else
- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
- as_echo_n='/usr/ucb/echo -n'
- else
- as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
- as_echo_n_body='eval
- arg=$1;
- case $arg in #(
- *"$as_nl"*)
- expr "X$arg" : "X\\(.*\\)$as_nl";
- arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
- esac;
- expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
- '
- export as_echo_n_body
- as_echo_n='sh -c $as_echo_n_body as_echo'
- fi
- export as_echo_body
- as_echo='sh -c $as_echo_body as_echo'
-fi
-
-# The user is always right.
-if test "${PATH_SEPARATOR+set}" != set; then
- PATH_SEPARATOR=:
- (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
- (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
- PATH_SEPARATOR=';'
- }
-fi
-
-
-# IFS
-# We need space, tab and new line, in precisely that order. Quoting is
-# there to prevent editors from complaining about space-tab.
-# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-# splitting by setting IFS to empty value.)
-IFS=" "" $as_nl"
-
-# Find who we are. Look in the path if we contain no directory separator.
-as_myself=
-case $0 in #((
- *[\\/]* ) as_myself=$0 ;;
- *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- done
-IFS=$as_save_IFS
-
- ;;
-esac
-# We did not find ourselves, most probably we were run as `sh COMMAND'
-# in which case we are not to be found in the path.
-if test "x$as_myself" = x; then
- as_myself=$0
-fi
-if test ! -f "$as_myself"; then
- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
- exit 1
-fi
-
-# Unset variables that we do not need and which cause bugs (e.g. in
-# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
-# suppresses any "Segmentation fault" message there. '((' could
-# trigger a bug in pdksh 5.2.14.
-for as_var in BASH_ENV ENV MAIL MAILPATH
-do eval test x\${$as_var+set} = xset \
- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
-done
-PS1='$ '
-PS2='> '
-PS4='+ '
-
-# NLS nuisances.
-LC_ALL=C
-export LC_ALL
-LANGUAGE=C
-export LANGUAGE
-
-# CDPATH.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-
-# as_fn_error STATUS ERROR [LINENO LOG_FD]
-# ----------------------------------------
-# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with STATUS, using 1 if that was 0.
-as_fn_error ()
-{
- as_status=$1; test $as_status -eq 0 && as_status=1
- if test "$4"; then
- as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
- fi
- $as_echo "$as_me: error: $2" >&2
- as_fn_exit $as_status
-} # as_fn_error
-
-
-# as_fn_set_status STATUS
-# -----------------------
-# Set $? to STATUS, without forking.
-as_fn_set_status ()
-{
- return $1
-} # as_fn_set_status
-
-# as_fn_exit STATUS
-# -----------------
-# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
-as_fn_exit ()
-{
- set +e
- as_fn_set_status $1
- exit $1
-} # as_fn_exit
-
-# as_fn_unset VAR
-# ---------------
-# Portably unset VAR.
-as_fn_unset ()
-{
- { eval $1=; unset $1;}
-}
-as_unset=as_fn_unset
-# as_fn_append VAR VALUE
-# ----------------------
-# Append the text in VALUE to the end of the definition contained in VAR. Take
-# advantage of any shell optimizations that allow amortized linear growth over
-# repeated appends, instead of the typical quadratic growth present in naive
-# implementations.
-if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
- eval 'as_fn_append ()
- {
- eval $1+=\$2
- }'
-else
- as_fn_append ()
- {
- eval $1=\$$1\$2
- }
-fi # as_fn_append
-
-# as_fn_arith ARG...
-# ------------------
-# Perform arithmetic evaluation on the ARGs, and store the result in the
-# global $as_val. Take advantage of shells that can avoid forks. The arguments
-# must be portable across $(()) and expr.
-if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
- eval 'as_fn_arith ()
- {
- as_val=$(( $* ))
- }'
-else
- as_fn_arith ()
- {
- as_val=`expr "$@" || test $? -eq 1`
- }
-fi # as_fn_arith
-
-
-if expr a : '\(a\)' >/dev/null 2>&1 &&
- test "X`expr 00001 : '.*\(...\)'`" = X001; then
- as_expr=expr
-else
- as_expr=false
-fi
-
-if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
- as_basename=basename
-else
- as_basename=false
-fi
-
-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
- as_dirname=dirname
-else
- as_dirname=false
-fi
-
-as_me=`$as_basename -- "$0" ||
-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
- X"$0" : 'X\(//\)$' \| \
- X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X/"$0" |
- sed '/^.*\/\([^/][^/]*\)\/*$/{
- s//\1/
- q
- }
- /^X\/\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\/\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
-
-# Avoid depending upon Character Ranges.
-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-as_cr_digits='0123456789'
-as_cr_alnum=$as_cr_Letters$as_cr_digits
-
-ECHO_C= ECHO_N= ECHO_T=
-case `echo -n x` in #(((((
--n*)
- case `echo 'xy\c'` in
- *c*) ECHO_T=' ';; # ECHO_T is single tab character.
- xy) ECHO_C='\c';;
- *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
- ECHO_T=' ';;
- esac;;
-*)
- ECHO_N='-n';;
-esac
-
-rm -f conf$$ conf$$.exe conf$$.file
-if test -d conf$$.dir; then
- rm -f conf$$.dir/conf$$.file
-else
- rm -f conf$$.dir
- mkdir conf$$.dir 2>/dev/null
-fi
-if (echo >conf$$.file) 2>/dev/null; then
- if ln -s conf$$.file conf$$ 2>/dev/null; then
- as_ln_s='ln -s'
- # ... but there are two gotchas:
- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
- # In both cases, we have to default to `cp -pR'.
- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
- as_ln_s='cp -pR'
- elif ln conf$$.file conf$$ 2>/dev/null; then
- as_ln_s=ln
- else
- as_ln_s='cp -pR'
- fi
-else
- as_ln_s='cp -pR'
-fi
-rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-rmdir conf$$.dir 2>/dev/null
-
-
-# as_fn_mkdir_p
-# -------------
-# Create "$as_dir" as a directory, including parents if necessary.
-as_fn_mkdir_p ()
-{
-
- case $as_dir in #(
- -*) as_dir=./$as_dir;;
- esac
- test -d "$as_dir" || eval $as_mkdir_p || {
- as_dirs=
- while :; do
- case $as_dir in #(
- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
- *) as_qdir=$as_dir;;
- esac
- as_dirs="'$as_qdir' $as_dirs"
- as_dir=`$as_dirname -- "$as_dir" ||
-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$as_dir" : 'X\(//\)[^/]' \| \
- X"$as_dir" : 'X\(//\)$' \| \
- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$as_dir" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- test -d "$as_dir" && break
- done
- test -z "$as_dirs" || eval "mkdir $as_dirs"
- } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
-
-
-} # as_fn_mkdir_p
-if mkdir -p . 2>/dev/null; then
- as_mkdir_p='mkdir -p "$as_dir"'
-else
- test -d ./-p && rmdir ./-p
- as_mkdir_p=false
-fi
-
-
-# as_fn_executable_p FILE
-# -----------------------
-# Test if FILE is an executable regular file.
-as_fn_executable_p ()
-{
- test -f "$1" && test -x "$1"
-} # as_fn_executable_p
-as_test_x='test -x'
-as_executable_p=as_fn_executable_p
-
-# Sed expression to map a string onto a valid CPP name.
-as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-
-# Sed expression to map a string onto a valid variable name.
-as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-
-
-exec 6>&1
-## ----------------------------------- ##
-## Main body of $CONFIG_STATUS script. ##
-## ----------------------------------- ##
-# Save the log message, to keep $0 and so on meaningful, and to
-# report actual input values of CONFIG_FILES etc. instead of their
-# values after options handling.
-ac_log="
-This file was extended by $as_me, which was
-generated by GNU Autoconf 2.69. Invocation command line was
-
- CONFIG_FILES = $CONFIG_FILES
- CONFIG_HEADERS = $CONFIG_HEADERS
- CONFIG_LINKS = $CONFIG_LINKS
- CONFIG_COMMANDS = $CONFIG_COMMANDS
- $ $0 $@
-
-on `(hostname || uname -n) 2>/dev/null | sed 1q`
-"
-
-# Files that config.status was made for.
-config_files=" Makefile"
-config_headers=" auto-host.h:config.in"
-config_commands=" default"
-
-ac_cs_usage="\
-\`$as_me' instantiates files and other configuration actions
-from templates according to the current configuration. Unless the files
-and actions are specified as TAGs, all are instantiated by default.
-
-Usage: $0 [OPTION]... [TAG]...
-
- -h, --help print this help, then exit
- -V, --version print version number and configuration settings, then exit
- --config print configuration, then exit
- -q, --quiet, --silent
- do not print progress messages
- -d, --debug don't remove temporary files
- --recheck update $as_me by reconfiguring in the same conditions
- --file=FILE[:TEMPLATE]
- instantiate the configuration file FILE
- --header=FILE[:TEMPLATE]
- instantiate the configuration header FILE
-
-Configuration files:
-$config_files
-
-Configuration headers:
-$config_headers
-
-Configuration commands:
-$config_commands
-
-Report bugs to the package provider."
-
-ac_cs_config="'--disable-option-checking' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' 'docdir=\${datarootdir}/doc/\${PACKAGE}' '--cache-file=/dev/null' '--srcdir=.'"
-ac_cs_version="\
-config.status
-configured by ./configure, generated by GNU Autoconf 2.69,
- with options \"$ac_cs_config\"
-
-Copyright (C) 2012 Free Software Foundation, Inc.
-This config.status script is free software; the Free Software Foundation
-gives unlimited permission to copy, distribute and modify it."
-
-ac_pwd='/home/xavier/sdcc_gas/support/cpp'
-srcdir='.'
-AWK='gawk'
-test -n "$AWK" || AWK=awk
-# The default lists apply if the user does not specify any file.
-ac_need_defaults=:
-while test $# != 0
-do
- case $1 in
- --*=?*)
- ac_option=`expr "X$1" : 'X\([^=]*\)='`
- ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
- ac_shift=:
- ;;
- --*=)
- ac_option=`expr "X$1" : 'X\([^=]*\)='`
- ac_optarg=
- ac_shift=:
- ;;
- *)
- ac_option=$1
- ac_optarg=$2
- ac_shift=shift
- ;;
- esac
-
- case $ac_option in
- # Handling of the options.
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
- ac_cs_recheck=: ;;
- --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
- $as_echo "$ac_cs_version"; exit ;;
- --config | --confi | --conf | --con | --co | --c )
- $as_echo "$ac_cs_config"; exit ;;
- --debug | --debu | --deb | --de | --d | -d )
- debug=: ;;
- --file | --fil | --fi | --f )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- '') as_fn_error $? "missing file argument" ;;
- esac
- as_fn_append CONFIG_FILES " '$ac_optarg'"
- ac_need_defaults=false;;
- --header | --heade | --head | --hea )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- esac
- as_fn_append CONFIG_HEADERS " '$ac_optarg'"
- ac_need_defaults=false;;
- --he | --h)
- # Conflict between --help and --header
- as_fn_error $? "ambiguous option: \`$1'
-Try \`$0 --help' for more information.";;
- --help | --hel | -h )
- $as_echo "$ac_cs_usage"; exit ;;
- -q | -quiet | --quiet | --quie | --qui | --qu | --q \
- | -silent | --silent | --silen | --sile | --sil | --si | --s)
- ac_cs_silent=: ;;
-
- # This is an error.
- -*) as_fn_error $? "unrecognized option: \`$1'
-Try \`$0 --help' for more information." ;;
-
- *) as_fn_append ac_config_targets " $1"
- ac_need_defaults=false ;;
-
- esac
- shift
-done
-
-ac_configure_extra_args=
-
-if $ac_cs_silent; then
- exec 6>/dev/null
- ac_configure_extra_args="$ac_configure_extra_args --silent"
-fi
-
-if $ac_cs_recheck; then
- set X /bin/bash './configure' '--disable-option-checking' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' 'docdir=${datarootdir}/doc/${PACKAGE}' '--cache-file=/dev/null' '--srcdir=.' $ac_configure_extra_args --no-create --no-recursion
- shift
- $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
- CONFIG_SHELL='/bin/bash'
- export CONFIG_SHELL
- exec "$@"
-fi
-
-exec 5>>config.log
-{
- echo
- sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
-## Running $as_me. ##
-_ASBOX
- $as_echo "$ac_log"
-} >&5
-
-#
-# INIT-COMMANDS
-#
-
-host=''
-build=''
-target=''
-target_alias=''
-srcdir='.'
-symbolic_link='ln -s'
-program_transform_set=''
-program_transform_name='s,x,x,'
-dep_host_xmake_file=''
-host_xmake_file=''
-dep_tmake_file=''
-tmake_file='/t- t-install-cpp'
-thread_file=''
-gcc_config_arguments=''
-gcc_version='const'
-gcc_version_full='const char version_string[] = BASEVER DATESTAMP DEVPHASE VERSUFFIX;
-const char pkgversion_string[] = PKGVERSION;'
-gcc_version_trigger='./version.c'
-local_prefix='/usr/local'
-build_install_headers_dir='install-headers-tar'
-build_exeext=''
-host_exeext=''
-out_file='/.c'
-gdb_needs_out_file_path=''
-SET_MAKE=''
-target_list=''
-target_overrides=''
-host_overrides=''
-cross_defines=''
-cross_overrides=''
-build_overrides=''
-cpp_install_dir=''
-
-
-
-# Handling of arguments.
-for ac_config_target in $ac_config_targets
-do
- case $ac_config_target in
- "auto-host.h") CONFIG_HEADERS="$CONFIG_HEADERS auto-host.h:config.in" ;;
- "$all_outputs") CONFIG_FILES="$CONFIG_FILES $all_outputs" ;;
- "default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
-
- *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
- esac
-done
-
-
-# If the user did not use the arguments to specify the items to instantiate,
-# then the envvar interface is used. Set only those that are not.
-# We use the long form for the default assignment because of an extremely
-# bizarre bug on SunOS 4.1.3.
-if $ac_need_defaults; then
- test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
- test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
- test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
-fi
-
-# Have a temporary directory for convenience. Make it in the build tree
-# simply because there is no reason against having it here, and in addition,
-# creating and moving files from /tmp can sometimes cause problems.
-# Hook for its removal unless debugging.
-# Note that there is a small window in which the directory will not be cleaned:
-# after its creation but before its name has been assigned to `$tmp'.
-$debug ||
-{
- tmp= ac_tmp=
- trap 'exit_status=$?
- : "${ac_tmp:=$tmp}"
- { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
-' 0
- trap 'as_fn_exit 1' 1 2 13 15
-}
-# Create a (secure) tmp directory for tmp files.
-
-{
- tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
- test -d "$tmp"
-} ||
-{
- tmp=./conf$$-$RANDOM
- (umask 077 && mkdir "$tmp")
-} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
-ac_tmp=$tmp
-
-# Set up the scripts for CONFIG_FILES section.
-# No need to generate them if there are no CONFIG_FILES.
-# This happens for instance with `./config.status config.h'.
-if test -n "$CONFIG_FILES"; then
-
-
-ac_cr=`echo X | tr X '\015'`
-# On cygwin, bash can eat \r inside `` if the user requested igncr.
-# But we know of no other shell where ac_cr would be empty at this
-# point, so we can use a bashism as a fallback.
-if test "x$ac_cr" = x; then
- eval ac_cr=\$\'\\r\'
-fi
-ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
- ac_cs_awk_cr='\\r'
-else
- ac_cs_awk_cr=$ac_cr
-fi
-
-echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
-cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
-S["LTLIBOBJS"]=""
-S["LIBOBJS"]=""
-S["c_target_objs"]=""
-S["thread_file"]=""
-S["symbolic_link"]="ln -s"
-S["out_object_file"]=".c.o"
-S["out_file"]="/.c"
-S["md_file"]="/.md"
-S["local_prefix"]="/usr/local"
-S["lang_tree_files"]=""
-S["install"]=""
-S["host_extra_gcc_objs"]=""
-S["host_exeext"]=""
-S["gcc_version_trigger"]="./version.c"
-S["gcc_version_full"]="const char version_string[] = BASEVER DATESTAMP DEVPHASE VERSUFFIX;\n"\
-"const char pkgversion_string[] = PKGVERSION;"
-S["gcc_version"]="const"
-S["gcc_config_arguments"]=""
-S["extra_programs"]=""
-S["extra_passes"]=""
-S["extra_parts"]=""
-S["extra_objs"]=" "
-S["extra_headers_list"]=""
-S["extra_c_flags"]=""
-S["dep_tmake_file"]=""
-S["dep_host_xmake_file"]=""
-S["check_languages"]=""
-S["build_xm_defines"]=""
-S["build_xm_file"]="auto-host.h ansidecl.h /.h defaults.h"
-S["build_xm_file_list"]=""
-S["build_install_headers_dir"]="install-headers-tar"
-S["build_exeext"]=""
-S["all_stagestuff"]=""
-S["WALL_FLAG"]="-Wall"
-S["objdir"]="/home/xavier/sdcc_gas/support/cpp"
-S["target_subdir"]=""
-S["host_canonical"]=""
-S["build_canonical"]=""
-S["MAINT"]="#"
-S["VERSION"]="const"
-S["PACKAGE"]="sdcc"
-S["objext"]=".o"
-S["manext"]=".1"
-S["AR"]="ar"
-S["STRIP"]="strip"
-S["have_mktemp_command"]="yes"
-S["INSTALL_DATA"]="${INSTALL} -m 644"
-S["INSTALL_PROGRAM"]="${INSTALL}"
-S["INSTALL"]="/usr/bin/install -c"
-S["RANLIB"]="ranlib"
-S["LN_S"]="ln -s"
-S["LN"]="ln"
-S["AWK"]="gawk"
-S["SET_MAKE"]=""
-S["warn_cflags"]="$(GCC_WARN_CFLAGS)"
-S["EGREP"]="/bin/grep -E"
-S["GREP"]="/bin/grep"
-S["CPP"]="gcc -E"
-S["OUTPUT_OPTION"]="-o $@"
-S["NO_MINUS_C_MINUS_O"]=""
-S["OBJEXT"]="o"
-S["EXEEXT"]=""
-S["ac_ct_CC"]="gcc"
-S["CPPFLAGS"]=""
-S["LDFLAGS"]=""
-S["CFLAGS"]=" -g -O2"
-S["CC"]="gcc"
-S["target_alias"]=""
-S["host_alias"]=""
-S["build_alias"]=""
-S["LIBS"]=""
-S["ECHO_T"]=""
-S["ECHO_N"]="-n"
-S["ECHO_C"]=""
-S["DEFS"]="-DHAVE_CONFIG_H"
-S["mandir"]="${datarootdir}/man"
-S["localedir"]="${datarootdir}/locale"
-S["libdir"]="${exec_prefix}/lib"
-S["psdir"]="${docdir}"
-S["pdfdir"]="${docdir}"
-S["dvidir"]="${docdir}"
-S["htmldir"]="${docdir}"
-S["infodir"]="${datarootdir}/info"
-S["docdir"]="${datarootdir}/doc/${PACKAGE}"
-S["oldincludedir"]="/usr/include"
-S["includedir"]="${prefix}/include"
-S["runstatedir"]="${localstatedir}/run"
-S["localstatedir"]="${prefix}/var"
-S["sharedstatedir"]="${prefix}/com"
-S["sysconfdir"]="${prefix}/etc"
-S["datadir"]="${datarootdir}"
-S["datarootdir"]="${prefix}/share"
-S["libexecdir"]="${exec_prefix}/libexec"
-S["sbindir"]="${exec_prefix}/sbin"
-S["bindir"]="${exec_prefix}/bin"
-S["program_transform_name"]="s,x,x,"
-S["prefix"]="/usr/local"
-S["exec_prefix"]="${prefix}"
-S["PACKAGE_URL"]=""
-S["PACKAGE_BUGREPORT"]=""
-S["PACKAGE_STRING"]=""
-S["PACKAGE_VERSION"]=""
-S["PACKAGE_TARNAME"]=""
-S["PACKAGE_NAME"]=""
-S["PATH_SEPARATOR"]=":"
-S["SHELL"]="/bin/bash"
-_ACAWK
-cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
- for (key in S) S_is_set[key] = 1
- FS = ""
-
-}
-{
- line = $ 0
- nfields = split(line, field, "@")
- substed = 0
- len = length(field[1])
- for (i = 2; i < nfields; i++) {
- key = field[i]
- keylen = length(key)
- if (S_is_set[key]) {
- value = S[key]
- line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
- len += length(value) + length(field[++i])
- substed = 1
- } else
- len += 1 + keylen
- }
-
- print line
-}
-
-_ACAWK
-if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
- sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
-else
- cat
-fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
- || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
-fi # test -n "$CONFIG_FILES"
-
-# Set up the scripts for CONFIG_HEADERS section.
-# No need to generate them if there are no CONFIG_HEADERS.
-# This happens for instance with `./config.status Makefile'.
-if test -n "$CONFIG_HEADERS"; then
-cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
-BEGIN {
-D["PACKAGE_NAME"]=" \"\""
-D["PACKAGE_TARNAME"]=" \"\""
-D["PACKAGE_VERSION"]=" \"\""
-D["PACKAGE_STRING"]=" \"\""
-D["PACKAGE_BUGREPORT"]=" \"\""
-D["PACKAGE_URL"]=" \"\""
-D["HAVE__BOOL"]=" 1"
-D["SIZEOF_SHORT"]=" 2"
-D["SIZEOF_INT"]=" 4"
-D["SIZEOF_LONG"]=" 8"
-D["STDC_HEADERS"]=" 1"
-D["TIME_WITH_SYS_TIME"]=" 1"
-D["HAVE_STDBOOL_H"]=" 1"
-D["STRING_WITH_STRINGS"]=" 1"
-D["HAVE_SYS_WAIT_H"]=" 1"
-D["HAVE_SYS_TYPES_H"]=" 1"
-D["HAVE_SYS_STAT_H"]=" 1"
-D["HAVE_STDLIB_H"]=" 1"
-D["HAVE_STRING_H"]=" 1"
-D["HAVE_MEMORY_H"]=" 1"
-D["HAVE_STRINGS_H"]=" 1"
-D["HAVE_INTTYPES_H"]=" 1"
-D["HAVE_STDINT_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["HAVE_LIMITS_H"]=" 1"
-D["HAVE_STDDEF_H"]=" 1"
-D["HAVE_STRING_H"]=" 1"
-D["HAVE_STRINGS_H"]=" 1"
-D["HAVE_STDLIB_H"]=" 1"
-D["HAVE_TIME_H"]=" 1"
-D["HAVE_FCNTL_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["HAVE_SYS_FILE_H"]=" 1"
-D["HAVE_SYS_TIME_H"]=" 1"
-D["HAVE_SYS_PARAM_H"]=" 1"
-D["HAVE_SYS_STAT_H"]=" 1"
-D["HAVE_MALLOC_H"]=" 1"
-D["HAVE_STRINGIZE"]=" 1"
-D["HAVE_CLOCK"]=" 1"
-D["HAVE_STRSIGNAL"]=" 1"
-D["HAVE_STRCHR"]=" 1"
-D["HAVE_STRRCHR"]=" 1"
-D["HAVE_LSTAT"]=" 1"
-D["HAVE_GETPAGESIZE"]=" 1"
-D["HAVE_MMAP_DEV_ZERO"]=" 1"
-D["HAVE_MMAP_ANON"]=" 1"
-D["HAVE_MMAP_FILE"]=" 1"
-D["HAVE_DECL_GETENV"]=" 0"
-D["HAVE_DECL_ABORT"]=" 0"
-D["HAVE_DECL_STRSIGNAL"]=" 0"
-D["HAVE_DECL_ERRNO"]=" 0"
-D["HAVE_DECL_MALLOC"]=" 0"
-D["HAVE_DECL_REALLOC"]=" 0"
-D["HAVE_DECL_CALLOC"]=" 0"
-D["HAVE_DECL_FREE"]=" 0"
-D["HAVE_DECL_CLOCK"]=" 0"
-D["PACKAGE"]=" \"sdcc\""
-D["VERSION"]=" \"const\""
- for (key in D) D_is_set[key] = 1
- FS = ""
-}
-/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
- line = $ 0
- split(line, arg, " ")
- if (arg[1] == "#") {
- defundef = arg[2]
- mac1 = arg[3]
- } else {
- defundef = substr(arg[1], 2)
- mac1 = arg[2]
- }
- split(mac1, mac2, "(") #)
- macro = mac2[1]
- prefix = substr(line, 1, index(line, defundef) - 1)
- if (D_is_set[macro]) {
- # Preserve the white space surrounding the "#".
- print prefix "define", macro P[macro] D[macro]
- next
- } else {
- # Replace #undef with comments. This is necessary, for example,
- # in the case of _POSIX_SOURCE, which is predefined and required
- # on some systems where configure will not decide to define it.
- if (defundef == "undef") {
- print "/*", prefix defundef, macro, "*/"
- next
- }
- }
-}
-{ print }
-_ACAWK
- as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
-fi # test -n "$CONFIG_HEADERS"
-
-
-eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
-shift
-for ac_tag
-do
- case $ac_tag in
- :[FHLC]) ac_mode=$ac_tag; continue;;
- esac
- case $ac_mode$ac_tag in
- :[FHL]*:*);;
- :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
- :[FH]-) ac_tag=-:-;;
- :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
- esac
- ac_save_IFS=$IFS
- IFS=:
- set x $ac_tag
- IFS=$ac_save_IFS
- shift
- ac_file=$1
- shift
-
- case $ac_mode in
- :L) ac_source=$1;;
- :[FH])
- ac_file_inputs=
- for ac_f
- do
- case $ac_f in
- -) ac_f="$ac_tmp/stdin";;
- *) # Look for the file first in the build tree, then in the source tree
- # (if the path is not absolute). The absolute path cannot be DOS-style,
- # because $ac_f cannot contain `:'.
- test -f "$ac_f" ||
- case $ac_f in
- [\\/$]*) false;;
- *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
- esac ||
- as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
- esac
- case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
- as_fn_append ac_file_inputs " '$ac_f'"
- done
-
- # Let's still pretend it is `configure' which instantiates (i.e., don't
- # use $as_me), people would be surprised to read:
- # /* config.h. Generated by config.status. */
- configure_input='Generated from '`
- $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
- `' by configure.'
- if test x"$ac_file" != x-; then
- configure_input="$ac_file. $configure_input"
- { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
-$as_echo "$as_me: creating $ac_file" >&6;}
- fi
- # Neutralize special characters interpreted by sed in replacement strings.
- case $configure_input in #(
- *\&* | *\|* | *\\* )
- ac_sed_conf_input=`$as_echo "$configure_input" |
- sed 's/[\\\\&|]/\\\\&/g'`;; #(
- *) ac_sed_conf_input=$configure_input;;
- esac
-
- case $ac_tag in
- *:-:* | *:-) cat >"$ac_tmp/stdin" \
- || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
- esac
- ;;
- esac
-
- ac_dir=`$as_dirname -- "$ac_file" ||
-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$ac_file" : 'X\(//\)[^/]' \| \
- X"$ac_file" : 'X\(//\)$' \| \
- X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$ac_file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- as_dir="$ac_dir"; as_fn_mkdir_p
- ac_builddir=.
-
-case "$ac_dir" in
-.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-*)
- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
- # A ".." for each directory in $ac_dir_suffix.
- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
- case $ac_top_builddir_sub in
- "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
- *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
- esac ;;
-esac
-ac_abs_top_builddir=$ac_pwd
-ac_abs_builddir=$ac_pwd$ac_dir_suffix
-# for backward compatibility:
-ac_top_builddir=$ac_top_build_prefix
-
-case $srcdir in
- .) # We are building in place.
- ac_srcdir=.
- ac_top_srcdir=$ac_top_builddir_sub
- ac_abs_top_srcdir=$ac_pwd ;;
- [\\/]* | ?:[\\/]* ) # Absolute name.
- ac_srcdir=$srcdir$ac_dir_suffix;
- ac_top_srcdir=$srcdir
- ac_abs_top_srcdir=$srcdir ;;
- *) # Relative name.
- ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
- ac_top_srcdir=$ac_top_build_prefix$srcdir
- ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-esac
-ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-
-
- case $ac_mode in
- :F)
- #
- # CONFIG_FILE
- #
-
-# If the template does not know about datarootdir, expand it.
-# FIXME: This hack should be removed a few years after 2.60.
-ac_datarootdir_hack=; ac_datarootdir_seen=
-ac_sed_dataroot='
-/datarootdir/ {
- p
- q
-}
-/@datadir@/p
-/@docdir@/p
-/@infodir@/p
-/@localedir@/p
-/@mandir@/p'
-case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
-*datarootdir*) ac_datarootdir_seen=yes;;
-*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
-$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
- ac_datarootdir_hack='
- s&@datadir@&${datarootdir}&g
- s&@docdir@&${datarootdir}/doc/${PACKAGE}&g
- s&@infodir@&${datarootdir}/info&g
- s&@localedir@&${datarootdir}/locale&g
- s&@mandir@&${datarootdir}/man&g
- s&\${datarootdir}&${prefix}/share&g' ;;
-esac
-ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{
-h
-s///
-s/^/:/
-s/[ ]*$/:/
-s/:\$(srcdir):/:/g
-s/:\${srcdir}:/:/g
-s/:@srcdir@:/:/g
-s/^:*//
-s/:*$//
-x
-s/\(=[ ]*\).*/\1/
-G
-s/\n//
-s/^[^=]*=[ ]*$//
-}
-
-:t
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-s|@configure_input@|$ac_sed_conf_input|;t t
-s&@top_builddir@&$ac_top_builddir_sub&;t t
-s&@top_build_prefix@&$ac_top_build_prefix&;t t
-s&@srcdir@&$ac_srcdir&;t t
-s&@abs_srcdir@&$ac_abs_srcdir&;t t
-s&@top_srcdir@&$ac_top_srcdir&;t t
-s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
-s&@builddir@&$ac_builddir&;t t
-s&@abs_builddir@&$ac_abs_builddir&;t t
-s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
-$ac_datarootdir_hack
-"
-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
- >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
-
-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
- { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
- "$ac_tmp/out"`; test -z "$ac_out"; } &&
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined" >&5
-$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined" >&2;}
-
- rm -f "$ac_tmp/stdin"
- case $ac_file in
- -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
- *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
- esac \
- || as_fn_error $? "could not create $ac_file" "$LINENO" 5
- ;;
- :H)
- #
- # CONFIG_HEADER
- #
- if test x"$ac_file" != x-; then
- {
- $as_echo "/* $configure_input */" \
- && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
- } >"$ac_tmp/config.h" \
- || as_fn_error $? "could not create $ac_file" "$LINENO" 5
- if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
-$as_echo "$as_me: $ac_file is unchanged" >&6;}
- else
- rm -f "$ac_file"
- mv "$ac_tmp/config.h" "$ac_file" \
- || as_fn_error $? "could not create $ac_file" "$LINENO" 5
- fi
- else
- $as_echo "/* $configure_input */" \
- && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
- || as_fn_error $? "could not create -" "$LINENO" 5
- fi
- ;;
-
- :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
-$as_echo "$as_me: executing $ac_file commands" >&6;}
- ;;
- esac
-
-
- case $ac_file$ac_mode in
- "default":C)
-case x$CONFIG_HEADERS in
-xauto-host.h:config.in)
-echo > cstamp-h ;;
-esac
-
-# Avoid having to add intl to our include paths.
-if test -f intl/libintl.h; then
- echo creating libintl.h
- echo '#include "intl/libintl.h"' >libintl.h
-fi
- ;;
-
- esac
-done # for ac_tag
-
-
-as_fn_exit 0
diff --git a/support/makebin/Makefile b/support/makebin/Makefile
deleted file mode 100644
index 1a33cd3..0000000
--- a/support/makebin/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-
-srcdir = .
-
-top_builddir = ../..
-
-SOURCES = makebin.c
-BIN = $(top_builddir)/bin/makebin$(EXEEXT)
-
-include $(top_builddir)/Makefile.common
-
-all: $(BIN)
-
-$(BIN): $(OBJ)
- mkdir -p $(top_builddir)/bin
- $(CC) $(LDFLAGS) -o $(BIN) $(OBJ)
-
-install: all
- mkdir -p $(DESTDIR)$(bindir)
- $(INSTALL) $(BIN) $(DESTDIR)$(bindir)/`echo makebin|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTDIR)$(bindir)/`echo makebin|sed '$(transform)'`$(EXEEXT)
-
-uninstall:
- rm -f $(DESTDIR)$(bindir)/`echo makebin|sed '$(transform)'`$(EXEEXT)
-
-include $(srcdir)/clean.mk
diff --git a/support/packihx/Makefile b/support/packihx/Makefile
deleted file mode 100644
index 62d153c..0000000
--- a/support/packihx/Makefile
+++ /dev/null
@@ -1,54 +0,0 @@
-PRJDIR = ../..
-
-srcdir = .
-top_builddir = .
-
-include $(PRJDIR)/$(top_builddir)/Makefile.common
-
-OBJECTS = packihx.o
-
-SOURCES = $(patsubst %.o,%.c,$(OBJECTS))
-
-TARGET = $(PRJDIR)/$(top_builddir)/bin/packihx$(EXEEXT)
-
-all: $(TARGET)
-
-install: all installdirs
- $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)/`echo packihx|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTDIR)$(bindir)/`echo packihx|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTDIR)$(bindir)/`echo packihx|sed '$(transform)'`$(EXEEXT)
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep:
-
-$(TARGET): $(OBJECTS)
- $(CC) $(LDFLAGS) -o $@ $(OBJECTS)
-
-.c.o:
- $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
-
-
-checkconf:
-
-include $(srcdir)/clean.mk
diff --git a/support/packihx/config.log b/support/packihx/config.log
deleted file mode 100644
index d3ddd2d..0000000
--- a/support/packihx/config.log
+++ /dev/null
@@ -1,391 +0,0 @@
-This file contains any messages produced by compilers while
-running configure, to aid debugging if configure makes a mistake.
-
-It was created by configure, which was
-generated by GNU Autoconf 2.69. Invocation command line was
-
- $ ./configure --disable-option-checking --prefix=/usr/local docdir=${datarootdir}/doc/${PACKAGE} --cache-file=/dev/null --srcdir=.
-
-## --------- ##
-## Platform. ##
-## --------- ##
-
-hostname = xavier-asus
-uname -m = x86_64
-uname -r = 4.15.0-65-generic
-uname -s = Linux
-uname -v = #74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019
-
-/usr/bin/uname -p = unknown
-/bin/uname -X = unknown
-
-/bin/arch = unknown
-/usr/bin/arch -k = unknown
-/usr/convex/getsysinfo = unknown
-/usr/bin/hostinfo = unknown
-/bin/machine = unknown
-/usr/bin/oslevel = unknown
-/bin/universe = unknown
-
-PATH: /home/xavier/.cargo/bin
-PATH: /home/xavier/.local/bin
-PATH: /usr/local/sbin
-PATH: /usr/local/bin
-PATH: /usr/sbin
-PATH: /usr/bin
-PATH: /sbin
-PATH: /bin
-PATH: /usr/games
-PATH: /usr/local/games
-PATH: /snap/bin
-PATH: /usr/local/xtensa-esp32-elf/bin
-
-
-## ----------- ##
-## Core tests. ##
-## ----------- ##
-
-configure:2124: checking for gcc
-configure:2140: found /usr/bin/gcc
-configure:2151: result: gcc
-configure:2380: checking for C compiler version
-configure:2389: gcc --version >&5
-gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
-Copyright (C) 2017 Free Software Foundation, Inc.
-This is free software; see the source for copying conditions. There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-configure:2400: $? = 0
-configure:2389: gcc -v >&5
-Using built-in specs.
-COLLECT_GCC=gcc
-COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
-OFFLOAD_TARGET_NAMES=nvptx-none
-OFFLOAD_TARGET_DEFAULT=1
-Target: x86_64-linux-gnu
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
-Thread model: posix
-gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
-configure:2400: $? = 0
-configure:2389: gcc -V >&5
-gcc: error: unrecognized command line option '-V'
-gcc: fatal error: no input files
-compilation terminated.
-configure:2400: $? = 1
-configure:2389: gcc -qversion >&5
-gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
-gcc: fatal error: no input files
-compilation terminated.
-configure:2400: $? = 1
-configure:2420: checking whether the C compiler works
-configure:2442: gcc conftest.c >&5
-configure:2446: $? = 0
-configure:2494: result: yes
-configure:2497: checking for C compiler default output file name
-configure:2499: result: a.out
-configure:2505: checking for suffix of executables
-configure:2512: gcc -o conftest conftest.c >&5
-configure:2516: $? = 0
-configure:2538: result:
-configure:2560: checking whether we are cross compiling
-configure:2568: gcc -o conftest conftest.c >&5
-configure:2572: $? = 0
-configure:2579: ./conftest
-configure:2583: $? = 0
-configure:2598: result: no
-configure:2603: checking for suffix of object files
-configure:2625: gcc -c conftest.c >&5
-configure:2629: $? = 0
-configure:2650: result: o
-configure:2654: checking whether we are using the GNU C compiler
-configure:2673: gcc -c conftest.c >&5
-configure:2673: $? = 0
-configure:2682: result: yes
-configure:2691: checking whether gcc accepts -g
-configure:2711: gcc -c -g conftest.c >&5
-configure:2711: $? = 0
-configure:2752: result: yes
-configure:2769: checking for gcc option to accept ISO C89
-configure:2832: gcc -c -g -O2 conftest.c >&5
-configure:2832: $? = 0
-configure:2845: result: none needed
-configure:2872: checking how to run the C preprocessor
-configure:2903: gcc -E conftest.c
-configure:2903: $? = 0
-configure:2917: gcc -E conftest.c
-conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:2917: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:2942: result: gcc -E
-configure:2962: gcc -E conftest.c
-configure:2962: $? = 0
-configure:2976: gcc -E conftest.c
-conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:2976: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:3005: checking for grep that handles long lines and -e
-configure:3063: result: /bin/grep
-configure:3068: checking for egrep
-configure:3130: result: /bin/grep -E
-configure:3135: checking for ANSI C header files
-configure:3155: gcc -c -g -O2 conftest.c >&5
-configure:3155: $? = 0
-configure:3228: gcc -o conftest -g -O2 conftest.c >&5
-configure:3228: $? = 0
-configure:3228: ./conftest
-configure:3228: $? = 0
-configure:3239: result: yes
-configure:3252: checking for sys/types.h
-configure:3252: gcc -c -g -O2 conftest.c >&5
-configure:3252: $? = 0
-configure:3252: result: yes
-configure:3252: checking for sys/stat.h
-configure:3252: gcc -c -g -O2 conftest.c >&5
-configure:3252: $? = 0
-configure:3252: result: yes
-configure:3252: checking for stdlib.h
-configure:3252: gcc -c -g -O2 conftest.c >&5
-configure:3252: $? = 0
-configure:3252: result: yes
-configure:3252: checking for string.h
-configure:3252: gcc -c -g -O2 conftest.c >&5
-configure:3252: $? = 0
-configure:3252: result: yes
-configure:3252: checking for memory.h
-configure:3252: gcc -c -g -O2 conftest.c >&5
-configure:3252: $? = 0
-configure:3252: result: yes
-configure:3252: checking for strings.h
-configure:3252: gcc -c -g -O2 conftest.c >&5
-configure:3252: $? = 0
-configure:3252: result: yes
-configure:3252: checking for inttypes.h
-configure:3252: gcc -c -g -O2 conftest.c >&5
-configure:3252: $? = 0
-configure:3252: result: yes
-configure:3252: checking for stdint.h
-configure:3252: gcc -c -g -O2 conftest.c >&5
-configure:3252: $? = 0
-configure:3252: result: yes
-configure:3252: checking for unistd.h
-configure:3252: gcc -c -g -O2 conftest.c >&5
-configure:3252: $? = 0
-configure:3252: result: yes
-configure:3268: checking size of char
-configure:3273: gcc -o conftest -g -O2 conftest.c >&5
-configure:3273: $? = 0
-configure:3273: ./conftest
-configure:3273: $? = 0
-configure:3287: result: 1
-configure:3301: checking size of short
-configure:3306: gcc -o conftest -g -O2 conftest.c >&5
-configure:3306: $? = 0
-configure:3306: ./conftest
-configure:3306: $? = 0
-configure:3320: result: 2
-configure:3334: checking size of int
-configure:3339: gcc -o conftest -g -O2 conftest.c >&5
-configure:3339: $? = 0
-configure:3339: ./conftest
-configure:3339: $? = 0
-configure:3353: result: 4
-configure:3367: checking size of long
-configure:3372: gcc -o conftest -g -O2 conftest.c >&5
-configure:3372: $? = 0
-configure:3372: ./conftest
-configure:3372: $? = 0
-configure:3386: result: 8
-configure:3400: checking size of long long
-configure:3405: gcc -o conftest -g -O2 conftest.c >&5
-configure:3405: $? = 0
-configure:3405: ./conftest
-configure:3405: $? = 0
-configure:3419: result: 8
-configure:3456: checking for gcc option to accept ISO C99
-configure:3605: gcc -c -g -O2 conftest.c >&5
-configure:3605: $? = 0
-configure:3618: result: none needed
-configure:3637: checking type name for byte
-configure:3640: result: char
-configure:3642: checking type name for word
-configure:3645: result: short
-configure:3786: creating ./config.status
-
-## ---------------------- ##
-## Running config.status. ##
-## ---------------------- ##
-
-This file was extended by config.status, which was
-generated by GNU Autoconf 2.69. Invocation command line was
-
- CONFIG_FILES =
- CONFIG_HEADERS =
- CONFIG_LINKS =
- CONFIG_COMMANDS =
- $ ./config.status
-
-on xavier-asus
-
-config.status:807: creating Makefile
-config.status:807: creating config.h
-config.status:977: config.h is unchanged
-
-## ---------------- ##
-## Cache variables. ##
-## ---------------- ##
-
-ac_cv_c_compiler_gnu=yes
-ac_cv_env_CC_set=
-ac_cv_env_CC_value=
-ac_cv_env_CFLAGS_set=
-ac_cv_env_CFLAGS_value=
-ac_cv_env_CPPFLAGS_set=
-ac_cv_env_CPPFLAGS_value=
-ac_cv_env_CPP_set=
-ac_cv_env_CPP_value=
-ac_cv_env_LDFLAGS_set=
-ac_cv_env_LDFLAGS_value=
-ac_cv_env_LIBS_set=
-ac_cv_env_LIBS_value=
-ac_cv_env_build_alias_set=
-ac_cv_env_build_alias_value=
-ac_cv_env_host_alias_set=
-ac_cv_env_host_alias_value=
-ac_cv_env_target_alias_set=
-ac_cv_env_target_alias_value=
-ac_cv_header_inttypes_h=yes
-ac_cv_header_memory_h=yes
-ac_cv_header_stdc=yes
-ac_cv_header_stdint_h=yes
-ac_cv_header_stdlib_h=yes
-ac_cv_header_string_h=yes
-ac_cv_header_strings_h=yes
-ac_cv_header_sys_stat_h=yes
-ac_cv_header_sys_types_h=yes
-ac_cv_header_unistd_h=yes
-ac_cv_objext=o
-ac_cv_path_EGREP='/bin/grep -E'
-ac_cv_path_GREP=/bin/grep
-ac_cv_prog_CPP='gcc -E'
-ac_cv_prog_ac_ct_CC=gcc
-ac_cv_prog_cc_c89=
-ac_cv_prog_cc_c99=
-ac_cv_prog_cc_g=yes
-ac_cv_sizeof_char=1
-ac_cv_sizeof_int=4
-ac_cv_sizeof_long=8
-ac_cv_sizeof_long_long=8
-ac_cv_sizeof_short=2
-
-## ----------------- ##
-## Output variables. ##
-## ----------------- ##
-
-CC='gcc'
-CFLAGS=' -g -O2'
-CPP='gcc -E'
-CPPFLAGS=''
-DEFS='-DHAVE_CONFIG_H'
-ECHO_C=''
-ECHO_N='-n'
-ECHO_T=''
-EGREP='/bin/grep -E'
-EXEEXT=''
-GREP='/bin/grep'
-LDFLAGS=''
-LIBOBJS=''
-LIBS=''
-LTLIBOBJS=''
-OBJEXT='o'
-PACKAGE_BUGREPORT=''
-PACKAGE_NAME=''
-PACKAGE_STRING=''
-PACKAGE_TARNAME=''
-PACKAGE_URL=''
-PACKAGE_VERSION=''
-PATH_SEPARATOR=':'
-SHELL='/bin/bash'
-ac_ct_CC='gcc'
-bindir='${exec_prefix}/bin'
-build_alias=''
-datadir='${datarootdir}'
-datarootdir='${prefix}/share'
-docdir='${datarootdir}/doc/${PACKAGE}'
-dvidir='${docdir}'
-exec_prefix='${prefix}'
-host_alias=''
-htmldir='${docdir}'
-includedir='${prefix}/include'
-infodir='${datarootdir}/info'
-libdir='${exec_prefix}/lib'
-libexecdir='${exec_prefix}/libexec'
-localedir='${datarootdir}/locale'
-localstatedir='${prefix}/var'
-mandir='${datarootdir}/man'
-oldincludedir='/usr/include'
-pdfdir='${docdir}'
-prefix='/usr/local'
-program_transform_name='s,x,x,'
-psdir='${docdir}'
-runstatedir='${localstatedir}/run'
-sbindir='${exec_prefix}/sbin'
-sharedstatedir='${prefix}/com'
-sysconfdir='${prefix}/etc'
-target_alias=''
-
-## ----------- ##
-## confdefs.h. ##
-## ----------- ##
-
-/* confdefs.h */
-#define PACKAGE_NAME ""
-#define PACKAGE_TARNAME ""
-#define PACKAGE_VERSION ""
-#define PACKAGE_STRING ""
-#define PACKAGE_BUGREPORT ""
-#define PACKAGE_URL ""
-#define STDC_HEADERS 1
-#define HAVE_SYS_TYPES_H 1
-#define HAVE_SYS_STAT_H 1
-#define HAVE_STDLIB_H 1
-#define HAVE_STRING_H 1
-#define HAVE_MEMORY_H 1
-#define HAVE_STRINGS_H 1
-#define HAVE_INTTYPES_H 1
-#define HAVE_STDINT_H 1
-#define HAVE_UNISTD_H 1
-#define SIZEOF_CHAR 1
-#define SIZEOF_SHORT 2
-#define SIZEOF_INT 4
-#define SIZEOF_LONG 8
-#define SIZEOF_LONG_LONG 8
-#define TYPE_BYTE char
-#define TYPE_WORD short
-#define TYPE_UBYTE unsigned char
-#define TYPE_UWORD unsigned short
-
-configure: exit 0
diff --git a/support/packihx/config.status b/support/packihx/config.status
deleted file mode 100755
index bb90dfa..0000000
--- a/support/packihx/config.status
+++ /dev/null
@@ -1,997 +0,0 @@
-#! /bin/bash
-# Generated by configure.
-# Run this file to recreate the current configuration.
-# Compiler output produced by configure, useful for debugging
-# configure, is in config.log if it exists.
-
-debug=false
-ac_cs_recheck=false
-ac_cs_silent=false
-
-SHELL=${CONFIG_SHELL-/bin/bash}
-export SHELL
-## -------------------- ##
-## M4sh Initialization. ##
-## -------------------- ##
-
-# Be more Bourne compatible
-DUALCASE=1; export DUALCASE # for MKS sh
-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
- emulate sh
- NULLCMD=:
- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
- # is contrary to our usage. Disable this feature.
- alias -g '${1+"$@"}'='"$@"'
- setopt NO_GLOB_SUBST
-else
- case `(set -o) 2>/dev/null` in #(
- *posix*) :
- set -o posix ;; #(
- *) :
- ;;
-esac
-fi
-
-
-as_nl='
-'
-export as_nl
-# Printing a long string crashes Solaris 7 /usr/bin/printf.
-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
-# Prefer a ksh shell builtin over an external printf program on Solaris,
-# but without wasting forks for bash or zsh.
-if test -z "$BASH_VERSION$ZSH_VERSION" \
- && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='print -r --'
- as_echo_n='print -rn --'
-elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='printf %s\n'
- as_echo_n='printf %s'
-else
- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
- as_echo_n='/usr/ucb/echo -n'
- else
- as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
- as_echo_n_body='eval
- arg=$1;
- case $arg in #(
- *"$as_nl"*)
- expr "X$arg" : "X\\(.*\\)$as_nl";
- arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
- esac;
- expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
- '
- export as_echo_n_body
- as_echo_n='sh -c $as_echo_n_body as_echo'
- fi
- export as_echo_body
- as_echo='sh -c $as_echo_body as_echo'
-fi
-
-# The user is always right.
-if test "${PATH_SEPARATOR+set}" != set; then
- PATH_SEPARATOR=:
- (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
- (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
- PATH_SEPARATOR=';'
- }
-fi
-
-
-# IFS
-# We need space, tab and new line, in precisely that order. Quoting is
-# there to prevent editors from complaining about space-tab.
-# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-# splitting by setting IFS to empty value.)
-IFS=" "" $as_nl"
-
-# Find who we are. Look in the path if we contain no directory separator.
-as_myself=
-case $0 in #((
- *[\\/]* ) as_myself=$0 ;;
- *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- done
-IFS=$as_save_IFS
-
- ;;
-esac
-# We did not find ourselves, most probably we were run as `sh COMMAND'
-# in which case we are not to be found in the path.
-if test "x$as_myself" = x; then
- as_myself=$0
-fi
-if test ! -f "$as_myself"; then
- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
- exit 1
-fi
-
-# Unset variables that we do not need and which cause bugs (e.g. in
-# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
-# suppresses any "Segmentation fault" message there. '((' could
-# trigger a bug in pdksh 5.2.14.
-for as_var in BASH_ENV ENV MAIL MAILPATH
-do eval test x\${$as_var+set} = xset \
- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
-done
-PS1='$ '
-PS2='> '
-PS4='+ '
-
-# NLS nuisances.
-LC_ALL=C
-export LC_ALL
-LANGUAGE=C
-export LANGUAGE
-
-# CDPATH.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-
-# as_fn_error STATUS ERROR [LINENO LOG_FD]
-# ----------------------------------------
-# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with STATUS, using 1 if that was 0.
-as_fn_error ()
-{
- as_status=$1; test $as_status -eq 0 && as_status=1
- if test "$4"; then
- as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
- fi
- $as_echo "$as_me: error: $2" >&2
- as_fn_exit $as_status
-} # as_fn_error
-
-
-# as_fn_set_status STATUS
-# -----------------------
-# Set $? to STATUS, without forking.
-as_fn_set_status ()
-{
- return $1
-} # as_fn_set_status
-
-# as_fn_exit STATUS
-# -----------------
-# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
-as_fn_exit ()
-{
- set +e
- as_fn_set_status $1
- exit $1
-} # as_fn_exit
-
-# as_fn_unset VAR
-# ---------------
-# Portably unset VAR.
-as_fn_unset ()
-{
- { eval $1=; unset $1;}
-}
-as_unset=as_fn_unset
-# as_fn_append VAR VALUE
-# ----------------------
-# Append the text in VALUE to the end of the definition contained in VAR. Take
-# advantage of any shell optimizations that allow amortized linear growth over
-# repeated appends, instead of the typical quadratic growth present in naive
-# implementations.
-if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
- eval 'as_fn_append ()
- {
- eval $1+=\$2
- }'
-else
- as_fn_append ()
- {
- eval $1=\$$1\$2
- }
-fi # as_fn_append
-
-# as_fn_arith ARG...
-# ------------------
-# Perform arithmetic evaluation on the ARGs, and store the result in the
-# global $as_val. Take advantage of shells that can avoid forks. The arguments
-# must be portable across $(()) and expr.
-if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
- eval 'as_fn_arith ()
- {
- as_val=$(( $* ))
- }'
-else
- as_fn_arith ()
- {
- as_val=`expr "$@" || test $? -eq 1`
- }
-fi # as_fn_arith
-
-
-if expr a : '\(a\)' >/dev/null 2>&1 &&
- test "X`expr 00001 : '.*\(...\)'`" = X001; then
- as_expr=expr
-else
- as_expr=false
-fi
-
-if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
- as_basename=basename
-else
- as_basename=false
-fi
-
-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
- as_dirname=dirname
-else
- as_dirname=false
-fi
-
-as_me=`$as_basename -- "$0" ||
-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
- X"$0" : 'X\(//\)$' \| \
- X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X/"$0" |
- sed '/^.*\/\([^/][^/]*\)\/*$/{
- s//\1/
- q
- }
- /^X\/\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\/\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
-
-# Avoid depending upon Character Ranges.
-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-as_cr_digits='0123456789'
-as_cr_alnum=$as_cr_Letters$as_cr_digits
-
-ECHO_C= ECHO_N= ECHO_T=
-case `echo -n x` in #(((((
--n*)
- case `echo 'xy\c'` in
- *c*) ECHO_T=' ';; # ECHO_T is single tab character.
- xy) ECHO_C='\c';;
- *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
- ECHO_T=' ';;
- esac;;
-*)
- ECHO_N='-n';;
-esac
-
-rm -f conf$$ conf$$.exe conf$$.file
-if test -d conf$$.dir; then
- rm -f conf$$.dir/conf$$.file
-else
- rm -f conf$$.dir
- mkdir conf$$.dir 2>/dev/null
-fi
-if (echo >conf$$.file) 2>/dev/null; then
- if ln -s conf$$.file conf$$ 2>/dev/null; then
- as_ln_s='ln -s'
- # ... but there are two gotchas:
- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
- # In both cases, we have to default to `cp -pR'.
- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
- as_ln_s='cp -pR'
- elif ln conf$$.file conf$$ 2>/dev/null; then
- as_ln_s=ln
- else
- as_ln_s='cp -pR'
- fi
-else
- as_ln_s='cp -pR'
-fi
-rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-rmdir conf$$.dir 2>/dev/null
-
-
-# as_fn_mkdir_p
-# -------------
-# Create "$as_dir" as a directory, including parents if necessary.
-as_fn_mkdir_p ()
-{
-
- case $as_dir in #(
- -*) as_dir=./$as_dir;;
- esac
- test -d "$as_dir" || eval $as_mkdir_p || {
- as_dirs=
- while :; do
- case $as_dir in #(
- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
- *) as_qdir=$as_dir;;
- esac
- as_dirs="'$as_qdir' $as_dirs"
- as_dir=`$as_dirname -- "$as_dir" ||
-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$as_dir" : 'X\(//\)[^/]' \| \
- X"$as_dir" : 'X\(//\)$' \| \
- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$as_dir" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- test -d "$as_dir" && break
- done
- test -z "$as_dirs" || eval "mkdir $as_dirs"
- } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
-
-
-} # as_fn_mkdir_p
-if mkdir -p . 2>/dev/null; then
- as_mkdir_p='mkdir -p "$as_dir"'
-else
- test -d ./-p && rmdir ./-p
- as_mkdir_p=false
-fi
-
-
-# as_fn_executable_p FILE
-# -----------------------
-# Test if FILE is an executable regular file.
-as_fn_executable_p ()
-{
- test -f "$1" && test -x "$1"
-} # as_fn_executable_p
-as_test_x='test -x'
-as_executable_p=as_fn_executable_p
-
-# Sed expression to map a string onto a valid CPP name.
-as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-
-# Sed expression to map a string onto a valid variable name.
-as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-
-
-exec 6>&1
-## ----------------------------------- ##
-## Main body of $CONFIG_STATUS script. ##
-## ----------------------------------- ##
-# Save the log message, to keep $0 and so on meaningful, and to
-# report actual input values of CONFIG_FILES etc. instead of their
-# values after options handling.
-ac_log="
-This file was extended by $as_me, which was
-generated by GNU Autoconf 2.69. Invocation command line was
-
- CONFIG_FILES = $CONFIG_FILES
- CONFIG_HEADERS = $CONFIG_HEADERS
- CONFIG_LINKS = $CONFIG_LINKS
- CONFIG_COMMANDS = $CONFIG_COMMANDS
- $ $0 $@
-
-on `(hostname || uname -n) 2>/dev/null | sed 1q`
-"
-
-# Files that config.status was made for.
-config_files=" Makefile"
-config_headers=" config.h:config_in.h"
-
-ac_cs_usage="\
-\`$as_me' instantiates files and other configuration actions
-from templates according to the current configuration. Unless the files
-and actions are specified as TAGs, all are instantiated by default.
-
-Usage: $0 [OPTION]... [TAG]...
-
- -h, --help print this help, then exit
- -V, --version print version number and configuration settings, then exit
- --config print configuration, then exit
- -q, --quiet, --silent
- do not print progress messages
- -d, --debug don't remove temporary files
- --recheck update $as_me by reconfiguring in the same conditions
- --file=FILE[:TEMPLATE]
- instantiate the configuration file FILE
- --header=FILE[:TEMPLATE]
- instantiate the configuration header FILE
-
-Configuration files:
-$config_files
-
-Configuration headers:
-$config_headers
-
-Report bugs to the package provider."
-
-ac_cs_config="'--disable-option-checking' '--prefix=/usr/local' 'docdir=\${datarootdir}/doc/\${PACKAGE}' '--cache-file=/dev/null' '--srcdir=.'"
-ac_cs_version="\
-config.status
-configured by ./configure, generated by GNU Autoconf 2.69,
- with options \"$ac_cs_config\"
-
-Copyright (C) 2012 Free Software Foundation, Inc.
-This config.status script is free software; the Free Software Foundation
-gives unlimited permission to copy, distribute and modify it."
-
-ac_pwd='/home/xavier/sdcc/support/packihx'
-srcdir='.'
-test -n "$AWK" || AWK=awk
-# The default lists apply if the user does not specify any file.
-ac_need_defaults=:
-while test $# != 0
-do
- case $1 in
- --*=?*)
- ac_option=`expr "X$1" : 'X\([^=]*\)='`
- ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
- ac_shift=:
- ;;
- --*=)
- ac_option=`expr "X$1" : 'X\([^=]*\)='`
- ac_optarg=
- ac_shift=:
- ;;
- *)
- ac_option=$1
- ac_optarg=$2
- ac_shift=shift
- ;;
- esac
-
- case $ac_option in
- # Handling of the options.
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
- ac_cs_recheck=: ;;
- --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
- $as_echo "$ac_cs_version"; exit ;;
- --config | --confi | --conf | --con | --co | --c )
- $as_echo "$ac_cs_config"; exit ;;
- --debug | --debu | --deb | --de | --d | -d )
- debug=: ;;
- --file | --fil | --fi | --f )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- '') as_fn_error $? "missing file argument" ;;
- esac
- as_fn_append CONFIG_FILES " '$ac_optarg'"
- ac_need_defaults=false;;
- --header | --heade | --head | --hea )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- esac
- as_fn_append CONFIG_HEADERS " '$ac_optarg'"
- ac_need_defaults=false;;
- --he | --h)
- # Conflict between --help and --header
- as_fn_error $? "ambiguous option: \`$1'
-Try \`$0 --help' for more information.";;
- --help | --hel | -h )
- $as_echo "$ac_cs_usage"; exit ;;
- -q | -quiet | --quiet | --quie | --qui | --qu | --q \
- | -silent | --silent | --silen | --sile | --sil | --si | --s)
- ac_cs_silent=: ;;
-
- # This is an error.
- -*) as_fn_error $? "unrecognized option: \`$1'
-Try \`$0 --help' for more information." ;;
-
- *) as_fn_append ac_config_targets " $1"
- ac_need_defaults=false ;;
-
- esac
- shift
-done
-
-ac_configure_extra_args=
-
-if $ac_cs_silent; then
- exec 6>/dev/null
- ac_configure_extra_args="$ac_configure_extra_args --silent"
-fi
-
-if $ac_cs_recheck; then
- set X /bin/bash './configure' '--disable-option-checking' '--prefix=/usr/local' 'docdir=${datarootdir}/doc/${PACKAGE}' '--cache-file=/dev/null' '--srcdir=.' $ac_configure_extra_args --no-create --no-recursion
- shift
- $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
- CONFIG_SHELL='/bin/bash'
- export CONFIG_SHELL
- exec "$@"
-fi
-
-exec 5>>config.log
-{
- echo
- sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
-## Running $as_me. ##
-_ASBOX
- $as_echo "$ac_log"
-} >&5
-
-
-# Handling of arguments.
-for ac_config_target in $ac_config_targets
-do
- case $ac_config_target in
- "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config_in.h" ;;
- "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
-
- *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
- esac
-done
-
-
-# If the user did not use the arguments to specify the items to instantiate,
-# then the envvar interface is used. Set only those that are not.
-# We use the long form for the default assignment because of an extremely
-# bizarre bug on SunOS 4.1.3.
-if $ac_need_defaults; then
- test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
- test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
-fi
-
-# Have a temporary directory for convenience. Make it in the build tree
-# simply because there is no reason against having it here, and in addition,
-# creating and moving files from /tmp can sometimes cause problems.
-# Hook for its removal unless debugging.
-# Note that there is a small window in which the directory will not be cleaned:
-# after its creation but before its name has been assigned to `$tmp'.
-$debug ||
-{
- tmp= ac_tmp=
- trap 'exit_status=$?
- : "${ac_tmp:=$tmp}"
- { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
-' 0
- trap 'as_fn_exit 1' 1 2 13 15
-}
-# Create a (secure) tmp directory for tmp files.
-
-{
- tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
- test -d "$tmp"
-} ||
-{
- tmp=./conf$$-$RANDOM
- (umask 077 && mkdir "$tmp")
-} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
-ac_tmp=$tmp
-
-# Set up the scripts for CONFIG_FILES section.
-# No need to generate them if there are no CONFIG_FILES.
-# This happens for instance with `./config.status config.h'.
-if test -n "$CONFIG_FILES"; then
-
-
-ac_cr=`echo X | tr X '\015'`
-# On cygwin, bash can eat \r inside `` if the user requested igncr.
-# But we know of no other shell where ac_cr would be empty at this
-# point, so we can use a bashism as a fallback.
-if test "x$ac_cr" = x; then
- eval ac_cr=\$\'\\r\'
-fi
-ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
- ac_cs_awk_cr='\\r'
-else
- ac_cs_awk_cr=$ac_cr
-fi
-
-echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
-cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
-S["LTLIBOBJS"]=""
-S["LIBOBJS"]=""
-S["EGREP"]="/bin/grep -E"
-S["GREP"]="/bin/grep"
-S["CPP"]="gcc -E"
-S["OBJEXT"]="o"
-S["EXEEXT"]=""
-S["ac_ct_CC"]="gcc"
-S["CPPFLAGS"]=""
-S["LDFLAGS"]=""
-S["CFLAGS"]=" -g -O2"
-S["CC"]="gcc"
-S["target_alias"]=""
-S["host_alias"]=""
-S["build_alias"]=""
-S["LIBS"]=""
-S["ECHO_T"]=""
-S["ECHO_N"]="-n"
-S["ECHO_C"]=""
-S["DEFS"]="-DHAVE_CONFIG_H"
-S["mandir"]="${datarootdir}/man"
-S["localedir"]="${datarootdir}/locale"
-S["libdir"]="${exec_prefix}/lib"
-S["psdir"]="${docdir}"
-S["pdfdir"]="${docdir}"
-S["dvidir"]="${docdir}"
-S["htmldir"]="${docdir}"
-S["infodir"]="${datarootdir}/info"
-S["docdir"]="${datarootdir}/doc/${PACKAGE}"
-S["oldincludedir"]="/usr/include"
-S["includedir"]="${prefix}/include"
-S["runstatedir"]="${localstatedir}/run"
-S["localstatedir"]="${prefix}/var"
-S["sharedstatedir"]="${prefix}/com"
-S["sysconfdir"]="${prefix}/etc"
-S["datadir"]="${datarootdir}"
-S["datarootdir"]="${prefix}/share"
-S["libexecdir"]="${exec_prefix}/libexec"
-S["sbindir"]="${exec_prefix}/sbin"
-S["bindir"]="${exec_prefix}/bin"
-S["program_transform_name"]="s,x,x,"
-S["prefix"]="/usr/local"
-S["exec_prefix"]="${prefix}"
-S["PACKAGE_URL"]=""
-S["PACKAGE_BUGREPORT"]=""
-S["PACKAGE_STRING"]=""
-S["PACKAGE_VERSION"]=""
-S["PACKAGE_TARNAME"]=""
-S["PACKAGE_NAME"]=""
-S["PATH_SEPARATOR"]=":"
-S["SHELL"]="/bin/bash"
-_ACAWK
-cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
- for (key in S) S_is_set[key] = 1
- FS = ""
-
-}
-{
- line = $ 0
- nfields = split(line, field, "@")
- substed = 0
- len = length(field[1])
- for (i = 2; i < nfields; i++) {
- key = field[i]
- keylen = length(key)
- if (S_is_set[key]) {
- value = S[key]
- line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
- len += length(value) + length(field[++i])
- substed = 1
- } else
- len += 1 + keylen
- }
-
- print line
-}
-
-_ACAWK
-if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
- sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
-else
- cat
-fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
- || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
-fi # test -n "$CONFIG_FILES"
-
-# Set up the scripts for CONFIG_HEADERS section.
-# No need to generate them if there are no CONFIG_HEADERS.
-# This happens for instance with `./config.status Makefile'.
-if test -n "$CONFIG_HEADERS"; then
-cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
-BEGIN {
-D["PACKAGE_NAME"]=" \"\""
-D["PACKAGE_TARNAME"]=" \"\""
-D["PACKAGE_VERSION"]=" \"\""
-D["PACKAGE_STRING"]=" \"\""
-D["PACKAGE_BUGREPORT"]=" \"\""
-D["PACKAGE_URL"]=" \"\""
-D["STDC_HEADERS"]=" 1"
-D["HAVE_SYS_TYPES_H"]=" 1"
-D["HAVE_SYS_STAT_H"]=" 1"
-D["HAVE_STDLIB_H"]=" 1"
-D["HAVE_STRING_H"]=" 1"
-D["HAVE_MEMORY_H"]=" 1"
-D["HAVE_STRINGS_H"]=" 1"
-D["HAVE_INTTYPES_H"]=" 1"
-D["HAVE_STDINT_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["SIZEOF_CHAR"]=" 1"
-D["SIZEOF_SHORT"]=" 2"
-D["SIZEOF_INT"]=" 4"
-D["SIZEOF_LONG"]=" 8"
-D["SIZEOF_LONG_LONG"]=" 8"
-D["TYPE_BYTE"]=" char"
-D["TYPE_WORD"]=" short"
-D["TYPE_UBYTE"]=" unsigned char"
-D["TYPE_UWORD"]=" unsigned short"
- for (key in D) D_is_set[key] = 1
- FS = ""
-}
-/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
- line = $ 0
- split(line, arg, " ")
- if (arg[1] == "#") {
- defundef = arg[2]
- mac1 = arg[3]
- } else {
- defundef = substr(arg[1], 2)
- mac1 = arg[2]
- }
- split(mac1, mac2, "(") #)
- macro = mac2[1]
- prefix = substr(line, 1, index(line, defundef) - 1)
- if (D_is_set[macro]) {
- # Preserve the white space surrounding the "#".
- print prefix "define", macro P[macro] D[macro]
- next
- } else {
- # Replace #undef with comments. This is necessary, for example,
- # in the case of _POSIX_SOURCE, which is predefined and required
- # on some systems where configure will not decide to define it.
- if (defundef == "undef") {
- print "/*", prefix defundef, macro, "*/"
- next
- }
- }
-}
-{ print }
-_ACAWK
- as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
-fi # test -n "$CONFIG_HEADERS"
-
-
-eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS "
-shift
-for ac_tag
-do
- case $ac_tag in
- :[FHLC]) ac_mode=$ac_tag; continue;;
- esac
- case $ac_mode$ac_tag in
- :[FHL]*:*);;
- :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
- :[FH]-) ac_tag=-:-;;
- :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
- esac
- ac_save_IFS=$IFS
- IFS=:
- set x $ac_tag
- IFS=$ac_save_IFS
- shift
- ac_file=$1
- shift
-
- case $ac_mode in
- :L) ac_source=$1;;
- :[FH])
- ac_file_inputs=
- for ac_f
- do
- case $ac_f in
- -) ac_f="$ac_tmp/stdin";;
- *) # Look for the file first in the build tree, then in the source tree
- # (if the path is not absolute). The absolute path cannot be DOS-style,
- # because $ac_f cannot contain `:'.
- test -f "$ac_f" ||
- case $ac_f in
- [\\/$]*) false;;
- *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
- esac ||
- as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
- esac
- case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
- as_fn_append ac_file_inputs " '$ac_f'"
- done
-
- # Let's still pretend it is `configure' which instantiates (i.e., don't
- # use $as_me), people would be surprised to read:
- # /* config.h. Generated by config.status. */
- configure_input='Generated from '`
- $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
- `' by configure.'
- if test x"$ac_file" != x-; then
- configure_input="$ac_file. $configure_input"
- { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
-$as_echo "$as_me: creating $ac_file" >&6;}
- fi
- # Neutralize special characters interpreted by sed in replacement strings.
- case $configure_input in #(
- *\&* | *\|* | *\\* )
- ac_sed_conf_input=`$as_echo "$configure_input" |
- sed 's/[\\\\&|]/\\\\&/g'`;; #(
- *) ac_sed_conf_input=$configure_input;;
- esac
-
- case $ac_tag in
- *:-:* | *:-) cat >"$ac_tmp/stdin" \
- || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
- esac
- ;;
- esac
-
- ac_dir=`$as_dirname -- "$ac_file" ||
-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$ac_file" : 'X\(//\)[^/]' \| \
- X"$ac_file" : 'X\(//\)$' \| \
- X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$ac_file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- as_dir="$ac_dir"; as_fn_mkdir_p
- ac_builddir=.
-
-case "$ac_dir" in
-.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-*)
- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
- # A ".." for each directory in $ac_dir_suffix.
- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
- case $ac_top_builddir_sub in
- "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
- *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
- esac ;;
-esac
-ac_abs_top_builddir=$ac_pwd
-ac_abs_builddir=$ac_pwd$ac_dir_suffix
-# for backward compatibility:
-ac_top_builddir=$ac_top_build_prefix
-
-case $srcdir in
- .) # We are building in place.
- ac_srcdir=.
- ac_top_srcdir=$ac_top_builddir_sub
- ac_abs_top_srcdir=$ac_pwd ;;
- [\\/]* | ?:[\\/]* ) # Absolute name.
- ac_srcdir=$srcdir$ac_dir_suffix;
- ac_top_srcdir=$srcdir
- ac_abs_top_srcdir=$srcdir ;;
- *) # Relative name.
- ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
- ac_top_srcdir=$ac_top_build_prefix$srcdir
- ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-esac
-ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-
-
- case $ac_mode in
- :F)
- #
- # CONFIG_FILE
- #
-
-# If the template does not know about datarootdir, expand it.
-# FIXME: This hack should be removed a few years after 2.60.
-ac_datarootdir_hack=; ac_datarootdir_seen=
-ac_sed_dataroot='
-/datarootdir/ {
- p
- q
-}
-/@datadir@/p
-/@docdir@/p
-/@infodir@/p
-/@localedir@/p
-/@mandir@/p'
-case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
-*datarootdir*) ac_datarootdir_seen=yes;;
-*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
-$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
- ac_datarootdir_hack='
- s&@datadir@&${datarootdir}&g
- s&@docdir@&${datarootdir}/doc/${PACKAGE}&g
- s&@infodir@&${datarootdir}/info&g
- s&@localedir@&${datarootdir}/locale&g
- s&@mandir@&${datarootdir}/man&g
- s&\${datarootdir}&${prefix}/share&g' ;;
-esac
-ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{
-h
-s///
-s/^/:/
-s/[ ]*$/:/
-s/:\$(srcdir):/:/g
-s/:\${srcdir}:/:/g
-s/:@srcdir@:/:/g
-s/^:*//
-s/:*$//
-x
-s/\(=[ ]*\).*/\1/
-G
-s/\n//
-s/^[^=]*=[ ]*$//
-}
-
-:t
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-s|@configure_input@|$ac_sed_conf_input|;t t
-s&@top_builddir@&$ac_top_builddir_sub&;t t
-s&@top_build_prefix@&$ac_top_build_prefix&;t t
-s&@srcdir@&$ac_srcdir&;t t
-s&@abs_srcdir@&$ac_abs_srcdir&;t t
-s&@top_srcdir@&$ac_top_srcdir&;t t
-s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
-s&@builddir@&$ac_builddir&;t t
-s&@abs_builddir@&$ac_abs_builddir&;t t
-s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
-$ac_datarootdir_hack
-"
-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
- >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
-
-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
- { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
- "$ac_tmp/out"`; test -z "$ac_out"; } &&
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined" >&5
-$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined" >&2;}
-
- rm -f "$ac_tmp/stdin"
- case $ac_file in
- -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
- *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
- esac \
- || as_fn_error $? "could not create $ac_file" "$LINENO" 5
- ;;
- :H)
- #
- # CONFIG_HEADER
- #
- if test x"$ac_file" != x-; then
- {
- $as_echo "/* $configure_input */" \
- && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
- } >"$ac_tmp/config.h" \
- || as_fn_error $? "could not create $ac_file" "$LINENO" 5
- if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
-$as_echo "$as_me: $ac_file is unchanged" >&6;}
- else
- rm -f "$ac_file"
- mv "$ac_tmp/config.h" "$ac_file" \
- || as_fn_error $? "could not create $ac_file" "$LINENO" 5
- fi
- else
- $as_echo "/* $configure_input */" \
- && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
- || as_fn_error $? "could not create -" "$LINENO" 5
- fi
- ;;
-
-
- esac
-
-done # for ac_tag
-
-
-as_fn_exit 0
diff --git a/support/regression/Makefile b/support/regression/Makefile
deleted file mode 100644
index 88a7520..0000000
--- a/support/regression/Makefile
+++ /dev/null
@@ -1,374 +0,0 @@
-# Test suite Makefile
-# Part of SDCC - http://sdcc.sourceforge.net/
-# Michael Hope <michaelh@juju.net.nz> 2001
-#
-# This Makefile builds and runs the test suites under tests/ for each
-# one of the supported ports located under ports/. The test suite
-# results are summarised and individual test failures are logged. The
-# expected result is a single line per port summarising the number of
-# failures, test points, and test cases. The philosophy is that
-# checked in code should always pass the suite with no failures, as
-# then if there are failures then it is in the current developers code.
-#
-# Only the required suites are run. Changing sdcc causes all to be
-# re-run. Changing one suite causes just that to be run. Changing
-# one of the library files should cause all to re-run
-
-# Dependancies:
-# * The sdcc-extra package, available from svn.
-# o svn co https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc-extra
-# o Provides the emulators
-# * The gbdk-lib package from gbdk.
-# o cvs -d cvs.gbdk.sourceforge.net:/cvsroot/gbdk co gbdk-lib
-# o Provides mul, div, and include files for the z80 tests.
-# * python 1.5 or above
-# * uCsim for the mcs51 port
-#
-# The paths below assume that sdcc, sdcc-extra, and gbdk-lib all reside in
-# the same directory.
-
-# Old notes:
-# Starting at the bottom
-# Set of source test suites
-# Each source suite is processesd producing multiple device specific test suites.
-# Each device specific test suite is compiled.
-# Each device specific test suite is run, and the output recorded.
-# The output from each device specific test suite derived from a source
-# test suite are collated.
-
-# Uncomment this to show only errors and the summary.
-# Comment this out for debugging.
-.SILENT:
-
-CC = gcc
-CFLAGS = -pipe -ggdb -g -Og
-CPPFLAGS = -DNO_VARARGS
-EXEEXT =
-PYTHON = python3.6
-M4 = m4
-
-srcdir = .
-top_srcdir = ../..
-top_builddir = ../..
-
-# All original tests live in TESTS_DIR and below
-TESTS_DIR = $(srcdir)/tests
-# All suite results go in RESULTS_DIR
-RESULTS_DIR = results
-# All data relating to supported ports live in their own directory
-# under PORTS_DIR.
-PORTS_DIR = $(srcdir)/ports
-
-# Itermediate data directories
-# Directory that generated cases and the related object code go.
-CASES_DIR = gen
-
-# Script that takes a source test suite and generates the iterations
-GENERATE_CASES = $(srcdir)/generate-cases.py
-
-# Magically generate the list of configured ports to test.
-# Each directory under ports/ is used as a port name. Each port is tested.
-# Each port must have a spec.mk which describes how to build the object
-# files and how to run the emulator.
-ALL_PORTS = $(filter-out .svn rrz80 rrgbz80 pic16 pic14 mcs51-common,$(notdir $(wildcard $(PORTS_DIR)/*)))
-
-# These ports will be cleaned with 'make clean'
-CLEAN_PORTS = $(filter-out .svn mcs51-common,$(notdir $(wildcard $(PORTS_DIR)/*)))
-
-MAKE_LIBRARY =
-
-# support VPATH:
-vpath %.c $(CASES_DIR):$(TESTS_DIR)
-
-all: test-ports
-
-# Test all of the ports
-test-ports:
- $(MAKE) test-common
- for i in $(ALL_PORTS); do $(MAKE) make_library test-port PORT=$$i; done
-
-# Helper rule for testing the z80 port only (use rrz80 simulator)
-test-rrz80:
- $(MAKE) test-common
- $(MAKE) test-port PORT=rrz80
-
-# Helper rule for testing the z80 port only (use rrgb simulator)
-test-rrgbz80:
- $(MAKE) test-common
- $(MAKE) test-port PORT=rrgbz80
-
-# Helper rule for testing the mcs51 port only
-test-mcs51: test-mcs51-small test-mcs51-medium test-mcs51-large test-mcs51-huge test-mcs51-stack-auto test-mcs51-large-stack-auto test-mcs51-xstack-auto
-
-test-mcs51-small:
- $(MAKE) test-common
- $(MAKE) test-port PORT=mcs51-small
-
-test-mcs51-medium:
- $(MAKE) test-common
- $(MAKE) test-port PORT=mcs51-medium
-
-test-mcs51-large:
- $(MAKE) test-common
- $(MAKE) test-port PORT=mcs51-large
-
-test-mcs51-huge:
- $(MAKE) test-common
- $(MAKE) test-port PORT=mcs51-huge
-
-test-mcs51-stack-auto:
- $(MAKE) test-common
- $(MAKE) test-port PORT=mcs51-stack-auto
-
-test-mcs51-large-stack-auto:
- $(MAKE) test-common
- $(MAKE) test-port PORT=mcs51-large-stack-auto
-
-test-mcs51-xstack-auto:
- $(MAKE) test-common
- $(MAKE) make_library test-port PORT=mcs51-xstack-auto
-
-# Helper rule for testing the ds390 port only
-test-ds390:
- $(MAKE) test-common
- $(MAKE) test-port PORT=ds390
-
-# Helper rule for testing the z80 related ports only
-test-z80: test-ucz80 test-ucz80-resiy test-ucz180 test-ucgbz80 test-ucr2k test-ucr3ka test-ez80-z80
-
-# Helper rule for testing the z80 port only (use uCsim simulator)
-test-ucz80:
- $(MAKE) test-common
- $(MAKE) test-port PORT=ucz80
-
-# Helper rule for testing the z80 port with --reserve-regs-iy only (use uCsim simulator)
-test-ucz80-resiy:
- $(MAKE) test-common
- $(MAKE) test-port PORT=ucz80-resiy
-
-# Helper rule for testing the z180 port only(use uCsim simulator)
-test-ucz180:
- $(MAKE) test-common
- $(MAKE) test-port PORT=ucz180
-
-# Helper rule for testing the gb/lr35902 port only(use uCsim simulator)
-test-ucgbz80:
- $(MAKE) test-common
- $(MAKE) test-port PORT=ucgbz80
-
-# Helper rule for testing the r2k port only(use uCsim simulator)
-test-ucr2k:
- $(MAKE) test-common
- $(MAKE) test-port PORT=ucr2k
-
-# Helper rule for testing the r3k port only(use uCsim simulator)
-test-ucr3ka:
- $(MAKE) test-common
- $(MAKE) test-port PORT=ucr3ka
-
-# Helper rule for testing the hc08 port only(use uCsim simulator)
-test-hc08:
- $(MAKE) test-common
- $(MAKE) test-port PORT=hc08
-
-# Helper rule for testing the s08 port only(use uCsim simulator)
-test-s08:
- $(MAKE) test-common
- $(MAKE) test-port PORT=s08
-
-# Helper rule for testing the stm8 port only(use uCsim simulator)
-test-stm8:
- $(MAKE) test-common
- $(MAKE) test-port PORT=stm8
-
-# Helper rule for testing the stm8 port only(use uCsim simulator)
-test-stm8-large:
- $(MAKE) test-common
- $(MAKE) test-port PORT=stm8-large
-
-# Helper rule for testing the pic16 port only(use gpsim simulator)
-test-pic16:
- $(MAKE) test-common
- $(MAKE) test-port PORT=pic16
-
-# Helper rule for testing the pic14 port only(use gpsim simulator)
-test-pic14:
- $(MAKE) test-common
- $(MAKE) test-port PORT=pic14
-
-# Helper rule for testing the tlcs90 port only(use uCsim simulator)
-test-tlcs90:
- $(MAKE) test-common
- $(MAKE) test-port PORT=tlcs90
-
-# Helper rule for testing the tlcs90 port only(use uCsim simulator)
-test-ez80-z80:
- $(MAKE) test-common
- $(MAKE) test-port PORT=ez80-z80
-
-# Helper rule for testing the pdk14 port only(use uCsim simulator)
-test-pdk14:
- $(MAKE) test-common
- $(MAKE) test-port PORT=pdk14
-
-# Helper rule for testing the pdk15 port only(use uCsim simulator)
-test-pdk15:
- $(MAKE) test-common
- $(MAKE) test-port PORT=pdk15
-
-### Helper rule for testing the host cc only
-test-host:
- $(MAKE) test-common
- $(MAKE) test-port PORT=host
-
-test-host2:
- $(MAKE) test-common
- $(MAKE) test-port PORT=host
-
-# Begin per-port rules
-# List of all of the known source test suites.
-# Do not do this for the individual test files, to avoid quadratic complexity.
-ifndef CASES
-ALL_C_TESTS = $(shell find $(TESTS_DIR) -name "*.c")
-ALL_M_TESTS = $(shell find $(TESTS_DIR) -name "*.m4")
-M_CASES = $(ALL_M_TESTS:$(TESTS_DIR)/%.m4=$(CASES_DIR)/%.c)
-endif
-
-# Intermediate directory
-PORT_CASES_DIR = $(CASES_DIR)/$(PORT)
-PORT_RESULTS_DIR = $(RESULTS_DIR)/$(PORT)
-# Each test generates a result log file
-ifndef CASES
-PORT_RESULTS = $(sort $(patsubst %.c,$(PORT_RESULTS_DIR)/%.out,$(notdir $(ALL_C_TESTS))) $(patsubst %.m4,$(PORT_RESULTS_DIR)/%.out,$(notdir $(ALL_M_TESTS))))
-endif
-
-SDCC_EXTRA_DIR = $(top_builddir)/../sdcc-extra
-
-# Defaults. Override in spec.mk if required.
-# Path to SDCC
-ifdef SDCC_BIN_PATH
- SDCC = $(SDCC_BIN_PATH)/sdcc$(EXEEXT)
-else
- SDCC = $(top_builddir)/bin/sdcc$(EXEEXT)
- INC_DIR ?= $(top_srcdir)/device/include
-endif
-# Base flags.
-SDCCFLAGS += --fverbose-asm -DNO_VARARGS
-# Extension of object intermediate files
-OBJEXT = .rel
-# Extension of files that can be run in the emulator
-BINEXT = .bin
-# Currently unused. Extension to append to intermediate directories.
-DIREXT =
-
-CC_FOR_BUILD = $(CC)
-
-# Only include if we're in a per-port call.
-ifdef PORT
- # include ./$(PORT)/spec.mk if exists, else include $(PORTS_DIR)/$(PORT)/spec.mk
- ifeq ($(shell if test -f ./ports/$(PORT)/spec.mk; then echo OK; fi),OK)
- include ./ports/$(PORT)/spec.mk
- else
- include $(PORTS_DIR)/$(PORT)/spec.mk
- endif
-endif
-
-make_library: $(MAKE_LIBRARY)
-
-SDCCFLAGS += -I$(srcdir)/fwk/include -I$(srcdir)/tests
-ifdef INC_DIR
- SDCCFLAGS += -I$(INC_DIR)
-endif
-
-# List of intermediate files to keep. Pretty much keep everything as
-# disk space is free.
-.PRECIOUS: $(PORT_CASES_DIR)/% %$(OBJEXT) %$(EXEEXT) %$(BINEXT)
-
-# $(CASES_DIR)/stamp is really a proxy for $(CASES_DIR). We shouldn't use
-# $(CASES_DIR) as a dependency directly, because as a directory its time
-# stamp updates every time something in the directory is updated (which
-# can then cause spurious rebuilds of other targets that can conflict
-# with parallel make jobs)
-$(CASES_DIR)/stamp:
- mkdir -p $(CASES_DIR)
- touch $@
-
-# Rule to generate .c files from .m4 files
-$(CASES_DIR)/%.c: $(TESTS_DIR)/%.m4 $(CASES_DIR)/stamp
- $(M4) -I $(srcdir)/m4include rtmacros.m4 $< > $@
-
-# Rule to generate the iterations of a test suite off the source suite.
-$(PORT_CASES_DIR)/%/iterations.stamp: %.c $(GENERATE_CASES)
- rm -rf $(dir $@)
- mkdir -p $(dir $@)
- $(PYTHON) $(GENERATE_CASES) $< $(dir $@)
- touch $@
-
-# Rule linking the combined results log to all of the files in the
-# iteration directory.
-$(PORT_RESULTS_DIR)/%.out: $(PORT_CASES_DIR)/%/iterations.stamp
- $(MAKE) iterations PORT=$(PORT) CASES=$(dir $<)
- $(PYTHON) $(srcdir)/compact-results.py $@ < $@
-
-# Rule to summarise the results for one port after all of the tests
-# have been run.
-port-results: $(PORT_RESULTS)
- cat $(PORT_RESULTS) | $(PYTHON) $(srcdir)/collate-results.py $(PORT)
-
-port-fwklib: $(EXTRAS) $(FWKLIB)
-
-port-dirs:
- mkdir -p $(PORT_CASES_DIR) $(PORT_RESULTS_DIR)
- echo Running $(PORT) regression tests
-
-# Files shared between all ports need to be built by the test-common target,
-# which should always be built before the port specific targets.
-test-common: $(CASES_DIR)/stamp $(M_CASES) $(CASES_DIR)/timeout
-
-test-port:
- # recurse: force vpath to re-read the $(CASES_DIR)
- $(MAKE) port-dirs PORT=$(PORT)
- $(MAKE) port-fwklib PORT=$(PORT)
- $(MAKE) port-results PORT=$(PORT)
-
-# Begin rules that process each iteration generated from the source
-# test
-
-# List of all of the generated iteration source files.
-SUB_CASES = $(sort $(wildcard $(CASES)*.c))
-# List of all the sub result logs generated from the iterations.
-SUB_RESULTS = $(SUB_CASES:%.c=%.out)
-# Overall target. Concatenation of all of the sub results.
-RESULTS = $(CASES:$(CASES_DIR)/%/$(DIREXT)=$(RESULTS_DIR)/%.out)
-
-iterations: $(RESULTS)
-
-# Rule to generate the overall target from the sub results.
-$(RESULTS): $(SUB_RESULTS)
- cat $(SUB_RESULTS) > $@
-
-$(CASES_DIR)/timeout: $(srcdir)/fwk/lib/timeout.c $(CASES_DIR)/stamp
- $(CC_FOR_BUILD) $(CFLAGS) $< -o $@
-
-# The remainder of the rules are in $PORT/spec.mk. The port needs to
-# be able to turn an iterated test suite into a sub result, normally
-# by:
-# 1. Compile the required library files
-# 2. Compile this test suite.
-# 3. Link 1, 2, and any required stdlib into an executable.
-# 4. Run the executable inside an emulator, and capture the text
-# output into %.out.
-#
-# The emulator must exit when main() returns.
-
-# BeginGeneric rules
-
-clean:
- rm -rf $(CASES_DIR) $(RESULTS_DIR) *.pyc
- for i in $(CLEAN_PORTS); do \
- $(MAKE) -f $(PORTS_DIR)/$$i/spec.mk _clean PORTS_DIR=$(PORTS_DIR) PORT=$$i srcdir=$(srcdir); \
- done
-
-distclean: clean
- rm -f $(PORTS_DIR)/host/spec.mk
- rm -f Makefile
diff --git a/support/scripts/Makefile b/support/scripts/Makefile
deleted file mode 100644
index eb94eac..0000000
--- a/support/scripts/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-
-srcdir = .
-top_builddir = ../..
-
-include $(top_builddir)/Makefile.common
-
-TARGET = $(top_builddir)/bin/as2gbmap
-
-all:
- cp $(srcdir)/as2gbmap.py $(TARGET) && chmod +x $(TARGET)
-
-install: all installdirs
- $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)/`echo as2gbmap|sed '$(transform)'`
-
-installdirs:
- -$(INSTALL) -d $(DESTDIR)$(bindir)
-
-uninstall:
- rm -rf $(DESTDIR)$(bindir)/`echo as2gbmap|sed '$(transform)'`
-
-include $(srcdir)/clean.mk
diff --git a/support/sdbinutils/Makefile b/support/sdbinutils/Makefile
deleted file mode 100644
index 7c384ea..0000000
--- a/support/sdbinutils/Makefile
+++ /dev/null
@@ -1,11312 +0,0 @@
-
-# Makefile.in is generated from Makefile.tpl by 'autogen Makefile.def'.
-#
-# Makefile for directory with subdirs to build.
-# Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
-# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
-# 2011, 2012, 2013, 2014, 2015, 2016, 2017
-# Free Software Foundation
-#
-# This file 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 of the License, or
-# (at your option) any later version.
-#
-# This program 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 this program; see the file COPYING3. If not see
-# <http://www.gnu.org/licenses/>.
-#
-
-# First, test for a proper version of make, but only where one is required.
-
-
-# -------------------------------
-# Standard Autoconf-set variables
-# -------------------------------
-
-
-build_alias=x86_64-pc-linux-gnu
-build_vendor=pc
-build_os=linux-gnu
-build=x86_64-pc-linux-gnu
-host_alias=x86_64-pc-linux-gnu
-host_vendor=pc
-host_os=linux-gnu
-host=x86_64-pc-linux-gnu
-target_alias=x86_64-pc-linux-gnu
-target_vendor=pc
-target_os=linux-gnu
-target=x86_64-pc-linux-gnu
-
-program_transform_name = s,y,y,
-
-prefix = /usr/local
-exec_prefix = ${prefix}
-
-srcdir = .
-
-bindir = ${exec_prefix}/bin
-sbindir = ${exec_prefix}/sbin
-libexecdir = ${exec_prefix}/libexec
-datadir = ${datarootdir}
-sysconfdir = ${prefix}/etc
-sharedstatedir = ${prefix}/com
-localstatedir = ${prefix}/var
-libdir = ${exec_prefix}/lib
-includedir = ${prefix}/include
-oldincludedir = /usr/include
-infodir = ${datarootdir}/info
-datarootdir = ${prefix}/share
-docdir = ${datarootdir}/doc/${PACKAGE}
-pdfdir = ${docdir}
-htmldir = ${docdir}
-mandir = ${datarootdir}/man
-man1dir = $(mandir)/man1
-man2dir = $(mandir)/man2
-man3dir = $(mandir)/man3
-man4dir = $(mandir)/man4
-man5dir = $(mandir)/man5
-man6dir = $(mandir)/man6
-man7dir = $(mandir)/man7
-man8dir = $(mandir)/man8
-man9dir = $(mandir)/man9
-
-INSTALL = /usr/bin/install -c
-INSTALL_PROGRAM = ${INSTALL}
-INSTALL_SCRIPT = ${INSTALL}
-INSTALL_DATA = ${INSTALL} -m 644
-LN = ln
-LN_S = ln -s
-MAINT = #
-MAINTAINER_MODE_FALSE =
-MAINTAINER_MODE_TRUE = #
-
-# -------------------------------------------------
-# Miscellaneous non-standard autoconf-set variables
-# -------------------------------------------------
-
-# The gcc driver likes to know the arguments it was configured with.
-TOPLEVEL_CONFIGURE_ARGUMENTS=./configure --disable-option-checking --prefix=/usr/local --disable-mcs51-port --disable-z80-port --disable-z180-port --disable-r2k-port --disable-r3ka-port --disable-gbz80-port --disable-tlcs90-port --disable-ez80_z80-port --disable-ds390-port --disable-ds400-port --disable-pic14-port --disable-pic16-port --disable-hc08-port --disable-s08-port --disable-pdk13-port --disable-pdk14-port --disable-pdk15-port --enable-pdk16-port --disable-ucsim --disable-device-lib --disable-packihx --disable-pdk16-port docdir='$${datarootdir}/doc/$${PACKAGE}' --cache-file=/dev/null --srcdir=.
-
-tooldir = ${exec_prefix}/x86_64-pc-linux-gnu
-build_tooldir = ${exec_prefix}/x86_64-pc-linux-gnu
-
-# This is the name of the environment variable used for the path to
-# the libraries.
-RPATH_ENVVAR = LD_LIBRARY_PATH
-
-# On targets where RPATH_ENVVAR is PATH, a subdirectory of the GCC build path
-# is used instead of the directory itself to avoid including built
-# executables in PATH.
-GCC_SHLIB_SUBDIR =
-
-# Build programs are put under this directory.
-BUILD_SUBDIR = build-x86_64-pc-linux-gnu
-# This is set by the configure script to the arguments to use when configuring
-# directories built for the build system.
-BUILD_CONFIGARGS = --cache-file=./config.cache '--disable-option-checking' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '--cache-file=/dev/null' --program-transform-name='s,y,y,' --disable-option-checking --with-build-subdir="$(BUILD_SUBDIR)"
-
-# Linker flags to use on the host, for stage1 or when not
-# bootstrapping.
-STAGE1_LDFLAGS = -static-libstdc++ -static-libgcc
-
-# Libraries to use on the host, for stage1 or when not bootstrapping.
-STAGE1_LIBS =
-
-# Linker flags to use for stage2 and later.
-POSTSTAGE1_LDFLAGS = -static-libstdc++ -static-libgcc
-
-# Libraries to use for stage2 and later.
-POSTSTAGE1_LIBS =
-
-# This is the list of variables to export in the environment when
-# configuring any subdirectory. It must also be exported whenever
-# recursing into a build directory in case that directory's Makefile
-# re-runs configure.
-BASE_EXPORTS = \
- FLEX="$(FLEX)"; export FLEX; \
- LEX="$(LEX)"; export LEX; \
- BISON="$(BISON)"; export BISON; \
- YACC="$(YACC)"; export YACC; \
- M4="$(M4)"; export M4; \
- SED="$(SED)"; export SED; \
- AWK="$(AWK)"; export AWK; \
- MAKEINFO="$(MAKEINFO)"; export MAKEINFO;
-
-# This is the list of variables to export in the environment when
-# configuring subdirectories for the build system.
-BUILD_EXPORTS = \
- $(BASE_EXPORTS) \
- AR="$(AR_FOR_BUILD)"; export AR; \
- AS="$(AS_FOR_BUILD)"; export AS; \
- CC="$(CC_FOR_BUILD)"; export CC; \
- CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
- CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
- CXX="$(CXX_FOR_BUILD)"; export CXX; \
- CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
- GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
- GOC="$(GOC_FOR_BUILD)"; export GOC; \
- GOCFLAGS="$(GOCFLAGS_FOR_BUILD)"; export GOCFLAGS; \
- DLLTOOL="$(DLLTOOL_FOR_BUILD)"; export DLLTOOL; \
- LD="$(LD_FOR_BUILD)"; export LD; \
- LDFLAGS="$(LDFLAGS_FOR_BUILD)"; export LDFLAGS; \
- NM="$(NM_FOR_BUILD)"; export NM; \
- RANLIB="$(RANLIB_FOR_BUILD)"; export RANLIB; \
- WINDRES="$(WINDRES_FOR_BUILD)"; export WINDRES; \
- WINDMC="$(WINDMC_FOR_BUILD)"; export WINDMC;
-
-# These variables must be set on the make command line for directories
-# built for the build system to override those in BASE_FLAGS_TO_PASS.
-EXTRA_BUILD_FLAGS = \
- CFLAGS="$(CFLAGS_FOR_BUILD)" \
- LDFLAGS="$(LDFLAGS_FOR_BUILD)"
-
-# This is the list of directories to built for the host system.
-SUBDIRS = libiberty bfd binutils
-TARGET_CONFIGDIRS =
-# This is set by the configure script to the arguments to use when configuring
-# directories built for the host system.
-HOST_CONFIGARGS = --cache-file=./config.cache --with-system-zlib '--disable-option-checking' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '--cache-file=/dev/null' --program-transform-name='s,y,y,' --disable-option-checking
-# Host programs are put under this directory, which is . except if building
-# with srcdir=..
-HOST_SUBDIR = .
-# This is the list of variables to export in the environment when
-# configuring subdirectories for the host system. We need to pass
-# some to the GCC configure because of its hybrid host/target nature.
-HOST_EXPORTS = \
- $(BASE_EXPORTS) \
- CC="$(CC)"; export CC; \
- ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
- CFLAGS="$(CFLAGS)"; export CFLAGS; \
- CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
- CXX="$(CXX)"; export CXX; \
- CXXFLAGS="$(CXXFLAGS)"; export CXXFLAGS; \
- GFORTRAN="$(GFORTRAN)"; export GFORTRAN; \
- GOC="$(GOC)"; export GOC; \
- AR="$(AR)"; export AR; \
- AS="$(AS)"; export AS; \
- CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \
- DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \
- LD="$(LD)"; export LD; \
- LDFLAGS="$(STAGE1_LDFLAGS) $(LDFLAGS)"; export LDFLAGS; \
- NM="$(NM)"; export NM; \
- RANLIB="$(RANLIB)"; export RANLIB; \
- WINDRES="$(WINDRES)"; export WINDRES; \
- WINDMC="$(WINDMC)"; export WINDMC; \
- OBJCOPY="$(OBJCOPY)"; export OBJCOPY; \
- OBJDUMP="$(OBJDUMP)"; export OBJDUMP; \
- READELF="$(READELF)"; export READELF; \
- AR_FOR_TARGET="$(AR_FOR_TARGET)"; export AR_FOR_TARGET; \
- AS_FOR_TARGET="$(AS_FOR_TARGET)"; export AS_FOR_TARGET; \
- GCC_FOR_TARGET="$(GCC_FOR_TARGET)"; export GCC_FOR_TARGET; \
- LD_FOR_TARGET="$(LD_FOR_TARGET)"; export LD_FOR_TARGET; \
- NM_FOR_TARGET="$(NM_FOR_TARGET)"; export NM_FOR_TARGET; \
- OBJDUMP_FOR_TARGET="$(OBJDUMP_FOR_TARGET)"; export OBJDUMP_FOR_TARGET; \
- OBJCOPY_FOR_TARGET="$(OBJCOPY_FOR_TARGET)"; export OBJCOPY_FOR_TARGET; \
- RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)"; export RANLIB_FOR_TARGET; \
- READELF_FOR_TARGET="$(READELF_FOR_TARGET)"; export READELF_FOR_TARGET; \
- TOPLEVEL_CONFIGURE_ARGUMENTS="$(TOPLEVEL_CONFIGURE_ARGUMENTS)"; export TOPLEVEL_CONFIGURE_ARGUMENTS; \
- HOST_LIBS="$(STAGE1_LIBS)"; export HOST_LIBS; \
- GMPLIBS="$(HOST_GMPLIBS)"; export GMPLIBS; \
- GMPINC="$(HOST_GMPINC)"; export GMPINC; \
- ISLLIBS="$(HOST_ISLLIBS)"; export ISLLIBS; \
- ISLINC="$(HOST_ISLINC)"; export ISLINC; \
- ISLVER="$(HOST_ISLVER)"; export ISLVER; \
- LIBELFLIBS="$(HOST_LIBELFLIBS)"; export LIBELFLIBS; \
- LIBELFINC="$(HOST_LIBELFINC)"; export LIBELFINC; \
- XGCC_FLAGS_FOR_TARGET="$(XGCC_FLAGS_FOR_TARGET)"; export XGCC_FLAGS_FOR_TARGET; \
- $(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR);
-
-POSTSTAGE1_CXX_EXPORT = \
- CXX='$(CXX)'; export CXX; \
- CXX_FOR_BUILD='$(CXX_FOR_BUILD)'; export CXX_FOR_BUILD;
-
-# Similar, for later GCC stages.
-POSTSTAGE1_HOST_EXPORTS = \
- $(HOST_EXPORTS) \
- CC="$(STAGE_CC_WRAPPER) $$r/$(HOST_SUBDIR)/prev-gcc/xgcc$(exeext) \
- -B$$r/$(HOST_SUBDIR)/prev-gcc/ -B$(build_tooldir)/bin/ \
- $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CC; \
- CC_FOR_BUILD="$$CC"; export CC_FOR_BUILD; \
- $(POSTSTAGE1_CXX_EXPORT) \
- $(LTO_EXPORTS) \
- GNATBIND="$$r/$(HOST_SUBDIR)/prev-gcc/gnatbind"; export GNATBIND; \
- LDFLAGS="$(POSTSTAGE1_LDFLAGS) $(BOOT_LDFLAGS)"; export LDFLAGS; \
- HOST_LIBS="$(POSTSTAGE1_LIBS)"; export HOST_LIBS;
-
-# Target libraries are put under this directory:
-TARGET_SUBDIR = x86_64-pc-linux-gnu
-# This is set by the configure script to the arguments to use when configuring
-# directories built for the target.
-TARGET_CONFIGARGS = --cache-file=./config.cache --enable-multilib '--disable-option-checking' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '--cache-file=/dev/null' --program-transform-name='s,y,y,' --disable-option-checking --with-target-subdir="$(TARGET_SUBDIR)"
-# This is the list of variables to export in the environment when
-# configuring subdirectories for the target system.
-BASE_TARGET_EXPORTS = \
- $(BASE_EXPORTS) \
- AR="$(AR_FOR_TARGET)"; export AR; \
- AS="$(COMPILER_AS_FOR_TARGET)"; export AS; \
- CC="$(CC_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CC; \
- CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
- CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
- CPPFLAGS="$(CPPFLAGS_FOR_TARGET)"; export CPPFLAGS; \
- CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
- GFORTRAN="$(GFORTRAN_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export GFORTRAN; \
- GOC="$(GOC_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export GOC; \
- DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
- LD="$(COMPILER_LD_FOR_TARGET)"; export LD; \
- LDFLAGS="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS; \
- LIPO="$(LIPO_FOR_TARGET)"; export LIPO; \
- NM="$(COMPILER_NM_FOR_TARGET)"; export NM; \
- OBJDUMP="$(OBJDUMP_FOR_TARGET)"; export OBJDUMP; \
- OBJCOPY="$(OBJCOPY_FOR_TARGET)"; export OBJCOPY; \
- RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
- READELF="$(READELF_FOR_TARGET)"; export READELF; \
- STRIP="$(STRIP_FOR_TARGET)"; export STRIP; \
- WINDRES="$(WINDRES_FOR_TARGET)"; export WINDRES; \
- WINDMC="$(WINDMC_FOR_TARGET)"; export WINDMC; \
- $(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR); \
- TARGET_CONFIGDIRS="$(TARGET_CONFIGDIRS)"; export TARGET_CONFIGDIRS;
-
-RAW_CXX_TARGET_EXPORTS = \
- $(BASE_TARGET_EXPORTS) \
- CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \
- CXX="$(RAW_CXX_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CXX;
-
-NORMAL_TARGET_EXPORTS = \
- $(BASE_TARGET_EXPORTS) \
- CXX="$(CXX_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CXX;
-
-# Where to find GMP
-HOST_GMPLIBS = -lmpc -lmpfr -lgmp
-HOST_GMPINC =
-
-# Where to find isl
-HOST_ISLLIBS = -lisl
-HOST_ISLINC =
-HOST_ISLVER = @islver@
-
-# Where to find libelf
-HOST_LIBELFLIBS = @libelflibs@
-HOST_LIBELFINC = @libelfinc@
-
-# ----------------------------------------------
-# Programs producing files for the BUILD machine
-# ----------------------------------------------
-
-SHELL = /bin/bash
-
-# pwd command to use. Allow user to override default by setting PWDCMD in
-# the environment to account for automounters. The make variable must not
-# be called PWDCMD, otherwise the value set here is passed to make
-# subprocesses and overrides the setting from the user's environment.
-# Don't use PWD since it is a common shell environment variable and we
-# don't want to corrupt it.
-PWD_COMMAND = $${PWDCMD-pwd}
-
-# compilers to use to create programs which must be run in the build
-# environment.
-AR_FOR_BUILD = $(AR)
-AS_FOR_BUILD = $(AS)
-CC_FOR_BUILD = $(CC)
-CFLAGS_FOR_BUILD = -g -O2
-CXXFLAGS_FOR_BUILD = -g -O2
-CXX_FOR_BUILD = $(CXX)
-DLLTOOL_FOR_BUILD = $(DLLTOOL)
-GFORTRAN_FOR_BUILD = $(GFORTRAN)
-GOC_FOR_BUILD = $(GOC)
-LDFLAGS_FOR_BUILD =
-LD_FOR_BUILD = $(LD)
-NM_FOR_BUILD = $(NM)
-RANLIB_FOR_BUILD = $(RANLIB)
-WINDMC_FOR_BUILD = $(WINDMC)
-WINDRES_FOR_BUILD = $(WINDRES)
-
-# Special variables passed down in EXTRA_GCC_FLAGS. They are defined
-# here so that they can be overridden by Makefile fragments.
-BUILD_PREFIX = @BUILD_PREFIX@
-BUILD_PREFIX_1 = @BUILD_PREFIX_1@
-
-# Flags to pass to stage2 and later makes. They are defined
-# here so that they can be overridden by Makefile fragments.
-BOOT_CFLAGS= -g -O2
-BOOT_LDFLAGS=
-BOOT_ADAFLAGS= -gnatpg
-
-AWK = gawk
-SED = /bin/sed
-BISON = bison
-YACC = bison -y
-FLEX = flex
-LEX = flex
-M4 = m4
-MAKEINFO = makeinfo
-EXPECT = expect
-RUNTEST = runtest
-
-AUTO_PROFILE = gcc-auto-profile -c 1000000
-
-# This just becomes part of the MAKEINFO definition passed down to
-# sub-makes. It lets flags be given on the command line while still
-# using the makeinfo from the object tree.
-# (Default to avoid splitting info files by setting the threshold high.)
-MAKEINFOFLAGS = --split-size=5000000
-
-# ---------------------------------------------
-# Programs producing files for the HOST machine
-# ---------------------------------------------
-
-AS = as
-AR = ar
-AR_FLAGS = rc
-CC = gcc
-CXX = g++
-DLLTOOL = dlltool
-LD = ld
-LIPO = lipo
-NM = nm
-OBJDUMP = objdump
-RANLIB = ranlib
-READELF = readelf
-STRIP = strip
-WINDRES = windres
-WINDMC = windmc
-
-GNATBIND = no
-GNATMAKE = no
-
-CFLAGS = -g -O2
-LDFLAGS =
-LIBCFLAGS = $(CFLAGS)
-CXXFLAGS = -g -O2
-LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
-GOCFLAGS = $(CFLAGS)
-
-CREATE_GCOV = create_gcov
-
-TFLAGS =
-
-# Defaults for all stages; some are overridden below.
-
-STAGE_CFLAGS = $(BOOT_CFLAGS)
-STAGE_TFLAGS = $(TFLAGS)
-STAGE_CONFIGURE_FLAGS=
-
-
-# Defaults for stage 1; some are overridden below.
-STAGE1_CFLAGS = $(STAGE_CFLAGS)
-STAGE1_CXXFLAGS = $(CXXFLAGS)
-STAGE1_TFLAGS = $(STAGE_TFLAGS)
-STAGE1_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS)
-
-# Defaults for stage 2; some are overridden below.
-STAGE2_CFLAGS = $(STAGE_CFLAGS)
-STAGE2_CXXFLAGS = $(CXXFLAGS)
-STAGE2_TFLAGS = $(STAGE_TFLAGS)
-STAGE2_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS)
-
-# Defaults for stage 3; some are overridden below.
-STAGE3_CFLAGS = $(STAGE_CFLAGS)
-STAGE3_CXXFLAGS = $(CXXFLAGS)
-STAGE3_TFLAGS = $(STAGE_TFLAGS)
-STAGE3_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS)
-
-# Defaults for stage 4; some are overridden below.
-STAGE4_CFLAGS = $(STAGE_CFLAGS)
-STAGE4_CXXFLAGS = $(CXXFLAGS)
-STAGE4_TFLAGS = $(STAGE_TFLAGS)
-STAGE4_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS)
-
-# Defaults for stage profile; some are overridden below.
-STAGEprofile_CFLAGS = $(STAGE_CFLAGS)
-STAGEprofile_CXXFLAGS = $(CXXFLAGS)
-STAGEprofile_TFLAGS = $(STAGE_TFLAGS)
-STAGEprofile_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS)
-
-# Defaults for stage feedback; some are overridden below.
-STAGEfeedback_CFLAGS = $(STAGE_CFLAGS)
-STAGEfeedback_CXXFLAGS = $(CXXFLAGS)
-STAGEfeedback_TFLAGS = $(STAGE_TFLAGS)
-STAGEfeedback_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS)
-
-
-# By default, C and C++ are the only stage1 languages, because they are the
-# only ones we require to build with the bootstrap compiler, and also the
-# only ones useful for building stage2.
-
-STAGE1_CFLAGS = -g
-STAGE1_CHECKING = --enable-checking=yes,types
-STAGE1_LANGUAGES = ,c,
-# * We force-disable intermodule optimizations, even if
-# --enable-intermodule was passed, since the installed compiler
-# probably can't handle them. Luckily, autoconf always respects
-# the last argument when conflicting --enable arguments are passed.
-# * Likewise, we force-disable coverage flags, since the installed
-# compiler probably has never heard of them.
-# * We also disable -Wformat, since older GCCs don't understand newer %s.
-STAGE1_CONFIGURE_FLAGS = --disable-intermodule $(STAGE1_CHECKING) \
- --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)" \
- --disable-build-format-warnings
-
-STAGEprofile_CFLAGS = $(STAGE2_CFLAGS) -fprofile-generate
-STAGEprofile_TFLAGS = $(STAGE2_TFLAGS)
-
-STAGEfeedback_CFLAGS = $(STAGE3_CFLAGS) -fprofile-use
-STAGEfeedback_TFLAGS = $(STAGE3_TFLAGS)
-
-STAGEautoprofile_CFLAGS = $(STAGE2_CFLAGS) -g
-STAGEautoprofile_TFLAGS = $(STAGE2_TFLAGS)
-
-STAGEautofeedback_CFLAGS = $(STAGE3_CFLAGS)
-STAGEautofeedback_TFLAGS = $(STAGE3_TFLAGS)
-
-do-compare = cmp --ignore-initial=16 $$f1 $$f2
-do-compare3 = $(do-compare)
-
-# -----------------------------------------------
-# Programs producing files for the TARGET machine
-# -----------------------------------------------
-
-AR_FOR_TARGET=$$r/$(HOST_SUBDIR)/binutils/ar
-AS_FOR_TARGET=$(AS)
-CC_FOR_TARGET=$(STAGE_CC_WRAPPER) $(CC)
-
-# If GCC_FOR_TARGET is not overriden on the command line, then this
-# variable is passed down to the gcc Makefile, where it is used to
-# build libgcc2.a. We define it here so that it can itself be
-# overridden on the command line.
-GCC_FOR_TARGET=$(STAGE_CC_WRAPPER) $()
-CXX_FOR_TARGET=$(STAGE_CC_WRAPPER) $(CXX)
-RAW_CXX_FOR_TARGET=$(STAGE_CC_WRAPPER) $(CXX)
-GFORTRAN_FOR_TARGET=$(STAGE_CC_WRAPPER) $(GFORTRAN)
-GOC_FOR_TARGET=$(STAGE_CC_WRAPPER) $(GOC)
-DLLTOOL_FOR_TARGET=$$r/$(HOST_SUBDIR)/binutils/dlltool
-LD_FOR_TARGET=$(LD)
-
-LIPO_FOR_TARGET=$(LIPO)
-NM_FOR_TARGET=$$r/$(HOST_SUBDIR)/binutils/nm-new
-OBJDUMP_FOR_TARGET=$$r/$(HOST_SUBDIR)/binutils/objdump
-OBJCOPY_FOR_TARGET=$$r/$(HOST_SUBDIR)/binutils/objcopy
-RANLIB_FOR_TARGET=$$r/$(HOST_SUBDIR)/binutils/ranlib
-READELF_FOR_TARGET=$$r/$(HOST_SUBDIR)/binutils/readelf
-STRIP_FOR_TARGET=$$r/$(HOST_SUBDIR)/binutils/strip-new
-WINDRES_FOR_TARGET=$$r/$(HOST_SUBDIR)/binutils/windres
-WINDMC_FOR_TARGET=$$r/$(HOST_SUBDIR)/binutils/windmc
-
-COMPILER_AS_FOR_TARGET=$(AS_FOR_TARGET)
-COMPILER_LD_FOR_TARGET=$(LD_FOR_TARGET)
-COMPILER_NM_FOR_TARGET=$(NM_FOR_TARGET)
-
-CFLAGS_FOR_TARGET = -g -O2
-CXXFLAGS_FOR_TARGET = -g -O2
-
-LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
-LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
-LDFLAGS_FOR_TARGET =
-GOCFLAGS_FOR_TARGET = -O2 -g
-
-FLAGS_FOR_TARGET =
-SYSROOT_CFLAGS_FOR_TARGET =
-DEBUG_PREFIX_CFLAGS_FOR_TARGET =
-
-XGCC_FLAGS_FOR_TARGET = $(FLAGS_FOR_TARGET) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)
-
-# ------------------------------------
-# Miscellaneous targets and flag lists
-# ------------------------------------
-
-# The first rule in the file had better be this one. Don't put any above it.
-# This lives here to allow makefile fragments to contain dependencies.
-all:
-
-#### host and target specific makefile fragments come in here.
-CXXFLAGS_FOR_TARGET += -D_GNU_SOURCE
-###
-
-# This is the list of directories that may be needed in RPATH_ENVVAR
-# so that programs built for the target machine work.
-TARGET_LIB_PATH = $(TARGET_LIB_PATH_libstdc++-v3)$(TARGET_LIB_PATH_libsanitizer)$(TARGET_LIB_PATH_libmpx)$(TARGET_LIB_PATH_libvtv)$(TARGET_LIB_PATH_libcilkrts)$(TARGET_LIB_PATH_liboffloadmic)$(TARGET_LIB_PATH_libssp)$(TARGET_LIB_PATH_libgomp)$(TARGET_LIB_PATH_libitm)$(TARGET_LIB_PATH_libatomic)$(HOST_LIB_PATH_gcc)
-
-
-
-
-
-
-
-
-
-
-
-
-
-# This is the list of directories that may be needed in RPATH_ENVVAR
-# so that programs built for the host machine work.
-HOST_LIB_PATH = $(HOST_LIB_PATH_gmp)$(HOST_LIB_PATH_mpfr)$(HOST_LIB_PATH_mpc)$(HOST_LIB_PATH_isl)$(HOST_LIB_PATH_libelf)
-
-# Define HOST_LIB_PATH_gcc here, for the sake of TARGET_LIB_PATH, ouch
-
-
-
-
-
-
-
-
-CXX_FOR_TARGET_FLAG_TO_PASS = \
- "CXX_FOR_TARGET=$(CXX_FOR_TARGET)"
-
-# Flags to pass down to all sub-makes. STAGE*FLAGS,
-# MAKEINFO and MAKEINFOFLAGS are explicitly passed here to make them
-# overrideable (for a bootstrap build stage1 also builds gcc.info).
-BASE_FLAGS_TO_PASS = \
- "DESTDIR=$(DESTDIR)" \
- "RPATH_ENVVAR=$(RPATH_ENVVAR)" \
- "TARGET_SUBDIR=$(TARGET_SUBDIR)" \
- "bindir=$(bindir)" \
- "datadir=$(datadir)" \
- "exec_prefix=$(exec_prefix)" \
- "includedir=$(includedir)" \
- "datarootdir=$(datarootdir)" \
- "docdir=$(docdir)" \
- "infodir=$(infodir)" \
- "pdfdir=$(pdfdir)" \
- "htmldir=$(htmldir)" \
- "libdir=$(libdir)" \
- "libexecdir=$(libexecdir)" \
- "lispdir=$(lispdir)" \
- "localstatedir=$(localstatedir)" \
- "mandir=$(mandir)" \
- "oldincludedir=$(oldincludedir)" \
- "prefix=$(prefix)" \
- "sbindir=$(sbindir)" \
- "sharedstatedir=$(sharedstatedir)" \
- "sysconfdir=$(sysconfdir)" \
- "tooldir=$(tooldir)" \
- "build_tooldir=$(build_tooldir)" \
- "target_alias=$(target_alias)" \
- "AWK=$(AWK)" \
- "BISON=$(BISON)" \
- "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
- "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
- "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
- "EXPECT=$(EXPECT)" \
- "FLEX=$(FLEX)" \
- "INSTALL=$(INSTALL)" \
- "INSTALL_DATA=$(INSTALL_DATA)" \
- "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
- "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
- "LDFLAGS_FOR_BUILD=$(LDFLAGS_FOR_BUILD)" \
- "LEX=$(LEX)" \
- "M4=$(M4)" \
- "MAKE=$(MAKE)" \
- "RUNTEST=$(RUNTEST)" \
- "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
- "SED=$(SED)" \
- "SHELL=$(SHELL)" \
- "YACC=$(YACC)" \
- "`echo 'ADAFLAGS=$(ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
- "ADA_CFLAGS=$(ADA_CFLAGS)" \
- "AR_FLAGS=$(AR_FLAGS)" \
- "`echo 'BOOT_ADAFLAGS=$(BOOT_ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
- "BOOT_CFLAGS=$(BOOT_CFLAGS)" \
- "BOOT_LDFLAGS=$(BOOT_LDFLAGS)" \
- "CFLAGS=$(CFLAGS)" \
- "CXXFLAGS=$(CXXFLAGS)" \
- "LDFLAGS=$(LDFLAGS)" \
- "LIBCFLAGS=$(LIBCFLAGS)" \
- "LIBCXXFLAGS=$(LIBCXXFLAGS)" \
- "STAGE1_CHECKING=$(STAGE1_CHECKING)" \
- "STAGE1_LANGUAGES=$(STAGE1_LANGUAGES)" \
- "GNATBIND=$(GNATBIND)" \
- "GNATMAKE=$(GNATMAKE)" \
- "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
- "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
- "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
- "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
- "CPPFLAGS_FOR_TARGET=$(CPPFLAGS_FOR_TARGET)" \
- "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
- "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
- "FLAGS_FOR_TARGET=$(FLAGS_FOR_TARGET)" \
- "GFORTRAN_FOR_TARGET=$(GFORTRAN_FOR_TARGET)" \
- "GOC_FOR_TARGET=$(GOC_FOR_TARGET)" \
- "GOCFLAGS_FOR_TARGET=$(GOCFLAGS_FOR_TARGET)" \
- "LD_FOR_TARGET=$(LD_FOR_TARGET)" \
- "LIPO_FOR_TARGET=$(LIPO_FOR_TARGET)" \
- "LDFLAGS_FOR_TARGET=$(LDFLAGS_FOR_TARGET)" \
- "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
- "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
- "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
- "OBJDUMP_FOR_TARGET=$(OBJDUMP_FOR_TARGET)" \
- "OBJCOPY_FOR_TARGET=$(OBJCOPY_FOR_TARGET)" \
- "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
- "READELF_FOR_TARGET=$(READELF_FOR_TARGET)" \
- "STRIP_FOR_TARGET=$(STRIP_FOR_TARGET)" \
- "WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
- "WINDMC_FOR_TARGET=$(WINDMC_FOR_TARGET)" \
- "BUILD_CONFIG=$(BUILD_CONFIG)" \
- "`echo 'LANGUAGES=$(LANGUAGES)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
- "LEAN=$(LEAN)" \
- "STAGE1_CFLAGS=$(STAGE1_CFLAGS)" \
- "STAGE1_CXXFLAGS=$(STAGE1_CXXFLAGS)" \
- "STAGE1_TFLAGS=$(STAGE1_TFLAGS)" \
- "STAGE2_CFLAGS=$(STAGE2_CFLAGS)" \
- "STAGE2_CXXFLAGS=$(STAGE2_CXXFLAGS)" \
- "STAGE2_TFLAGS=$(STAGE2_TFLAGS)" \
- "STAGE3_CFLAGS=$(STAGE3_CFLAGS)" \
- "STAGE3_CXXFLAGS=$(STAGE3_CXXFLAGS)" \
- "STAGE3_TFLAGS=$(STAGE3_TFLAGS)" \
- "STAGE4_CFLAGS=$(STAGE4_CFLAGS)" \
- "STAGE4_CXXFLAGS=$(STAGE4_CXXFLAGS)" \
- "STAGE4_TFLAGS=$(STAGE4_TFLAGS)" \
- "STAGEprofile_CFLAGS=$(STAGEprofile_CFLAGS)" \
- "STAGEprofile_CXXFLAGS=$(STAGEprofile_CXXFLAGS)" \
- "STAGEprofile_TFLAGS=$(STAGEprofile_TFLAGS)" \
- "STAGEfeedback_CFLAGS=$(STAGEfeedback_CFLAGS)" \
- "STAGEfeedback_CXXFLAGS=$(STAGEfeedback_CXXFLAGS)" \
- "STAGEfeedback_TFLAGS=$(STAGEfeedback_TFLAGS)" \
- $(CXX_FOR_TARGET_FLAG_TO_PASS) \
- "TFLAGS=$(TFLAGS)" \
- "CONFIG_SHELL=$(SHELL)" \
- "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
- $(if $(LSAN_OPTIONS),"LSAN_OPTIONS=$(LSAN_OPTIONS)")
-
-# We leave this in just in case, but it is not needed anymore.
-RECURSE_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS)
-
-# Flags to pass down to most sub-makes, in which we're building with
-# the host environment.
-EXTRA_HOST_FLAGS = \
- 'AR=$(AR)' \
- 'AS=$(AS)' \
- 'CC=$(CC)' \
- 'CXX=$(CXX)' \
- 'DLLTOOL=$(DLLTOOL)' \
- 'GFORTRAN=$(GFORTRAN)' \
- 'GOC=$(GOC)' \
- 'LD=$(LD)' \
- 'LIPO=$(LIPO)' \
- 'NM=$(NM)' \
- 'OBJDUMP=$(OBJDUMP)' \
- 'RANLIB=$(RANLIB)' \
- 'READELF=$(READELF)' \
- 'STRIP=$(STRIP)' \
- 'WINDRES=$(WINDRES)' \
- 'WINDMC=$(WINDMC)' \
- 'CREATE_GCOV=$(CREATE_GCOV)'
-
-FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)
-
-# Flags to pass to stage1 or when not bootstrapping.
-
-STAGE1_FLAGS_TO_PASS = \
- LDFLAGS="$${LDFLAGS}" \
- HOST_LIBS="$${HOST_LIBS}"
-
-# Flags to pass to stage2 and later makes.
-
-POSTSTAGE1_FLAGS_TO_PASS = \
- CC="$${CC}" CC_FOR_BUILD="$${CC_FOR_BUILD}" \
- CXX="$${CXX}" CXX_FOR_BUILD="$${CXX_FOR_BUILD}" \
- GNATBIND="$${GNATBIND}" \
- LDFLAGS="$${LDFLAGS}" \
- HOST_LIBS="$${HOST_LIBS}" \
- $(LTO_FLAGS_TO_PASS) \
- "`echo 'ADAFLAGS=$(BOOT_ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`"
-
-
-# Flags to pass down to makes which are built with the target environment.
-# The double $ decreases the length of the command line; those variables
-# are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them. The
-# *_CFLAGS_FOR_TARGET variables are not passed down and most often empty,
-# so we expand them here.
-EXTRA_TARGET_FLAGS = \
- 'AR=$$(AR_FOR_TARGET)' \
- 'AS=$(COMPILER_AS_FOR_TARGET)' \
- 'CC=$$(CC_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
- 'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
- 'CXX=$$(CXX_FOR_TARGET) -B$$r/$$(TARGET_SUBDIR)/libstdc++-v3/src/.libs \
- -B$$r/$$(TARGET_SUBDIR)/libstdc++-v3/libsupc++/.libs \
- $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
- 'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
- 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
- 'GFORTRAN=$$(GFORTRAN_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
- 'GOC=$$(GOC_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
- 'GOCFLAGS=$$(GOCFLAGS_FOR_TARGET)' \
- 'LD=$(COMPILER_LD_FOR_TARGET)' \
- 'LDFLAGS=$$(LDFLAGS_FOR_TARGET)' \
- 'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
- 'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
- 'NM=$(COMPILER_NM_FOR_TARGET)' \
- 'OBJDUMP=$$(OBJDUMP_FOR_TARGET)' \
- 'OBJCOPY=$$(OBJCOPY_FOR_TARGET)' \
- 'RANLIB=$$(RANLIB_FOR_TARGET)' \
- 'READELF=$$(READELF_FOR_TARGET)' \
- 'WINDRES=$$(WINDRES_FOR_TARGET)' \
- 'WINDMC=$$(WINDMC_FOR_TARGET)' \
- 'XGCC_FLAGS_FOR_TARGET=$(XGCC_FLAGS_FOR_TARGET)' \
- 'STAGE1_LDFLAGS=$$(POSTSTAGE1_LDFLAGS)' \
- 'STAGE1_LIBS=$$(POSTSTAGE1_LIBS)' \
- "TFLAGS=$$TFLAGS"
-
-TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
-
-# Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
-# unfortunately needs the native compiler and the target ar and
-# ranlib.
-# If any variables are added here, they must be added to do-*, below.
-# The BUILD_* variables are a special case, which are used for the gcc
-# cross-building scheme.
-EXTRA_GCC_FLAGS = \
- "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
- "`echo 'STMP_FIXPROTO=$(STMP_FIXPROTO)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
- "`echo 'LIMITS_H_TEST=$(LIMITS_H_TEST)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`"
-
-GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS)
-
-
-.PHONY: configure-host
-configure-host: \
- maybe-configure-bfd \
- maybe-configure-opcodes \
- maybe-configure-binutils \
- maybe-configure-bison \
- maybe-configure-cgen \
- maybe-configure-dejagnu \
- maybe-configure-etc \
- maybe-configure-fastjar \
- maybe-configure-fixincludes \
- maybe-configure-flex \
- maybe-configure-gas \
- maybe-configure-gcc \
- maybe-configure-gmp \
- maybe-configure-mpfr \
- maybe-configure-mpc \
- maybe-configure-isl \
- maybe-configure-libelf \
- maybe-configure-gold \
- maybe-configure-gprof \
- maybe-configure-intl \
- maybe-configure-tcl \
- maybe-configure-itcl \
- maybe-configure-ld \
- maybe-configure-libbacktrace \
- maybe-configure-libcpp \
- maybe-configure-libdecnumber \
- maybe-configure-libgui \
- maybe-configure-libiberty \
- maybe-configure-libiberty-linker-plugin \
- maybe-configure-libiconv \
- maybe-configure-m4 \
- maybe-configure-readline \
- maybe-configure-sid \
- maybe-configure-sim \
- maybe-configure-texinfo \
- maybe-configure-zlib \
- maybe-configure-gdb \
- maybe-configure-expect \
- maybe-configure-guile \
- maybe-configure-tk \
- maybe-configure-libtermcap \
- maybe-configure-utils \
- maybe-configure-gnattools \
- maybe-configure-lto-plugin \
- maybe-configure-libcc1 \
- maybe-configure-gotools
-.PHONY: configure-target
-configure-target: \
- maybe-configure-target-libstdc++-v3 \
- maybe-configure-target-libsanitizer \
- maybe-configure-target-libmpx \
- maybe-configure-target-libvtv \
- maybe-configure-target-libcilkrts \
- maybe-configure-target-liboffloadmic \
- maybe-configure-target-libssp \
- maybe-configure-target-newlib \
- maybe-configure-target-libgcc \
- maybe-configure-target-libbacktrace \
- maybe-configure-target-libquadmath \
- maybe-configure-target-libgfortran \
- maybe-configure-target-libobjc \
- maybe-configure-target-libgo \
- maybe-configure-target-libtermcap \
- maybe-configure-target-winsup \
- maybe-configure-target-libgloss \
- maybe-configure-target-libffi \
- maybe-configure-target-zlib \
- maybe-configure-target-rda \
- maybe-configure-target-libada \
- maybe-configure-target-libgomp \
- maybe-configure-target-libitm \
- maybe-configure-target-libatomic
-
-# The target built for a native non-bootstrap build.
-.PHONY: all
-all:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-host all-target \
- && :
-
-.PHONY: all-build
-
-all-build: maybe-all-build-libiberty
-all-build: maybe-all-build-bison
-all-build: maybe-all-build-flex
-all-build: maybe-all-build-m4
-all-build: maybe-all-build-texinfo
-all-build: maybe-all-build-fixincludes
-all-build: maybe-all-build-libcpp
-
-.PHONY: all-host
-
-all-host: maybe-all-bfd
-all-host: maybe-all-binutils
-all-host: maybe-all-bison
-all-host: maybe-all-cgen
-all-host: maybe-all-dejagnu
-all-host: maybe-all-etc
-all-host: maybe-all-fastjar
-all-host: maybe-all-flex
-all-host: maybe-all-gprof
-all-host: maybe-all-tcl
-all-host: maybe-all-itcl
-all-host: maybe-all-libgui
-all-host: maybe-all-libiberty
-all-host: maybe-all-m4
-all-host: maybe-all-readline
-all-host: maybe-all-sid
-all-host: maybe-all-sim
-all-host: maybe-all-texinfo
-all-host: maybe-all-gdb
-all-host: maybe-all-expect
-all-host: maybe-all-guile
-all-host: maybe-all-tk
-all-host: maybe-all-libtermcap
-all-host: maybe-all-utils
-all-host: maybe-all-gnattools
-all-host: maybe-all-libcc1
-all-host: maybe-all-gotools
-
-.PHONY: all-target
-
-all-target: maybe-all-target-libcilkrts
-all-target: maybe-all-target-liboffloadmic
-all-target: maybe-all-target-libssp
-all-target: maybe-all-target-newlib
-all-target: maybe-all-target-libbacktrace
-all-target: maybe-all-target-libquadmath
-all-target: maybe-all-target-libgfortran
-all-target: maybe-all-target-libobjc
-all-target: maybe-all-target-libgo
-all-target: maybe-all-target-libtermcap
-all-target: maybe-all-target-winsup
-all-target: maybe-all-target-libgloss
-all-target: maybe-all-target-libffi
-all-target: maybe-all-target-zlib
-all-target: maybe-all-target-rda
-all-target: maybe-all-target-libada
-all-target: maybe-all-target-libitm
-all-target: maybe-all-target-libatomic
-
-# Do a target for all the subdirectories. A ``make do-X'' will do a
-# ``make X'' in all subdirectories (because, in general, there is a
-# dependency (below) of X upon do-X, a ``make X'' will also do this,
-# but it may do additional work as well).
-
-.PHONY: do-info
-do-info:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) info-host \
- info-target
-
-
-.PHONY: info-host
-
-info-host: maybe-info-bfd
-info-host: maybe-info-opcodes
-info-host: maybe-info-binutils
-info-host: maybe-info-bison
-info-host: maybe-info-cgen
-info-host: maybe-info-dejagnu
-info-host: maybe-info-etc
-info-host: maybe-info-fastjar
-info-host: maybe-info-fixincludes
-info-host: maybe-info-flex
-info-host: maybe-info-gas
-info-host: maybe-info-gcc
-info-host: maybe-info-gmp
-info-host: maybe-info-mpfr
-info-host: maybe-info-mpc
-info-host: maybe-info-isl
-info-host: maybe-info-libelf
-info-host: maybe-info-gold
-info-host: maybe-info-gprof
-info-host: maybe-info-intl
-info-host: maybe-info-tcl
-info-host: maybe-info-itcl
-info-host: maybe-info-ld
-info-host: maybe-info-libbacktrace
-info-host: maybe-info-libcpp
-info-host: maybe-info-libdecnumber
-info-host: maybe-info-libgui
-info-host: maybe-info-libiberty
-info-host: maybe-info-libiberty-linker-plugin
-info-host: maybe-info-libiconv
-info-host: maybe-info-m4
-info-host: maybe-info-readline
-info-host: maybe-info-sid
-info-host: maybe-info-sim
-info-host: maybe-info-texinfo
-info-host: maybe-info-zlib
-info-host: maybe-info-gdb
-info-host: maybe-info-expect
-info-host: maybe-info-guile
-info-host: maybe-info-tk
-info-host: maybe-info-libtermcap
-info-host: maybe-info-utils
-info-host: maybe-info-gnattools
-info-host: maybe-info-lto-plugin
-info-host: maybe-info-libcc1
-info-host: maybe-info-gotools
-
-.PHONY: info-target
-
-info-target: maybe-info-target-libstdc++-v3
-info-target: maybe-info-target-libsanitizer
-info-target: maybe-info-target-libmpx
-info-target: maybe-info-target-libvtv
-info-target: maybe-info-target-libcilkrts
-info-target: maybe-info-target-liboffloadmic
-info-target: maybe-info-target-libssp
-info-target: maybe-info-target-newlib
-info-target: maybe-info-target-libgcc
-info-target: maybe-info-target-libbacktrace
-info-target: maybe-info-target-libquadmath
-info-target: maybe-info-target-libgfortran
-info-target: maybe-info-target-libobjc
-info-target: maybe-info-target-libgo
-info-target: maybe-info-target-libtermcap
-info-target: maybe-info-target-winsup
-info-target: maybe-info-target-libgloss
-info-target: maybe-info-target-libffi
-info-target: maybe-info-target-zlib
-info-target: maybe-info-target-rda
-info-target: maybe-info-target-libada
-info-target: maybe-info-target-libgomp
-info-target: maybe-info-target-libitm
-info-target: maybe-info-target-libatomic
-
-.PHONY: do-dvi
-do-dvi:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) dvi-host \
- dvi-target
-
-
-.PHONY: dvi-host
-
-dvi-host: maybe-dvi-bfd
-dvi-host: maybe-dvi-opcodes
-dvi-host: maybe-dvi-binutils
-dvi-host: maybe-dvi-bison
-dvi-host: maybe-dvi-cgen
-dvi-host: maybe-dvi-dejagnu
-dvi-host: maybe-dvi-etc
-dvi-host: maybe-dvi-fastjar
-dvi-host: maybe-dvi-fixincludes
-dvi-host: maybe-dvi-flex
-dvi-host: maybe-dvi-gas
-dvi-host: maybe-dvi-gcc
-dvi-host: maybe-dvi-gmp
-dvi-host: maybe-dvi-mpfr
-dvi-host: maybe-dvi-mpc
-dvi-host: maybe-dvi-isl
-dvi-host: maybe-dvi-libelf
-dvi-host: maybe-dvi-gold
-dvi-host: maybe-dvi-gprof
-dvi-host: maybe-dvi-intl
-dvi-host: maybe-dvi-tcl
-dvi-host: maybe-dvi-itcl
-dvi-host: maybe-dvi-ld
-dvi-host: maybe-dvi-libbacktrace
-dvi-host: maybe-dvi-libcpp
-dvi-host: maybe-dvi-libdecnumber
-dvi-host: maybe-dvi-libgui
-dvi-host: maybe-dvi-libiberty
-dvi-host: maybe-dvi-libiberty-linker-plugin
-dvi-host: maybe-dvi-libiconv
-dvi-host: maybe-dvi-m4
-dvi-host: maybe-dvi-readline
-dvi-host: maybe-dvi-sid
-dvi-host: maybe-dvi-sim
-dvi-host: maybe-dvi-texinfo
-dvi-host: maybe-dvi-zlib
-dvi-host: maybe-dvi-gdb
-dvi-host: maybe-dvi-expect
-dvi-host: maybe-dvi-guile
-dvi-host: maybe-dvi-tk
-dvi-host: maybe-dvi-libtermcap
-dvi-host: maybe-dvi-utils
-dvi-host: maybe-dvi-gnattools
-dvi-host: maybe-dvi-lto-plugin
-dvi-host: maybe-dvi-libcc1
-dvi-host: maybe-dvi-gotools
-
-.PHONY: dvi-target
-
-dvi-target: maybe-dvi-target-libstdc++-v3
-dvi-target: maybe-dvi-target-libsanitizer
-dvi-target: maybe-dvi-target-libmpx
-dvi-target: maybe-dvi-target-libvtv
-dvi-target: maybe-dvi-target-libcilkrts
-dvi-target: maybe-dvi-target-liboffloadmic
-dvi-target: maybe-dvi-target-libssp
-dvi-target: maybe-dvi-target-newlib
-dvi-target: maybe-dvi-target-libgcc
-dvi-target: maybe-dvi-target-libbacktrace
-dvi-target: maybe-dvi-target-libquadmath
-dvi-target: maybe-dvi-target-libgfortran
-dvi-target: maybe-dvi-target-libobjc
-dvi-target: maybe-dvi-target-libgo
-dvi-target: maybe-dvi-target-libtermcap
-dvi-target: maybe-dvi-target-winsup
-dvi-target: maybe-dvi-target-libgloss
-dvi-target: maybe-dvi-target-libffi
-dvi-target: maybe-dvi-target-zlib
-dvi-target: maybe-dvi-target-rda
-dvi-target: maybe-dvi-target-libada
-dvi-target: maybe-dvi-target-libgomp
-dvi-target: maybe-dvi-target-libitm
-dvi-target: maybe-dvi-target-libatomic
-
-.PHONY: do-pdf
-do-pdf:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) pdf-host \
- pdf-target
-
-
-.PHONY: pdf-host
-
-pdf-host: maybe-pdf-bfd
-pdf-host: maybe-pdf-opcodes
-pdf-host: maybe-pdf-binutils
-pdf-host: maybe-pdf-bison
-pdf-host: maybe-pdf-cgen
-pdf-host: maybe-pdf-dejagnu
-pdf-host: maybe-pdf-etc
-pdf-host: maybe-pdf-fastjar
-pdf-host: maybe-pdf-fixincludes
-pdf-host: maybe-pdf-flex
-pdf-host: maybe-pdf-gas
-pdf-host: maybe-pdf-gcc
-pdf-host: maybe-pdf-gmp
-pdf-host: maybe-pdf-mpfr
-pdf-host: maybe-pdf-mpc
-pdf-host: maybe-pdf-isl
-pdf-host: maybe-pdf-libelf
-pdf-host: maybe-pdf-gold
-pdf-host: maybe-pdf-gprof
-pdf-host: maybe-pdf-intl
-pdf-host: maybe-pdf-tcl
-pdf-host: maybe-pdf-itcl
-pdf-host: maybe-pdf-ld
-pdf-host: maybe-pdf-libbacktrace
-pdf-host: maybe-pdf-libcpp
-pdf-host: maybe-pdf-libdecnumber
-pdf-host: maybe-pdf-libgui
-pdf-host: maybe-pdf-libiberty
-pdf-host: maybe-pdf-libiberty-linker-plugin
-pdf-host: maybe-pdf-libiconv
-pdf-host: maybe-pdf-m4
-pdf-host: maybe-pdf-readline
-pdf-host: maybe-pdf-sid
-pdf-host: maybe-pdf-sim
-pdf-host: maybe-pdf-texinfo
-pdf-host: maybe-pdf-zlib
-pdf-host: maybe-pdf-gdb
-pdf-host: maybe-pdf-expect
-pdf-host: maybe-pdf-guile
-pdf-host: maybe-pdf-tk
-pdf-host: maybe-pdf-libtermcap
-pdf-host: maybe-pdf-utils
-pdf-host: maybe-pdf-gnattools
-pdf-host: maybe-pdf-lto-plugin
-pdf-host: maybe-pdf-libcc1
-pdf-host: maybe-pdf-gotools
-
-.PHONY: pdf-target
-
-pdf-target: maybe-pdf-target-libstdc++-v3
-pdf-target: maybe-pdf-target-libsanitizer
-pdf-target: maybe-pdf-target-libmpx
-pdf-target: maybe-pdf-target-libvtv
-pdf-target: maybe-pdf-target-libcilkrts
-pdf-target: maybe-pdf-target-liboffloadmic
-pdf-target: maybe-pdf-target-libssp
-pdf-target: maybe-pdf-target-newlib
-pdf-target: maybe-pdf-target-libgcc
-pdf-target: maybe-pdf-target-libbacktrace
-pdf-target: maybe-pdf-target-libquadmath
-pdf-target: maybe-pdf-target-libgfortran
-pdf-target: maybe-pdf-target-libobjc
-pdf-target: maybe-pdf-target-libgo
-pdf-target: maybe-pdf-target-libtermcap
-pdf-target: maybe-pdf-target-winsup
-pdf-target: maybe-pdf-target-libgloss
-pdf-target: maybe-pdf-target-libffi
-pdf-target: maybe-pdf-target-zlib
-pdf-target: maybe-pdf-target-rda
-pdf-target: maybe-pdf-target-libada
-pdf-target: maybe-pdf-target-libgomp
-pdf-target: maybe-pdf-target-libitm
-pdf-target: maybe-pdf-target-libatomic
-
-.PHONY: do-html
-do-html:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) html-host \
- html-target
-
-
-.PHONY: html-host
-
-html-host: maybe-html-bfd
-html-host: maybe-html-opcodes
-html-host: maybe-html-binutils
-html-host: maybe-html-bison
-html-host: maybe-html-cgen
-html-host: maybe-html-dejagnu
-html-host: maybe-html-etc
-html-host: maybe-html-fastjar
-html-host: maybe-html-fixincludes
-html-host: maybe-html-flex
-html-host: maybe-html-gas
-html-host: maybe-html-gcc
-html-host: maybe-html-gmp
-html-host: maybe-html-mpfr
-html-host: maybe-html-mpc
-html-host: maybe-html-isl
-html-host: maybe-html-libelf
-html-host: maybe-html-gold
-html-host: maybe-html-gprof
-html-host: maybe-html-intl
-html-host: maybe-html-tcl
-html-host: maybe-html-itcl
-html-host: maybe-html-ld
-html-host: maybe-html-libbacktrace
-html-host: maybe-html-libcpp
-html-host: maybe-html-libdecnumber
-html-host: maybe-html-libgui
-html-host: maybe-html-libiberty
-html-host: maybe-html-libiberty-linker-plugin
-html-host: maybe-html-libiconv
-html-host: maybe-html-m4
-html-host: maybe-html-readline
-html-host: maybe-html-sid
-html-host: maybe-html-sim
-html-host: maybe-html-texinfo
-html-host: maybe-html-zlib
-html-host: maybe-html-gdb
-html-host: maybe-html-expect
-html-host: maybe-html-guile
-html-host: maybe-html-tk
-html-host: maybe-html-libtermcap
-html-host: maybe-html-utils
-html-host: maybe-html-gnattools
-html-host: maybe-html-lto-plugin
-html-host: maybe-html-libcc1
-html-host: maybe-html-gotools
-
-.PHONY: html-target
-
-html-target: maybe-html-target-libstdc++-v3
-html-target: maybe-html-target-libsanitizer
-html-target: maybe-html-target-libmpx
-html-target: maybe-html-target-libvtv
-html-target: maybe-html-target-libcilkrts
-html-target: maybe-html-target-liboffloadmic
-html-target: maybe-html-target-libssp
-html-target: maybe-html-target-newlib
-html-target: maybe-html-target-libgcc
-html-target: maybe-html-target-libbacktrace
-html-target: maybe-html-target-libquadmath
-html-target: maybe-html-target-libgfortran
-html-target: maybe-html-target-libobjc
-html-target: maybe-html-target-libgo
-html-target: maybe-html-target-libtermcap
-html-target: maybe-html-target-winsup
-html-target: maybe-html-target-libgloss
-html-target: maybe-html-target-libffi
-html-target: maybe-html-target-zlib
-html-target: maybe-html-target-rda
-html-target: maybe-html-target-libada
-html-target: maybe-html-target-libgomp
-html-target: maybe-html-target-libitm
-html-target: maybe-html-target-libatomic
-
-.PHONY: do-TAGS
-do-TAGS:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) TAGS-host \
- TAGS-target
-
-
-.PHONY: TAGS-host
-
-TAGS-host: maybe-TAGS-bfd
-TAGS-host: maybe-TAGS-opcodes
-TAGS-host: maybe-TAGS-binutils
-TAGS-host: maybe-TAGS-bison
-TAGS-host: maybe-TAGS-cgen
-TAGS-host: maybe-TAGS-dejagnu
-TAGS-host: maybe-TAGS-etc
-TAGS-host: maybe-TAGS-fastjar
-TAGS-host: maybe-TAGS-fixincludes
-TAGS-host: maybe-TAGS-flex
-TAGS-host: maybe-TAGS-gas
-TAGS-host: maybe-TAGS-gcc
-TAGS-host: maybe-TAGS-gmp
-TAGS-host: maybe-TAGS-mpfr
-TAGS-host: maybe-TAGS-mpc
-TAGS-host: maybe-TAGS-isl
-TAGS-host: maybe-TAGS-libelf
-TAGS-host: maybe-TAGS-gold
-TAGS-host: maybe-TAGS-gprof
-TAGS-host: maybe-TAGS-intl
-TAGS-host: maybe-TAGS-tcl
-TAGS-host: maybe-TAGS-itcl
-TAGS-host: maybe-TAGS-ld
-TAGS-host: maybe-TAGS-libbacktrace
-TAGS-host: maybe-TAGS-libcpp
-TAGS-host: maybe-TAGS-libdecnumber
-TAGS-host: maybe-TAGS-libgui
-TAGS-host: maybe-TAGS-libiberty
-TAGS-host: maybe-TAGS-libiberty-linker-plugin
-TAGS-host: maybe-TAGS-libiconv
-TAGS-host: maybe-TAGS-m4
-TAGS-host: maybe-TAGS-readline
-TAGS-host: maybe-TAGS-sid
-TAGS-host: maybe-TAGS-sim
-TAGS-host: maybe-TAGS-texinfo
-TAGS-host: maybe-TAGS-zlib
-TAGS-host: maybe-TAGS-gdb
-TAGS-host: maybe-TAGS-expect
-TAGS-host: maybe-TAGS-guile
-TAGS-host: maybe-TAGS-tk
-TAGS-host: maybe-TAGS-libtermcap
-TAGS-host: maybe-TAGS-utils
-TAGS-host: maybe-TAGS-gnattools
-TAGS-host: maybe-TAGS-lto-plugin
-TAGS-host: maybe-TAGS-libcc1
-TAGS-host: maybe-TAGS-gotools
-
-.PHONY: TAGS-target
-
-TAGS-target: maybe-TAGS-target-libstdc++-v3
-TAGS-target: maybe-TAGS-target-libsanitizer
-TAGS-target: maybe-TAGS-target-libmpx
-TAGS-target: maybe-TAGS-target-libvtv
-TAGS-target: maybe-TAGS-target-libcilkrts
-TAGS-target: maybe-TAGS-target-liboffloadmic
-TAGS-target: maybe-TAGS-target-libssp
-TAGS-target: maybe-TAGS-target-newlib
-TAGS-target: maybe-TAGS-target-libgcc
-TAGS-target: maybe-TAGS-target-libbacktrace
-TAGS-target: maybe-TAGS-target-libquadmath
-TAGS-target: maybe-TAGS-target-libgfortran
-TAGS-target: maybe-TAGS-target-libobjc
-TAGS-target: maybe-TAGS-target-libgo
-TAGS-target: maybe-TAGS-target-libtermcap
-TAGS-target: maybe-TAGS-target-winsup
-TAGS-target: maybe-TAGS-target-libgloss
-TAGS-target: maybe-TAGS-target-libffi
-TAGS-target: maybe-TAGS-target-zlib
-TAGS-target: maybe-TAGS-target-rda
-TAGS-target: maybe-TAGS-target-libada
-TAGS-target: maybe-TAGS-target-libgomp
-TAGS-target: maybe-TAGS-target-libitm
-TAGS-target: maybe-TAGS-target-libatomic
-
-.PHONY: do-install-info
-do-install-info:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) install-info-host \
- install-info-target
-
-
-.PHONY: install-info-host
-
-install-info-host: maybe-install-info-bfd
-install-info-host: maybe-install-info-opcodes
-install-info-host: maybe-install-info-binutils
-install-info-host: maybe-install-info-bison
-install-info-host: maybe-install-info-cgen
-install-info-host: maybe-install-info-dejagnu
-install-info-host: maybe-install-info-etc
-install-info-host: maybe-install-info-fastjar
-install-info-host: maybe-install-info-fixincludes
-install-info-host: maybe-install-info-flex
-install-info-host: maybe-install-info-gas
-install-info-host: maybe-install-info-gcc
-install-info-host: maybe-install-info-gmp
-install-info-host: maybe-install-info-mpfr
-install-info-host: maybe-install-info-mpc
-install-info-host: maybe-install-info-isl
-install-info-host: maybe-install-info-libelf
-install-info-host: maybe-install-info-gold
-install-info-host: maybe-install-info-gprof
-install-info-host: maybe-install-info-intl
-install-info-host: maybe-install-info-tcl
-install-info-host: maybe-install-info-itcl
-install-info-host: maybe-install-info-ld
-install-info-host: maybe-install-info-libbacktrace
-install-info-host: maybe-install-info-libcpp
-install-info-host: maybe-install-info-libdecnumber
-install-info-host: maybe-install-info-libgui
-install-info-host: maybe-install-info-libiberty
-install-info-host: maybe-install-info-libiberty-linker-plugin
-install-info-host: maybe-install-info-libiconv
-install-info-host: maybe-install-info-m4
-install-info-host: maybe-install-info-readline
-install-info-host: maybe-install-info-sid
-install-info-host: maybe-install-info-sim
-install-info-host: maybe-install-info-texinfo
-install-info-host: maybe-install-info-zlib
-install-info-host: maybe-install-info-gdb
-install-info-host: maybe-install-info-expect
-install-info-host: maybe-install-info-guile
-install-info-host: maybe-install-info-tk
-install-info-host: maybe-install-info-libtermcap
-install-info-host: maybe-install-info-utils
-install-info-host: maybe-install-info-gnattools
-install-info-host: maybe-install-info-lto-plugin
-install-info-host: maybe-install-info-libcc1
-install-info-host: maybe-install-info-gotools
-
-.PHONY: install-info-target
-
-install-info-target: maybe-install-info-target-libstdc++-v3
-install-info-target: maybe-install-info-target-libsanitizer
-install-info-target: maybe-install-info-target-libmpx
-install-info-target: maybe-install-info-target-libvtv
-install-info-target: maybe-install-info-target-libcilkrts
-install-info-target: maybe-install-info-target-liboffloadmic
-install-info-target: maybe-install-info-target-libssp
-install-info-target: maybe-install-info-target-newlib
-install-info-target: maybe-install-info-target-libgcc
-install-info-target: maybe-install-info-target-libbacktrace
-install-info-target: maybe-install-info-target-libquadmath
-install-info-target: maybe-install-info-target-libgfortran
-install-info-target: maybe-install-info-target-libobjc
-install-info-target: maybe-install-info-target-libgo
-install-info-target: maybe-install-info-target-libtermcap
-install-info-target: maybe-install-info-target-winsup
-install-info-target: maybe-install-info-target-libgloss
-install-info-target: maybe-install-info-target-libffi
-install-info-target: maybe-install-info-target-zlib
-install-info-target: maybe-install-info-target-rda
-install-info-target: maybe-install-info-target-libada
-install-info-target: maybe-install-info-target-libgomp
-install-info-target: maybe-install-info-target-libitm
-install-info-target: maybe-install-info-target-libatomic
-
-.PHONY: do-install-pdf
-do-install-pdf:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) install-pdf-host \
- install-pdf-target
-
-
-.PHONY: install-pdf-host
-
-install-pdf-host: maybe-install-pdf-bfd
-install-pdf-host: maybe-install-pdf-opcodes
-install-pdf-host: maybe-install-pdf-binutils
-install-pdf-host: maybe-install-pdf-bison
-install-pdf-host: maybe-install-pdf-cgen
-install-pdf-host: maybe-install-pdf-dejagnu
-install-pdf-host: maybe-install-pdf-etc
-install-pdf-host: maybe-install-pdf-fastjar
-install-pdf-host: maybe-install-pdf-fixincludes
-install-pdf-host: maybe-install-pdf-flex
-install-pdf-host: maybe-install-pdf-gas
-install-pdf-host: maybe-install-pdf-gcc
-install-pdf-host: maybe-install-pdf-gmp
-install-pdf-host: maybe-install-pdf-mpfr
-install-pdf-host: maybe-install-pdf-mpc
-install-pdf-host: maybe-install-pdf-isl
-install-pdf-host: maybe-install-pdf-libelf
-install-pdf-host: maybe-install-pdf-gold
-install-pdf-host: maybe-install-pdf-gprof
-install-pdf-host: maybe-install-pdf-intl
-install-pdf-host: maybe-install-pdf-tcl
-install-pdf-host: maybe-install-pdf-itcl
-install-pdf-host: maybe-install-pdf-ld
-install-pdf-host: maybe-install-pdf-libbacktrace
-install-pdf-host: maybe-install-pdf-libcpp
-install-pdf-host: maybe-install-pdf-libdecnumber
-install-pdf-host: maybe-install-pdf-libgui
-install-pdf-host: maybe-install-pdf-libiberty
-install-pdf-host: maybe-install-pdf-libiberty-linker-plugin
-install-pdf-host: maybe-install-pdf-libiconv
-install-pdf-host: maybe-install-pdf-m4
-install-pdf-host: maybe-install-pdf-readline
-install-pdf-host: maybe-install-pdf-sid
-install-pdf-host: maybe-install-pdf-sim
-install-pdf-host: maybe-install-pdf-texinfo
-install-pdf-host: maybe-install-pdf-zlib
-install-pdf-host: maybe-install-pdf-gdb
-install-pdf-host: maybe-install-pdf-expect
-install-pdf-host: maybe-install-pdf-guile
-install-pdf-host: maybe-install-pdf-tk
-install-pdf-host: maybe-install-pdf-libtermcap
-install-pdf-host: maybe-install-pdf-utils
-install-pdf-host: maybe-install-pdf-gnattools
-install-pdf-host: maybe-install-pdf-lto-plugin
-install-pdf-host: maybe-install-pdf-libcc1
-install-pdf-host: maybe-install-pdf-gotools
-
-.PHONY: install-pdf-target
-
-install-pdf-target: maybe-install-pdf-target-libstdc++-v3
-install-pdf-target: maybe-install-pdf-target-libsanitizer
-install-pdf-target: maybe-install-pdf-target-libmpx
-install-pdf-target: maybe-install-pdf-target-libvtv
-install-pdf-target: maybe-install-pdf-target-libcilkrts
-install-pdf-target: maybe-install-pdf-target-liboffloadmic
-install-pdf-target: maybe-install-pdf-target-libssp
-install-pdf-target: maybe-install-pdf-target-newlib
-install-pdf-target: maybe-install-pdf-target-libgcc
-install-pdf-target: maybe-install-pdf-target-libbacktrace
-install-pdf-target: maybe-install-pdf-target-libquadmath
-install-pdf-target: maybe-install-pdf-target-libgfortran
-install-pdf-target: maybe-install-pdf-target-libobjc
-install-pdf-target: maybe-install-pdf-target-libgo
-install-pdf-target: maybe-install-pdf-target-libtermcap
-install-pdf-target: maybe-install-pdf-target-winsup
-install-pdf-target: maybe-install-pdf-target-libgloss
-install-pdf-target: maybe-install-pdf-target-libffi
-install-pdf-target: maybe-install-pdf-target-zlib
-install-pdf-target: maybe-install-pdf-target-rda
-install-pdf-target: maybe-install-pdf-target-libada
-install-pdf-target: maybe-install-pdf-target-libgomp
-install-pdf-target: maybe-install-pdf-target-libitm
-install-pdf-target: maybe-install-pdf-target-libatomic
-
-.PHONY: do-install-html
-do-install-html:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) install-html-host \
- install-html-target
-
-
-.PHONY: install-html-host
-
-install-html-host: maybe-install-html-bfd
-install-html-host: maybe-install-html-opcodes
-install-html-host: maybe-install-html-binutils
-install-html-host: maybe-install-html-bison
-install-html-host: maybe-install-html-cgen
-install-html-host: maybe-install-html-dejagnu
-install-html-host: maybe-install-html-etc
-install-html-host: maybe-install-html-fastjar
-install-html-host: maybe-install-html-fixincludes
-install-html-host: maybe-install-html-flex
-install-html-host: maybe-install-html-gas
-install-html-host: maybe-install-html-gcc
-install-html-host: maybe-install-html-gmp
-install-html-host: maybe-install-html-mpfr
-install-html-host: maybe-install-html-mpc
-install-html-host: maybe-install-html-isl
-install-html-host: maybe-install-html-libelf
-install-html-host: maybe-install-html-gold
-install-html-host: maybe-install-html-gprof
-install-html-host: maybe-install-html-intl
-install-html-host: maybe-install-html-tcl
-install-html-host: maybe-install-html-itcl
-install-html-host: maybe-install-html-ld
-install-html-host: maybe-install-html-libbacktrace
-install-html-host: maybe-install-html-libcpp
-install-html-host: maybe-install-html-libdecnumber
-install-html-host: maybe-install-html-libgui
-install-html-host: maybe-install-html-libiberty
-install-html-host: maybe-install-html-libiberty-linker-plugin
-install-html-host: maybe-install-html-libiconv
-install-html-host: maybe-install-html-m4
-install-html-host: maybe-install-html-readline
-install-html-host: maybe-install-html-sid
-install-html-host: maybe-install-html-sim
-install-html-host: maybe-install-html-texinfo
-install-html-host: maybe-install-html-zlib
-install-html-host: maybe-install-html-gdb
-install-html-host: maybe-install-html-expect
-install-html-host: maybe-install-html-guile
-install-html-host: maybe-install-html-tk
-install-html-host: maybe-install-html-libtermcap
-install-html-host: maybe-install-html-utils
-install-html-host: maybe-install-html-gnattools
-install-html-host: maybe-install-html-lto-plugin
-install-html-host: maybe-install-html-libcc1
-install-html-host: maybe-install-html-gotools
-
-.PHONY: install-html-target
-
-install-html-target: maybe-install-html-target-libstdc++-v3
-install-html-target: maybe-install-html-target-libsanitizer
-install-html-target: maybe-install-html-target-libmpx
-install-html-target: maybe-install-html-target-libvtv
-install-html-target: maybe-install-html-target-libcilkrts
-install-html-target: maybe-install-html-target-liboffloadmic
-install-html-target: maybe-install-html-target-libssp
-install-html-target: maybe-install-html-target-newlib
-install-html-target: maybe-install-html-target-libgcc
-install-html-target: maybe-install-html-target-libbacktrace
-install-html-target: maybe-install-html-target-libquadmath
-install-html-target: maybe-install-html-target-libgfortran
-install-html-target: maybe-install-html-target-libobjc
-install-html-target: maybe-install-html-target-libgo
-install-html-target: maybe-install-html-target-libtermcap
-install-html-target: maybe-install-html-target-winsup
-install-html-target: maybe-install-html-target-libgloss
-install-html-target: maybe-install-html-target-libffi
-install-html-target: maybe-install-html-target-zlib
-install-html-target: maybe-install-html-target-rda
-install-html-target: maybe-install-html-target-libada
-install-html-target: maybe-install-html-target-libgomp
-install-html-target: maybe-install-html-target-libitm
-install-html-target: maybe-install-html-target-libatomic
-
-.PHONY: do-installcheck
-do-installcheck:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) installcheck-host \
- installcheck-target
-
-
-.PHONY: installcheck-host
-
-installcheck-host: maybe-installcheck-bfd
-installcheck-host: maybe-installcheck-opcodes
-installcheck-host: maybe-installcheck-binutils
-installcheck-host: maybe-installcheck-bison
-installcheck-host: maybe-installcheck-cgen
-installcheck-host: maybe-installcheck-dejagnu
-installcheck-host: maybe-installcheck-etc
-installcheck-host: maybe-installcheck-fastjar
-installcheck-host: maybe-installcheck-fixincludes
-installcheck-host: maybe-installcheck-flex
-installcheck-host: maybe-installcheck-gas
-installcheck-host: maybe-installcheck-gcc
-installcheck-host: maybe-installcheck-gmp
-installcheck-host: maybe-installcheck-mpfr
-installcheck-host: maybe-installcheck-mpc
-installcheck-host: maybe-installcheck-isl
-installcheck-host: maybe-installcheck-libelf
-installcheck-host: maybe-installcheck-gold
-installcheck-host: maybe-installcheck-gprof
-installcheck-host: maybe-installcheck-intl
-installcheck-host: maybe-installcheck-tcl
-installcheck-host: maybe-installcheck-itcl
-installcheck-host: maybe-installcheck-ld
-installcheck-host: maybe-installcheck-libbacktrace
-installcheck-host: maybe-installcheck-libcpp
-installcheck-host: maybe-installcheck-libdecnumber
-installcheck-host: maybe-installcheck-libgui
-installcheck-host: maybe-installcheck-libiberty
-installcheck-host: maybe-installcheck-libiberty-linker-plugin
-installcheck-host: maybe-installcheck-libiconv
-installcheck-host: maybe-installcheck-m4
-installcheck-host: maybe-installcheck-readline
-installcheck-host: maybe-installcheck-sid
-installcheck-host: maybe-installcheck-sim
-installcheck-host: maybe-installcheck-texinfo
-installcheck-host: maybe-installcheck-zlib
-installcheck-host: maybe-installcheck-gdb
-installcheck-host: maybe-installcheck-expect
-installcheck-host: maybe-installcheck-guile
-installcheck-host: maybe-installcheck-tk
-installcheck-host: maybe-installcheck-libtermcap
-installcheck-host: maybe-installcheck-utils
-installcheck-host: maybe-installcheck-gnattools
-installcheck-host: maybe-installcheck-lto-plugin
-installcheck-host: maybe-installcheck-libcc1
-installcheck-host: maybe-installcheck-gotools
-
-.PHONY: installcheck-target
-
-installcheck-target: maybe-installcheck-target-libstdc++-v3
-installcheck-target: maybe-installcheck-target-libsanitizer
-installcheck-target: maybe-installcheck-target-libmpx
-installcheck-target: maybe-installcheck-target-libvtv
-installcheck-target: maybe-installcheck-target-libcilkrts
-installcheck-target: maybe-installcheck-target-liboffloadmic
-installcheck-target: maybe-installcheck-target-libssp
-installcheck-target: maybe-installcheck-target-newlib
-installcheck-target: maybe-installcheck-target-libgcc
-installcheck-target: maybe-installcheck-target-libbacktrace
-installcheck-target: maybe-installcheck-target-libquadmath
-installcheck-target: maybe-installcheck-target-libgfortran
-installcheck-target: maybe-installcheck-target-libobjc
-installcheck-target: maybe-installcheck-target-libgo
-installcheck-target: maybe-installcheck-target-libtermcap
-installcheck-target: maybe-installcheck-target-winsup
-installcheck-target: maybe-installcheck-target-libgloss
-installcheck-target: maybe-installcheck-target-libffi
-installcheck-target: maybe-installcheck-target-zlib
-installcheck-target: maybe-installcheck-target-rda
-installcheck-target: maybe-installcheck-target-libada
-installcheck-target: maybe-installcheck-target-libgomp
-installcheck-target: maybe-installcheck-target-libitm
-installcheck-target: maybe-installcheck-target-libatomic
-
-.PHONY: do-mostlyclean
-do-mostlyclean:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) mostlyclean-host \
- mostlyclean-target
-
-
-.PHONY: mostlyclean-host
-
-mostlyclean-host: maybe-mostlyclean-bfd
-mostlyclean-host: maybe-mostlyclean-opcodes
-mostlyclean-host: maybe-mostlyclean-binutils
-mostlyclean-host: maybe-mostlyclean-bison
-mostlyclean-host: maybe-mostlyclean-cgen
-mostlyclean-host: maybe-mostlyclean-dejagnu
-mostlyclean-host: maybe-mostlyclean-etc
-mostlyclean-host: maybe-mostlyclean-fastjar
-mostlyclean-host: maybe-mostlyclean-fixincludes
-mostlyclean-host: maybe-mostlyclean-flex
-mostlyclean-host: maybe-mostlyclean-gas
-mostlyclean-host: maybe-mostlyclean-gcc
-mostlyclean-host: maybe-mostlyclean-gmp
-mostlyclean-host: maybe-mostlyclean-mpfr
-mostlyclean-host: maybe-mostlyclean-mpc
-mostlyclean-host: maybe-mostlyclean-isl
-mostlyclean-host: maybe-mostlyclean-libelf
-mostlyclean-host: maybe-mostlyclean-gold
-mostlyclean-host: maybe-mostlyclean-gprof
-mostlyclean-host: maybe-mostlyclean-intl
-mostlyclean-host: maybe-mostlyclean-tcl
-mostlyclean-host: maybe-mostlyclean-itcl
-mostlyclean-host: maybe-mostlyclean-ld
-mostlyclean-host: maybe-mostlyclean-libbacktrace
-mostlyclean-host: maybe-mostlyclean-libcpp
-mostlyclean-host: maybe-mostlyclean-libdecnumber
-mostlyclean-host: maybe-mostlyclean-libgui
-mostlyclean-host: maybe-mostlyclean-libiberty
-mostlyclean-host: maybe-mostlyclean-libiberty-linker-plugin
-mostlyclean-host: maybe-mostlyclean-libiconv
-mostlyclean-host: maybe-mostlyclean-m4
-mostlyclean-host: maybe-mostlyclean-readline
-mostlyclean-host: maybe-mostlyclean-sid
-mostlyclean-host: maybe-mostlyclean-sim
-mostlyclean-host: maybe-mostlyclean-texinfo
-mostlyclean-host: maybe-mostlyclean-zlib
-mostlyclean-host: maybe-mostlyclean-gdb
-mostlyclean-host: maybe-mostlyclean-expect
-mostlyclean-host: maybe-mostlyclean-guile
-mostlyclean-host: maybe-mostlyclean-tk
-mostlyclean-host: maybe-mostlyclean-libtermcap
-mostlyclean-host: maybe-mostlyclean-utils
-mostlyclean-host: maybe-mostlyclean-gnattools
-mostlyclean-host: maybe-mostlyclean-lto-plugin
-mostlyclean-host: maybe-mostlyclean-libcc1
-mostlyclean-host: maybe-mostlyclean-gotools
-
-.PHONY: mostlyclean-target
-
-mostlyclean-target: maybe-mostlyclean-target-libstdc++-v3
-mostlyclean-target: maybe-mostlyclean-target-libsanitizer
-mostlyclean-target: maybe-mostlyclean-target-libmpx
-mostlyclean-target: maybe-mostlyclean-target-libvtv
-mostlyclean-target: maybe-mostlyclean-target-libcilkrts
-mostlyclean-target: maybe-mostlyclean-target-liboffloadmic
-mostlyclean-target: maybe-mostlyclean-target-libssp
-mostlyclean-target: maybe-mostlyclean-target-newlib
-mostlyclean-target: maybe-mostlyclean-target-libgcc
-mostlyclean-target: maybe-mostlyclean-target-libbacktrace
-mostlyclean-target: maybe-mostlyclean-target-libquadmath
-mostlyclean-target: maybe-mostlyclean-target-libgfortran
-mostlyclean-target: maybe-mostlyclean-target-libobjc
-mostlyclean-target: maybe-mostlyclean-target-libgo
-mostlyclean-target: maybe-mostlyclean-target-libtermcap
-mostlyclean-target: maybe-mostlyclean-target-winsup
-mostlyclean-target: maybe-mostlyclean-target-libgloss
-mostlyclean-target: maybe-mostlyclean-target-libffi
-mostlyclean-target: maybe-mostlyclean-target-zlib
-mostlyclean-target: maybe-mostlyclean-target-rda
-mostlyclean-target: maybe-mostlyclean-target-libada
-mostlyclean-target: maybe-mostlyclean-target-libgomp
-mostlyclean-target: maybe-mostlyclean-target-libitm
-mostlyclean-target: maybe-mostlyclean-target-libatomic
-
-.PHONY: do-clean
-do-clean:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) clean-host \
- clean-target
-
-
-.PHONY: clean-host
-
-clean-host: maybe-clean-bfd
-clean-host: maybe-clean-opcodes
-clean-host: maybe-clean-binutils
-clean-host: maybe-clean-bison
-clean-host: maybe-clean-cgen
-clean-host: maybe-clean-dejagnu
-clean-host: maybe-clean-etc
-clean-host: maybe-clean-fastjar
-clean-host: maybe-clean-fixincludes
-clean-host: maybe-clean-flex
-clean-host: maybe-clean-gas
-clean-host: maybe-clean-gcc
-clean-host: maybe-clean-gmp
-clean-host: maybe-clean-mpfr
-clean-host: maybe-clean-mpc
-clean-host: maybe-clean-isl
-clean-host: maybe-clean-libelf
-clean-host: maybe-clean-gold
-clean-host: maybe-clean-gprof
-clean-host: maybe-clean-intl
-clean-host: maybe-clean-tcl
-clean-host: maybe-clean-itcl
-clean-host: maybe-clean-ld
-clean-host: maybe-clean-libbacktrace
-clean-host: maybe-clean-libcpp
-clean-host: maybe-clean-libdecnumber
-clean-host: maybe-clean-libgui
-clean-host: maybe-clean-libiberty
-clean-host: maybe-clean-libiberty-linker-plugin
-clean-host: maybe-clean-libiconv
-clean-host: maybe-clean-m4
-clean-host: maybe-clean-readline
-clean-host: maybe-clean-sid
-clean-host: maybe-clean-sim
-clean-host: maybe-clean-texinfo
-clean-host: maybe-clean-zlib
-clean-host: maybe-clean-gdb
-clean-host: maybe-clean-expect
-clean-host: maybe-clean-guile
-clean-host: maybe-clean-tk
-clean-host: maybe-clean-libtermcap
-clean-host: maybe-clean-utils
-clean-host: maybe-clean-gnattools
-clean-host: maybe-clean-lto-plugin
-clean-host: maybe-clean-libcc1
-clean-host: maybe-clean-gotools
-
-.PHONY: clean-target
-
-clean-target: maybe-clean-target-libstdc++-v3
-clean-target: maybe-clean-target-libsanitizer
-clean-target: maybe-clean-target-libmpx
-clean-target: maybe-clean-target-libvtv
-clean-target: maybe-clean-target-libcilkrts
-clean-target: maybe-clean-target-liboffloadmic
-clean-target: maybe-clean-target-libssp
-clean-target: maybe-clean-target-newlib
-clean-target: maybe-clean-target-libgcc
-clean-target: maybe-clean-target-libbacktrace
-clean-target: maybe-clean-target-libquadmath
-clean-target: maybe-clean-target-libgfortran
-clean-target: maybe-clean-target-libobjc
-clean-target: maybe-clean-target-libgo
-clean-target: maybe-clean-target-libtermcap
-clean-target: maybe-clean-target-winsup
-clean-target: maybe-clean-target-libgloss
-clean-target: maybe-clean-target-libffi
-clean-target: maybe-clean-target-zlib
-clean-target: maybe-clean-target-rda
-clean-target: maybe-clean-target-libada
-clean-target: maybe-clean-target-libgomp
-clean-target: maybe-clean-target-libitm
-clean-target: maybe-clean-target-libatomic
-
-.PHONY: do-distclean
-do-distclean:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) distclean-host \
- distclean-target
-
-
-.PHONY: distclean-host
-
-distclean-host: maybe-distclean-bfd
-distclean-host: maybe-distclean-opcodes
-distclean-host: maybe-distclean-binutils
-distclean-host: maybe-distclean-bison
-distclean-host: maybe-distclean-cgen
-distclean-host: maybe-distclean-dejagnu
-distclean-host: maybe-distclean-etc
-distclean-host: maybe-distclean-fastjar
-distclean-host: maybe-distclean-fixincludes
-distclean-host: maybe-distclean-flex
-distclean-host: maybe-distclean-gas
-distclean-host: maybe-distclean-gcc
-distclean-host: maybe-distclean-gmp
-distclean-host: maybe-distclean-mpfr
-distclean-host: maybe-distclean-mpc
-distclean-host: maybe-distclean-isl
-distclean-host: maybe-distclean-libelf
-distclean-host: maybe-distclean-gold
-distclean-host: maybe-distclean-gprof
-distclean-host: maybe-distclean-intl
-distclean-host: maybe-distclean-tcl
-distclean-host: maybe-distclean-itcl
-distclean-host: maybe-distclean-ld
-distclean-host: maybe-distclean-libbacktrace
-distclean-host: maybe-distclean-libcpp
-distclean-host: maybe-distclean-libdecnumber
-distclean-host: maybe-distclean-libgui
-distclean-host: maybe-distclean-libiberty
-distclean-host: maybe-distclean-libiberty-linker-plugin
-distclean-host: maybe-distclean-libiconv
-distclean-host: maybe-distclean-m4
-distclean-host: maybe-distclean-readline
-distclean-host: maybe-distclean-sid
-distclean-host: maybe-distclean-sim
-distclean-host: maybe-distclean-texinfo
-distclean-host: maybe-distclean-zlib
-distclean-host: maybe-distclean-gdb
-distclean-host: maybe-distclean-expect
-distclean-host: maybe-distclean-guile
-distclean-host: maybe-distclean-tk
-distclean-host: maybe-distclean-libtermcap
-distclean-host: maybe-distclean-utils
-distclean-host: maybe-distclean-gnattools
-distclean-host: maybe-distclean-lto-plugin
-distclean-host: maybe-distclean-libcc1
-distclean-host: maybe-distclean-gotools
-
-.PHONY: distclean-target
-
-distclean-target: maybe-distclean-target-libstdc++-v3
-distclean-target: maybe-distclean-target-libsanitizer
-distclean-target: maybe-distclean-target-libmpx
-distclean-target: maybe-distclean-target-libvtv
-distclean-target: maybe-distclean-target-libcilkrts
-distclean-target: maybe-distclean-target-liboffloadmic
-distclean-target: maybe-distclean-target-libssp
-distclean-target: maybe-distclean-target-newlib
-distclean-target: maybe-distclean-target-libgcc
-distclean-target: maybe-distclean-target-libbacktrace
-distclean-target: maybe-distclean-target-libquadmath
-distclean-target: maybe-distclean-target-libgfortran
-distclean-target: maybe-distclean-target-libobjc
-distclean-target: maybe-distclean-target-libgo
-distclean-target: maybe-distclean-target-libtermcap
-distclean-target: maybe-distclean-target-winsup
-distclean-target: maybe-distclean-target-libgloss
-distclean-target: maybe-distclean-target-libffi
-distclean-target: maybe-distclean-target-zlib
-distclean-target: maybe-distclean-target-rda
-distclean-target: maybe-distclean-target-libada
-distclean-target: maybe-distclean-target-libgomp
-distclean-target: maybe-distclean-target-libitm
-distclean-target: maybe-distclean-target-libatomic
-
-.PHONY: do-maintainer-clean
-do-maintainer-clean:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) maintainer-clean-host \
- maintainer-clean-target
-
-
-.PHONY: maintainer-clean-host
-
-maintainer-clean-host: maybe-maintainer-clean-bfd
-maintainer-clean-host: maybe-maintainer-clean-opcodes
-maintainer-clean-host: maybe-maintainer-clean-binutils
-maintainer-clean-host: maybe-maintainer-clean-bison
-maintainer-clean-host: maybe-maintainer-clean-cgen
-maintainer-clean-host: maybe-maintainer-clean-dejagnu
-maintainer-clean-host: maybe-maintainer-clean-etc
-maintainer-clean-host: maybe-maintainer-clean-fastjar
-maintainer-clean-host: maybe-maintainer-clean-fixincludes
-maintainer-clean-host: maybe-maintainer-clean-flex
-maintainer-clean-host: maybe-maintainer-clean-gas
-maintainer-clean-host: maybe-maintainer-clean-gcc
-maintainer-clean-host: maybe-maintainer-clean-gmp
-maintainer-clean-host: maybe-maintainer-clean-mpfr
-maintainer-clean-host: maybe-maintainer-clean-mpc
-maintainer-clean-host: maybe-maintainer-clean-isl
-maintainer-clean-host: maybe-maintainer-clean-libelf
-maintainer-clean-host: maybe-maintainer-clean-gold
-maintainer-clean-host: maybe-maintainer-clean-gprof
-maintainer-clean-host: maybe-maintainer-clean-intl
-maintainer-clean-host: maybe-maintainer-clean-tcl
-maintainer-clean-host: maybe-maintainer-clean-itcl
-maintainer-clean-host: maybe-maintainer-clean-ld
-maintainer-clean-host: maybe-maintainer-clean-libbacktrace
-maintainer-clean-host: maybe-maintainer-clean-libcpp
-maintainer-clean-host: maybe-maintainer-clean-libdecnumber
-maintainer-clean-host: maybe-maintainer-clean-libgui
-maintainer-clean-host: maybe-maintainer-clean-libiberty
-maintainer-clean-host: maybe-maintainer-clean-libiberty-linker-plugin
-maintainer-clean-host: maybe-maintainer-clean-libiconv
-maintainer-clean-host: maybe-maintainer-clean-m4
-maintainer-clean-host: maybe-maintainer-clean-readline
-maintainer-clean-host: maybe-maintainer-clean-sid
-maintainer-clean-host: maybe-maintainer-clean-sim
-maintainer-clean-host: maybe-maintainer-clean-texinfo
-maintainer-clean-host: maybe-maintainer-clean-zlib
-maintainer-clean-host: maybe-maintainer-clean-gdb
-maintainer-clean-host: maybe-maintainer-clean-expect
-maintainer-clean-host: maybe-maintainer-clean-guile
-maintainer-clean-host: maybe-maintainer-clean-tk
-maintainer-clean-host: maybe-maintainer-clean-libtermcap
-maintainer-clean-host: maybe-maintainer-clean-utils
-maintainer-clean-host: maybe-maintainer-clean-gnattools
-maintainer-clean-host: maybe-maintainer-clean-lto-plugin
-maintainer-clean-host: maybe-maintainer-clean-libcc1
-maintainer-clean-host: maybe-maintainer-clean-gotools
-
-.PHONY: maintainer-clean-target
-
-maintainer-clean-target: maybe-maintainer-clean-target-libstdc++-v3
-maintainer-clean-target: maybe-maintainer-clean-target-libsanitizer
-maintainer-clean-target: maybe-maintainer-clean-target-libmpx
-maintainer-clean-target: maybe-maintainer-clean-target-libvtv
-maintainer-clean-target: maybe-maintainer-clean-target-libcilkrts
-maintainer-clean-target: maybe-maintainer-clean-target-liboffloadmic
-maintainer-clean-target: maybe-maintainer-clean-target-libssp
-maintainer-clean-target: maybe-maintainer-clean-target-newlib
-maintainer-clean-target: maybe-maintainer-clean-target-libgcc
-maintainer-clean-target: maybe-maintainer-clean-target-libbacktrace
-maintainer-clean-target: maybe-maintainer-clean-target-libquadmath
-maintainer-clean-target: maybe-maintainer-clean-target-libgfortran
-maintainer-clean-target: maybe-maintainer-clean-target-libobjc
-maintainer-clean-target: maybe-maintainer-clean-target-libgo
-maintainer-clean-target: maybe-maintainer-clean-target-libtermcap
-maintainer-clean-target: maybe-maintainer-clean-target-winsup
-maintainer-clean-target: maybe-maintainer-clean-target-libgloss
-maintainer-clean-target: maybe-maintainer-clean-target-libffi
-maintainer-clean-target: maybe-maintainer-clean-target-zlib
-maintainer-clean-target: maybe-maintainer-clean-target-rda
-maintainer-clean-target: maybe-maintainer-clean-target-libada
-maintainer-clean-target: maybe-maintainer-clean-target-libgomp
-maintainer-clean-target: maybe-maintainer-clean-target-libitm
-maintainer-clean-target: maybe-maintainer-clean-target-libatomic
-
-
-# Here are the targets which correspond to the do-X targets.
-
-.PHONY: info installcheck dvi pdf html
-.PHONY: install-info install-pdf install-html
-.PHONY: clean distclean mostlyclean maintainer-clean realclean
-.PHONY: local-clean local-distclean local-maintainer-clean
-info: do-info
-installcheck: do-installcheck
-dvi: do-dvi
-pdf: do-pdf
-html: do-html
-
-# Make sure makeinfo is built before we do a `make info', if we're
-# in fact building texinfo.
-do-info: maybe-all-texinfo
-
-install-info: do-install-info dir.info
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- if [ -f dir.info ]; then \
- $(INSTALL_DATA) dir.info $(DESTDIR)$(infodir)/dir.info; \
- else true; fi
-
-install-pdf: do-install-pdf
-
-install-html: do-install-html
-
-local-clean:
- -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E *.log
-
-local-distclean:
- -rm -f Makefile config.status config.cache mh-frag mt-frag
- -rm -f maybedep.tmp serdep.tmp stage_final
- -if [ "$(TARGET_SUBDIR)" != "." ]; then \
- rm -rf $(TARGET_SUBDIR); \
- else true; fi
- -rm -rf $(BUILD_SUBDIR)
- -if [ "$(HOST_SUBDIR)" != "." ]; then \
- rm -rf $(HOST_SUBDIR); \
- else true; fi
- -rm -f texinfo/po/Makefile texinfo/po/Makefile.in texinfo/info/Makefile
- -rm -f texinfo/doc/Makefile texinfo/po/POTFILES
- -rmdir texinfo/doc texinfo/info texinfo/intl texinfo/lib 2>/dev/null
- -rmdir texinfo/makeinfo texinfo/po texinfo/util 2>/dev/null
- -rmdir fastjar gcc gnattools gotools libcc1 libiberty 2>/dev/null
- -rmdir texinfo zlib 2>/dev/null
- -find . -name config.cache -exec rm -f {} \; \; 2>/dev/null
-
-local-maintainer-clean:
- @echo "This command is intended for maintainers to use;"
- @echo "it deletes files that may require special tools to rebuild."
-
-clean: do-clean local-clean
-mostlyclean: do-mostlyclean local-clean
-distclean: do-distclean local-clean local-distclean
-maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean
-maintainer-clean: local-distclean
-realclean: maintainer-clean
-
-# Check target.
-
-.PHONY: check do-check
-check: do-check
-
-# Only include modules actually being configured and built.
-.PHONY: check-host
-check-host: \
- maybe-check-bfd \
- maybe-check-opcodes \
- maybe-check-binutils \
- maybe-check-bison \
- maybe-check-cgen \
- maybe-check-dejagnu \
- maybe-check-etc \
- maybe-check-fastjar \
- maybe-check-fixincludes \
- maybe-check-flex \
- maybe-check-gas \
- maybe-check-gcc \
- maybe-check-gmp \
- maybe-check-mpfr \
- maybe-check-mpc \
- maybe-check-isl \
- maybe-check-libelf \
- maybe-check-gold \
- maybe-check-gprof \
- maybe-check-intl \
- maybe-check-tcl \
- maybe-check-itcl \
- maybe-check-ld \
- maybe-check-libbacktrace \
- maybe-check-libcpp \
- maybe-check-libdecnumber \
- maybe-check-libgui \
- maybe-check-libiberty \
- maybe-check-libiberty-linker-plugin \
- maybe-check-libiconv \
- maybe-check-m4 \
- maybe-check-readline \
- maybe-check-sid \
- maybe-check-sim \
- maybe-check-texinfo \
- maybe-check-zlib \
- maybe-check-gdb \
- maybe-check-expect \
- maybe-check-guile \
- maybe-check-tk \
- maybe-check-libtermcap \
- maybe-check-utils \
- maybe-check-gnattools \
- maybe-check-lto-plugin \
- maybe-check-libcc1 \
- maybe-check-gotools
-
-.PHONY: check-target
-check-target: \
- maybe-check-target-libstdc++-v3 \
- maybe-check-target-libsanitizer \
- maybe-check-target-libmpx \
- maybe-check-target-libvtv \
- maybe-check-target-libcilkrts \
- maybe-check-target-liboffloadmic \
- maybe-check-target-libssp \
- maybe-check-target-newlib \
- maybe-check-target-libgcc \
- maybe-check-target-libbacktrace \
- maybe-check-target-libquadmath \
- maybe-check-target-libgfortran \
- maybe-check-target-libobjc \
- maybe-check-target-libgo \
- maybe-check-target-libtermcap \
- maybe-check-target-winsup \
- maybe-check-target-libgloss \
- maybe-check-target-libffi \
- maybe-check-target-zlib \
- maybe-check-target-rda \
- maybe-check-target-libada \
- maybe-check-target-libgomp \
- maybe-check-target-libitm \
- maybe-check-target-libatomic
-
-do-check:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) check-host check-target
-
-# Automated reporting of test results.
-
-warning.log: build.log
- $(srcdir)/contrib/warn_summary build.log > $@
-
-mail-report.log:
- if test x'$(BOOT_CFLAGS)' != x''; then \
- BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \
- fi; \
- $(srcdir)/contrib/test_summary -t >$@
- chmod +x $@
- echo If you really want to send e-mail, run ./$@ now
-
-mail-report-with-warnings.log: warning.log
- if test x'$(BOOT_CFLAGS)' != x''; then \
- BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \
- fi; \
- $(srcdir)/contrib/test_summary -t -i warning.log >$@
- chmod +x $@
- echo If you really want to send e-mail, run ./$@ now
-
-# Local Vim config
-
-$(srcdir)/.local.vimrc:
- $(LN_S) contrib/vimrc $@
-
-$(srcdir)/.lvimrc:
- $(LN_S) contrib/vimrc $@
-
-vimrc: $(srcdir)/.local.vimrc $(srcdir)/.lvimrc
-
-.PHONY: vimrc
-
-# clang-format config
-
-$(srcdir)/.clang-format:
- $(LN_S) contrib/clang-format $@
-
-clang-format: $(srcdir)/.clang-format
-
-.PHONY: clang-format
-
-# Installation targets.
-
-.PHONY: install uninstall
-install:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) installdirs install-host install-target
-
-.PHONY: install-host-nogcc
-install-host-nogcc: \
- maybe-install-bfd \
- maybe-install-opcodes \
- maybe-install-binutils \
- maybe-install-bison \
- maybe-install-cgen \
- maybe-install-dejagnu \
- maybe-install-etc \
- maybe-install-fastjar \
- maybe-install-fixincludes \
- maybe-install-flex \
- maybe-install-gas \
- maybe-install-gmp \
- maybe-install-mpfr \
- maybe-install-mpc \
- maybe-install-isl \
- maybe-install-libelf \
- maybe-install-gold \
- maybe-install-gprof \
- maybe-install-intl \
- maybe-install-tcl \
- maybe-install-itcl \
- maybe-install-ld \
- maybe-install-libbacktrace \
- maybe-install-libcpp \
- maybe-install-libdecnumber \
- maybe-install-libgui \
- maybe-install-libiberty \
- maybe-install-libiberty-linker-plugin \
- maybe-install-libiconv \
- maybe-install-m4 \
- maybe-install-readline \
- maybe-install-sid \
- maybe-install-sim \
- maybe-install-texinfo \
- maybe-install-zlib \
- maybe-install-gdb \
- maybe-install-expect \
- maybe-install-guile \
- maybe-install-tk \
- maybe-install-libtermcap \
- maybe-install-utils \
- maybe-install-gnattools \
- maybe-install-lto-plugin \
- maybe-install-libcc1 \
- maybe-install-gotools
-
-.PHONY: install-host
-install-host: \
- maybe-install-bfd \
- maybe-install-opcodes \
- maybe-install-binutils \
- maybe-install-bison \
- maybe-install-cgen \
- maybe-install-dejagnu \
- maybe-install-etc \
- maybe-install-fastjar \
- maybe-install-fixincludes \
- maybe-install-flex \
- maybe-install-gas \
- maybe-install-gcc \
- maybe-install-gmp \
- maybe-install-mpfr \
- maybe-install-mpc \
- maybe-install-isl \
- maybe-install-libelf \
- maybe-install-gold \
- maybe-install-gprof \
- maybe-install-intl \
- maybe-install-tcl \
- maybe-install-itcl \
- maybe-install-ld \
- maybe-install-libbacktrace \
- maybe-install-libcpp \
- maybe-install-libdecnumber \
- maybe-install-libgui \
- maybe-install-libiberty \
- maybe-install-libiberty-linker-plugin \
- maybe-install-libiconv \
- maybe-install-m4 \
- maybe-install-readline \
- maybe-install-sid \
- maybe-install-sim \
- maybe-install-texinfo \
- maybe-install-zlib \
- maybe-install-gdb \
- maybe-install-expect \
- maybe-install-guile \
- maybe-install-tk \
- maybe-install-libtermcap \
- maybe-install-utils \
- maybe-install-gnattools \
- maybe-install-lto-plugin \
- maybe-install-libcc1 \
- maybe-install-gotools
-
-.PHONY: install-target
-install-target: \
- maybe-install-target-libstdc++-v3 \
- maybe-install-target-libsanitizer \
- maybe-install-target-libmpx \
- maybe-install-target-libvtv \
- maybe-install-target-libcilkrts \
- maybe-install-target-liboffloadmic \
- maybe-install-target-libssp \
- maybe-install-target-newlib \
- maybe-install-target-libgcc \
- maybe-install-target-libbacktrace \
- maybe-install-target-libquadmath \
- maybe-install-target-libgfortran \
- maybe-install-target-libobjc \
- maybe-install-target-libgo \
- maybe-install-target-libtermcap \
- maybe-install-target-winsup \
- maybe-install-target-libgloss \
- maybe-install-target-libffi \
- maybe-install-target-zlib \
- maybe-install-target-rda \
- maybe-install-target-libada \
- maybe-install-target-libgomp \
- maybe-install-target-libitm \
- maybe-install-target-libatomic
-
-uninstall:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) uninstall-host
-
-.PHONY: uninstall-host
-uninstall-host: maybe-uninstall-binutils
-
-.PHONY: install.all
-install.all: install-no-fixedincludes
- @if [ -f ./gcc/Makefile ]; then \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- (cd ./gcc && \
- $(MAKE) $(FLAGS_TO_PASS) install-headers); \
- else \
- true; \
- fi
-
-# install-no-fixedincludes is used to allow the elaboration of binary packages
-# suitable for distribution, where we cannot include the fixed system header
-# files.
-.PHONY: install-no-fixedincludes
-install-no-fixedincludes: installdirs install-host-nogcc \
- install-target gcc-install-no-fixedincludes
-
-.PHONY: install-strip
-install-strip:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) installdirs install-strip-host install-strip-target
-
-.PHONY: install-strip-host
-install-strip-host: \
- maybe-install-strip-bfd \
- maybe-install-strip-opcodes \
- maybe-install-strip-binutils \
- maybe-install-strip-bison \
- maybe-install-strip-cgen \
- maybe-install-strip-dejagnu \
- maybe-install-strip-etc \
- maybe-install-strip-fastjar \
- maybe-install-strip-fixincludes \
- maybe-install-strip-flex \
- maybe-install-strip-gas \
- maybe-install-strip-gcc \
- maybe-install-strip-gmp \
- maybe-install-strip-mpfr \
- maybe-install-strip-mpc \
- maybe-install-strip-isl \
- maybe-install-strip-libelf \
- maybe-install-strip-gold \
- maybe-install-strip-gprof \
- maybe-install-strip-intl \
- maybe-install-strip-tcl \
- maybe-install-strip-itcl \
- maybe-install-strip-ld \
- maybe-install-strip-libbacktrace \
- maybe-install-strip-libcpp \
- maybe-install-strip-libdecnumber \
- maybe-install-strip-libgui \
- maybe-install-strip-libiberty \
- maybe-install-strip-libiberty-linker-plugin \
- maybe-install-strip-libiconv \
- maybe-install-strip-m4 \
- maybe-install-strip-readline \
- maybe-install-strip-sid \
- maybe-install-strip-sim \
- maybe-install-strip-texinfo \
- maybe-install-strip-zlib \
- maybe-install-strip-gdb \
- maybe-install-strip-expect \
- maybe-install-strip-guile \
- maybe-install-strip-tk \
- maybe-install-strip-libtermcap \
- maybe-install-strip-utils \
- maybe-install-strip-gnattools \
- maybe-install-strip-lto-plugin \
- maybe-install-strip-libcc1 \
- maybe-install-strip-gotools
-
-.PHONY: install-strip-target
-install-strip-target: \
- maybe-install-strip-target-libstdc++-v3 \
- maybe-install-strip-target-libsanitizer \
- maybe-install-strip-target-libmpx \
- maybe-install-strip-target-libvtv \
- maybe-install-strip-target-libcilkrts \
- maybe-install-strip-target-liboffloadmic \
- maybe-install-strip-target-libssp \
- maybe-install-strip-target-newlib \
- maybe-install-strip-target-libgcc \
- maybe-install-strip-target-libbacktrace \
- maybe-install-strip-target-libquadmath \
- maybe-install-strip-target-libgfortran \
- maybe-install-strip-target-libobjc \
- maybe-install-strip-target-libgo \
- maybe-install-strip-target-libtermcap \
- maybe-install-strip-target-winsup \
- maybe-install-strip-target-libgloss \
- maybe-install-strip-target-libffi \
- maybe-install-strip-target-zlib \
- maybe-install-strip-target-rda \
- maybe-install-strip-target-libada \
- maybe-install-strip-target-libgomp \
- maybe-install-strip-target-libitm \
- maybe-install-strip-target-libatomic
-
-
-### other supporting targets
-
-MAKEDIRS= \
- $(DESTDIR)$(prefix) \
- $(DESTDIR)$(exec_prefix)
-.PHONY: installdirs
-installdirs: mkinstalldirs
- $(SHELL) $(srcdir)/mkinstalldirs $(MAKEDIRS)
-
-dir.info: do-install-info
- if [ -f $(srcdir)/texinfo/gen-info-dir ]; then \
- $(srcdir)/texinfo/gen-info-dir $(DESTDIR)$(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new; \
- mv -f dir.info.new dir.info; \
- else true; \
- fi
-
-dist:
- @echo "Building a full distribution of this tree isn't done"
- @echo "via 'make dist'. Check out the etc/ subdirectory"
-
-etags tags: TAGS
-
-# Right now this just builds TAGS in each subdirectory. emacs19 has the
-# ability to use several tags files at once, so there is probably no need
-# to combine them into one big TAGS file (like CVS 1.3 does). We could
-# (if we felt like it) have this Makefile write a piece of elisp which
-# the user could load to tell emacs19 where all the TAGS files we just
-# built are.
-TAGS: do-TAGS
-
-# ------------------------------------
-# Macros for configure and all targets
-# ------------------------------------
-
-
-
-
-
-# --------------------------------------
-# Modules which run on the build machine
-# --------------------------------------
-
-
-.PHONY: configure-build-libiberty maybe-configure-build-libiberty
-maybe-configure-build-libiberty:
-maybe-configure-build-libiberty: configure-build-libiberty
-configure-build-libiberty:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- test ! -f $(BUILD_SUBDIR)/libiberty/Makefile || exit 0; \
- $(SHELL) $(srcdir)/mkinstalldirs $(BUILD_SUBDIR)/libiberty; \
- $(BUILD_EXPORTS) \
- echo Configuring in $(BUILD_SUBDIR)/libiberty; \
- cd "$(BUILD_SUBDIR)/libiberty" || exit 1; \
- case $(srcdir) in \
- /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
- *) topdir=`echo $(BUILD_SUBDIR)/libiberty/ | \
- sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
- esac; \
- module_srcdir=libiberty; \
- rm -f no-such-file || : ; \
- CONFIG_SITE=no-such-file $(SHELL) \
- $$s/$$module_srcdir/configure \
- --srcdir=$${topdir}/$$module_srcdir \
- $(BUILD_CONFIGARGS) --build=${build_alias} --host=${build_alias} \
- --target=${target_alias} \
- || exit 1
-
-
-
-
-
-.PHONY: all-build-libiberty maybe-all-build-libiberty
-maybe-all-build-libiberty:
-TARGET-build-libiberty=all
-maybe-all-build-libiberty: all-build-libiberty
-all-build-libiberty: configure-build-libiberty
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(BUILD_EXPORTS) \
- (cd $(BUILD_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_BUILD_FLAGS) \
- $(TARGET-build-libiberty))
-
-
-
-
-
-.PHONY: configure-build-bison maybe-configure-build-bison
-maybe-configure-build-bison:
-
-
-
-
-
-.PHONY: all-build-bison maybe-all-build-bison
-maybe-all-build-bison:
-
-
-
-
-
-.PHONY: configure-build-flex maybe-configure-build-flex
-maybe-configure-build-flex:
-
-
-
-
-
-.PHONY: all-build-flex maybe-all-build-flex
-maybe-all-build-flex:
-
-
-
-
-
-.PHONY: configure-build-m4 maybe-configure-build-m4
-maybe-configure-build-m4:
-
-
-
-
-
-.PHONY: all-build-m4 maybe-all-build-m4
-maybe-all-build-m4:
-
-
-
-
-
-.PHONY: configure-build-texinfo maybe-configure-build-texinfo
-maybe-configure-build-texinfo:
-
-
-
-
-
-.PHONY: all-build-texinfo maybe-all-build-texinfo
-maybe-all-build-texinfo:
-
-
-
-
-
-.PHONY: configure-build-fixincludes maybe-configure-build-fixincludes
-maybe-configure-build-fixincludes:
-
-
-
-
-
-.PHONY: all-build-fixincludes maybe-all-build-fixincludes
-maybe-all-build-fixincludes:
-
-
-
-
-
-.PHONY: configure-build-libcpp maybe-configure-build-libcpp
-maybe-configure-build-libcpp:
-
-
-
-
-
-.PHONY: all-build-libcpp maybe-all-build-libcpp
-maybe-all-build-libcpp:
-
-
-
-
-
-# --------------------------------------
-# Modules which run on the host machine
-# --------------------------------------
-
-
-.PHONY: configure-bfd maybe-configure-bfd
-maybe-configure-bfd:
-maybe-configure-bfd: configure-bfd
-configure-bfd:
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
- $(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd; \
- $(HOST_EXPORTS) \
- echo Configuring in $(HOST_SUBDIR)/bfd; \
- cd "$(HOST_SUBDIR)/bfd" || exit 1; \
- case $(srcdir) in \
- /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
- *) topdir=`echo $(HOST_SUBDIR)/bfd/ | \
- sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
- esac; \
- module_srcdir=bfd; \
- $(SHELL) \
- $$s/$$module_srcdir/configure \
- --srcdir=$${topdir}/$$module_srcdir \
- $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
- --target=${target_alias} \
- || exit 1
-
-
-
-.PHONY: configure-stage1-bfd maybe-configure-stage1-bfd
-maybe-configure-stage1-bfd:
-
-.PHONY: configure-stage2-bfd maybe-configure-stage2-bfd
-maybe-configure-stage2-bfd:
-
-.PHONY: configure-stage3-bfd maybe-configure-stage3-bfd
-maybe-configure-stage3-bfd:
-
-.PHONY: configure-stage4-bfd maybe-configure-stage4-bfd
-maybe-configure-stage4-bfd:
-
-.PHONY: configure-stageprofile-bfd maybe-configure-stageprofile-bfd
-maybe-configure-stageprofile-bfd:
-
-.PHONY: configure-stagefeedback-bfd maybe-configure-stagefeedback-bfd
-maybe-configure-stagefeedback-bfd:
-
-
-
-
-
-.PHONY: all-bfd maybe-all-bfd
-maybe-all-bfd:
-TARGET-bfd=all
-maybe-all-bfd: all-bfd
-all-bfd: configure-bfd
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(STAGE1_FLAGS_TO_PASS) \
- $(TARGET-bfd))
-
-
-
-.PHONY: all-stage1-bfd maybe-all-stage1-bfd
-.PHONY: clean-stage1-bfd maybe-clean-stage1-bfd
-maybe-all-stage1-bfd:
-maybe-clean-stage1-bfd:
-
-
-.PHONY: all-stage2-bfd maybe-all-stage2-bfd
-.PHONY: clean-stage2-bfd maybe-clean-stage2-bfd
-maybe-all-stage2-bfd:
-maybe-clean-stage2-bfd:
-
-
-.PHONY: all-stage3-bfd maybe-all-stage3-bfd
-.PHONY: clean-stage3-bfd maybe-clean-stage3-bfd
-maybe-all-stage3-bfd:
-maybe-clean-stage3-bfd:
-
-
-.PHONY: all-stage4-bfd maybe-all-stage4-bfd
-.PHONY: clean-stage4-bfd maybe-clean-stage4-bfd
-maybe-all-stage4-bfd:
-maybe-clean-stage4-bfd:
-
-
-.PHONY: all-stageprofile-bfd maybe-all-stageprofile-bfd
-.PHONY: clean-stageprofile-bfd maybe-clean-stageprofile-bfd
-maybe-all-stageprofile-bfd:
-maybe-clean-stageprofile-bfd:
-
-
-.PHONY: all-stagefeedback-bfd maybe-all-stagefeedback-bfd
-.PHONY: clean-stagefeedback-bfd maybe-clean-stagefeedback-bfd
-maybe-all-stagefeedback-bfd:
-maybe-clean-stagefeedback-bfd:
-
-
-
-
-
-.PHONY: check-bfd maybe-check-bfd
-maybe-check-bfd:
-maybe-check-bfd: check-bfd
-
-check-bfd:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) $(EXTRA_HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(FLAGS_TO_PASS) $(EXTRA_BOOTSTRAP_FLAGS) check)
-
-
-.PHONY: install-bfd maybe-install-bfd
-maybe-install-bfd:
-maybe-install-bfd: install-bfd
-
-install-bfd: installdirs
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(FLAGS_TO_PASS) install)
-
-
-.PHONY: install-strip-bfd maybe-install-strip-bfd
-maybe-install-strip-bfd:
-maybe-install-strip-bfd: install-strip-bfd
-
-install-strip-bfd: installdirs
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(FLAGS_TO_PASS) install-strip)
-
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-bfd info-bfd
-maybe-info-bfd:
-maybe-info-bfd: info-bfd
-
-info-bfd: \
- configure-bfd
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing info in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- info) \
- || exit 1
-
-
-.PHONY: maybe-dvi-bfd dvi-bfd
-maybe-dvi-bfd:
-maybe-dvi-bfd: dvi-bfd
-
-dvi-bfd: \
- configure-bfd
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing dvi in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- dvi) \
- || exit 1
-
-
-.PHONY: maybe-pdf-bfd pdf-bfd
-maybe-pdf-bfd:
-maybe-pdf-bfd: pdf-bfd
-
-pdf-bfd: \
- configure-bfd
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing pdf in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- pdf) \
- || exit 1
-
-
-.PHONY: maybe-html-bfd html-bfd
-maybe-html-bfd:
-maybe-html-bfd: html-bfd
-
-html-bfd: \
- configure-bfd
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing html in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- html) \
- || exit 1
-
-
-.PHONY: maybe-TAGS-bfd TAGS-bfd
-maybe-TAGS-bfd:
-maybe-TAGS-bfd: TAGS-bfd
-
-TAGS-bfd: \
- configure-bfd
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing TAGS in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- TAGS) \
- || exit 1
-
-
-.PHONY: maybe-install-info-bfd install-info-bfd
-maybe-install-info-bfd:
-maybe-install-info-bfd: install-info-bfd
-
-install-info-bfd: \
- configure-bfd \
- info-bfd
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing install-info in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- install-info) \
- || exit 1
-
-
-.PHONY: maybe-install-pdf-bfd install-pdf-bfd
-maybe-install-pdf-bfd:
-maybe-install-pdf-bfd: install-pdf-bfd
-
-install-pdf-bfd: \
- configure-bfd \
- pdf-bfd
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing install-pdf in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- install-pdf) \
- || exit 1
-
-
-.PHONY: maybe-install-html-bfd install-html-bfd
-maybe-install-html-bfd:
-maybe-install-html-bfd: install-html-bfd
-
-install-html-bfd: \
- configure-bfd \
- html-bfd
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing install-html in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- install-html) \
- || exit 1
-
-
-.PHONY: maybe-installcheck-bfd installcheck-bfd
-maybe-installcheck-bfd:
-maybe-installcheck-bfd: installcheck-bfd
-
-installcheck-bfd: \
- configure-bfd
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing installcheck in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- installcheck) \
- || exit 1
-
-
-.PHONY: maybe-mostlyclean-bfd mostlyclean-bfd
-maybe-mostlyclean-bfd:
-maybe-mostlyclean-bfd: mostlyclean-bfd
-
-mostlyclean-bfd:
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing mostlyclean in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- mostlyclean) \
- || exit 1
-
-
-.PHONY: maybe-clean-bfd clean-bfd
-maybe-clean-bfd:
-maybe-clean-bfd: clean-bfd
-
-clean-bfd:
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing clean in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- clean) \
- || exit 1
-
-
-.PHONY: maybe-distclean-bfd distclean-bfd
-maybe-distclean-bfd:
-maybe-distclean-bfd: distclean-bfd
-
-distclean-bfd:
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing distclean in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- distclean) \
- || exit 1
-
-
-.PHONY: maybe-maintainer-clean-bfd maintainer-clean-bfd
-maybe-maintainer-clean-bfd:
-maybe-maintainer-clean-bfd: maintainer-clean-bfd
-
-maintainer-clean-bfd:
- @[ -f ./bfd/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing maintainer-clean in bfd"; \
- (cd $(HOST_SUBDIR)/bfd && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- maintainer-clean) \
- || exit 1
-
-
-
-
-.PHONY: configure-opcodes maybe-configure-opcodes
-maybe-configure-opcodes:
-
-
-
-.PHONY: configure-stage1-opcodes maybe-configure-stage1-opcodes
-maybe-configure-stage1-opcodes:
-
-.PHONY: configure-stage2-opcodes maybe-configure-stage2-opcodes
-maybe-configure-stage2-opcodes:
-
-.PHONY: configure-stage3-opcodes maybe-configure-stage3-opcodes
-maybe-configure-stage3-opcodes:
-
-.PHONY: configure-stage4-opcodes maybe-configure-stage4-opcodes
-maybe-configure-stage4-opcodes:
-
-.PHONY: configure-stageprofile-opcodes maybe-configure-stageprofile-opcodes
-maybe-configure-stageprofile-opcodes:
-
-.PHONY: configure-stagefeedback-opcodes maybe-configure-stagefeedback-opcodes
-maybe-configure-stagefeedback-opcodes:
-
-
-
-
-
-.PHONY: all-opcodes maybe-all-opcodes
-maybe-all-opcodes:
-
-
-
-.PHONY: all-stage1-opcodes maybe-all-stage1-opcodes
-.PHONY: clean-stage1-opcodes maybe-clean-stage1-opcodes
-maybe-all-stage1-opcodes:
-maybe-clean-stage1-opcodes:
-
-
-.PHONY: all-stage2-opcodes maybe-all-stage2-opcodes
-.PHONY: clean-stage2-opcodes maybe-clean-stage2-opcodes
-maybe-all-stage2-opcodes:
-maybe-clean-stage2-opcodes:
-
-
-.PHONY: all-stage3-opcodes maybe-all-stage3-opcodes
-.PHONY: clean-stage3-opcodes maybe-clean-stage3-opcodes
-maybe-all-stage3-opcodes:
-maybe-clean-stage3-opcodes:
-
-
-.PHONY: all-stage4-opcodes maybe-all-stage4-opcodes
-.PHONY: clean-stage4-opcodes maybe-clean-stage4-opcodes
-maybe-all-stage4-opcodes:
-maybe-clean-stage4-opcodes:
-
-
-.PHONY: all-stageprofile-opcodes maybe-all-stageprofile-opcodes
-.PHONY: clean-stageprofile-opcodes maybe-clean-stageprofile-opcodes
-maybe-all-stageprofile-opcodes:
-maybe-clean-stageprofile-opcodes:
-
-
-.PHONY: all-stagefeedback-opcodes maybe-all-stagefeedback-opcodes
-.PHONY: clean-stagefeedback-opcodes maybe-clean-stagefeedback-opcodes
-maybe-all-stagefeedback-opcodes:
-maybe-clean-stagefeedback-opcodes:
-
-
-
-
-
-.PHONY: check-opcodes maybe-check-opcodes
-maybe-check-opcodes:
-
-.PHONY: install-opcodes maybe-install-opcodes
-maybe-install-opcodes:
-
-.PHONY: install-strip-opcodes maybe-install-strip-opcodes
-maybe-install-strip-opcodes:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-opcodes info-opcodes
-maybe-info-opcodes:
-
-.PHONY: maybe-dvi-opcodes dvi-opcodes
-maybe-dvi-opcodes:
-
-.PHONY: maybe-pdf-opcodes pdf-opcodes
-maybe-pdf-opcodes:
-
-.PHONY: maybe-html-opcodes html-opcodes
-maybe-html-opcodes:
-
-.PHONY: maybe-TAGS-opcodes TAGS-opcodes
-maybe-TAGS-opcodes:
-
-.PHONY: maybe-install-info-opcodes install-info-opcodes
-maybe-install-info-opcodes:
-
-.PHONY: maybe-install-pdf-opcodes install-pdf-opcodes
-maybe-install-pdf-opcodes:
-
-.PHONY: maybe-install-html-opcodes install-html-opcodes
-maybe-install-html-opcodes:
-
-.PHONY: maybe-installcheck-opcodes installcheck-opcodes
-maybe-installcheck-opcodes:
-
-.PHONY: maybe-mostlyclean-opcodes mostlyclean-opcodes
-maybe-mostlyclean-opcodes:
-
-.PHONY: maybe-clean-opcodes clean-opcodes
-maybe-clean-opcodes:
-
-.PHONY: maybe-distclean-opcodes distclean-opcodes
-maybe-distclean-opcodes:
-
-.PHONY: maybe-maintainer-clean-opcodes maintainer-clean-opcodes
-maybe-maintainer-clean-opcodes:
-
-
-
-.PHONY: configure-binutils maybe-configure-binutils
-maybe-configure-binutils:
-maybe-configure-binutils: configure-binutils
-configure-binutils:
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
- $(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils; \
- $(HOST_EXPORTS) \
- echo Configuring in $(HOST_SUBDIR)/binutils; \
- cd "$(HOST_SUBDIR)/binutils" || exit 1; \
- case $(srcdir) in \
- /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
- *) topdir=`echo $(HOST_SUBDIR)/binutils/ | \
- sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
- esac; \
- module_srcdir=binutils; \
- $(SHELL) \
- $$s/$$module_srcdir/configure \
- --srcdir=$${topdir}/$$module_srcdir \
- $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
- --target=${target_alias} \
- || exit 1
-
-
-
-.PHONY: configure-stage1-binutils maybe-configure-stage1-binutils
-maybe-configure-stage1-binutils:
-
-.PHONY: configure-stage2-binutils maybe-configure-stage2-binutils
-maybe-configure-stage2-binutils:
-
-.PHONY: configure-stage3-binutils maybe-configure-stage3-binutils
-maybe-configure-stage3-binutils:
-
-.PHONY: configure-stage4-binutils maybe-configure-stage4-binutils
-maybe-configure-stage4-binutils:
-
-.PHONY: configure-stageprofile-binutils maybe-configure-stageprofile-binutils
-maybe-configure-stageprofile-binutils:
-
-.PHONY: configure-stagefeedback-binutils maybe-configure-stagefeedback-binutils
-maybe-configure-stagefeedback-binutils:
-
-
-
-
-
-.PHONY: all-binutils maybe-all-binutils
-maybe-all-binutils:
-TARGET-binutils=all
-maybe-all-binutils: all-binutils
-all-binutils: configure-binutils
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(STAGE1_FLAGS_TO_PASS) \
- $(TARGET-binutils))
-
-
-
-.PHONY: all-stage1-binutils maybe-all-stage1-binutils
-.PHONY: clean-stage1-binutils maybe-clean-stage1-binutils
-maybe-all-stage1-binutils:
-maybe-clean-stage1-binutils:
-
-
-.PHONY: all-stage2-binutils maybe-all-stage2-binutils
-.PHONY: clean-stage2-binutils maybe-clean-stage2-binutils
-maybe-all-stage2-binutils:
-maybe-clean-stage2-binutils:
-
-
-.PHONY: all-stage3-binutils maybe-all-stage3-binutils
-.PHONY: clean-stage3-binutils maybe-clean-stage3-binutils
-maybe-all-stage3-binutils:
-maybe-clean-stage3-binutils:
-
-
-.PHONY: all-stage4-binutils maybe-all-stage4-binutils
-.PHONY: clean-stage4-binutils maybe-clean-stage4-binutils
-maybe-all-stage4-binutils:
-maybe-clean-stage4-binutils:
-
-
-.PHONY: all-stageprofile-binutils maybe-all-stageprofile-binutils
-.PHONY: clean-stageprofile-binutils maybe-clean-stageprofile-binutils
-maybe-all-stageprofile-binutils:
-maybe-clean-stageprofile-binutils:
-
-
-.PHONY: all-stagefeedback-binutils maybe-all-stagefeedback-binutils
-.PHONY: clean-stagefeedback-binutils maybe-clean-stagefeedback-binutils
-maybe-all-stagefeedback-binutils:
-maybe-clean-stagefeedback-binutils:
-
-
-
-
-
-.PHONY: check-binutils maybe-check-binutils
-maybe-check-binutils:
-maybe-check-binutils: check-binutils
-
-check-binutils:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) $(EXTRA_HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(FLAGS_TO_PASS) $(EXTRA_BOOTSTRAP_FLAGS) check)
-
-
-.PHONY: install-binutils maybe-install-binutils uninstall-binutils maybe-uninstall-binutils
-maybe-install-binutils:
-maybe-install-binutils: install-binutils
-
-install-binutils: installdirs
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(FLAGS_TO_PASS) install)
-
-
-maybe-uninstall-binutils:
-maybe-uninstall-binutils: uninstall-binutils
-uninstall-binutils:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(FLAGS_TO_PASS) uninstall)
-
-.PHONY: install-strip-binutils maybe-install-strip-binutils
-maybe-install-strip-binutils:
-maybe-install-strip-binutils: install-strip-binutils
-
-install-strip-binutils: installdirs
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(FLAGS_TO_PASS) install-strip)
-
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-binutils info-binutils
-maybe-info-binutils:
-maybe-info-binutils: info-binutils
-
-info-binutils: \
- configure-binutils
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing info in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- info) \
- || exit 1
-
-
-.PHONY: maybe-dvi-binutils dvi-binutils
-maybe-dvi-binutils:
-maybe-dvi-binutils: dvi-binutils
-
-dvi-binutils: \
- configure-binutils
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing dvi in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- dvi) \
- || exit 1
-
-
-.PHONY: maybe-pdf-binutils pdf-binutils
-maybe-pdf-binutils:
-maybe-pdf-binutils: pdf-binutils
-
-pdf-binutils: \
- configure-binutils
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing pdf in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- pdf) \
- || exit 1
-
-
-.PHONY: maybe-html-binutils html-binutils
-maybe-html-binutils:
-maybe-html-binutils: html-binutils
-
-html-binutils: \
- configure-binutils
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing html in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- html) \
- || exit 1
-
-
-.PHONY: maybe-TAGS-binutils TAGS-binutils
-maybe-TAGS-binutils:
-maybe-TAGS-binutils: TAGS-binutils
-
-TAGS-binutils: \
- configure-binutils
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing TAGS in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- TAGS) \
- || exit 1
-
-
-.PHONY: maybe-install-info-binutils install-info-binutils
-maybe-install-info-binutils:
-maybe-install-info-binutils: install-info-binutils
-
-install-info-binutils: \
- configure-binutils \
- info-binutils
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing install-info in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- install-info) \
- || exit 1
-
-
-.PHONY: maybe-install-pdf-binutils install-pdf-binutils
-maybe-install-pdf-binutils:
-maybe-install-pdf-binutils: install-pdf-binutils
-
-install-pdf-binutils: \
- configure-binutils \
- pdf-binutils
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing install-pdf in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- install-pdf) \
- || exit 1
-
-
-.PHONY: maybe-install-html-binutils install-html-binutils
-maybe-install-html-binutils:
-maybe-install-html-binutils: install-html-binutils
-
-install-html-binutils: \
- configure-binutils \
- html-binutils
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing install-html in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- install-html) \
- || exit 1
-
-
-.PHONY: maybe-installcheck-binutils installcheck-binutils
-maybe-installcheck-binutils:
-maybe-installcheck-binutils: installcheck-binutils
-
-installcheck-binutils: \
- configure-binutils
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing installcheck in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- installcheck) \
- || exit 1
-
-
-.PHONY: maybe-mostlyclean-binutils mostlyclean-binutils
-maybe-mostlyclean-binutils:
-maybe-mostlyclean-binutils: mostlyclean-binutils
-
-mostlyclean-binutils:
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing mostlyclean in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- mostlyclean) \
- || exit 1
-
-
-.PHONY: maybe-clean-binutils clean-binutils
-maybe-clean-binutils:
-maybe-clean-binutils: clean-binutils
-
-clean-binutils:
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing clean in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- clean) \
- || exit 1
-
-
-.PHONY: maybe-distclean-binutils distclean-binutils
-maybe-distclean-binutils:
-maybe-distclean-binutils: distclean-binutils
-
-distclean-binutils:
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing distclean in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- distclean) \
- || exit 1
-
-
-.PHONY: maybe-maintainer-clean-binutils maintainer-clean-binutils
-maybe-maintainer-clean-binutils:
-maybe-maintainer-clean-binutils: maintainer-clean-binutils
-
-maintainer-clean-binutils:
- @[ -f ./binutils/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing maintainer-clean in binutils"; \
- (cd $(HOST_SUBDIR)/binutils && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- maintainer-clean) \
- || exit 1
-
-
-
-
-.PHONY: configure-bison maybe-configure-bison
-maybe-configure-bison:
-
-
-
-
-
-.PHONY: all-bison maybe-all-bison
-maybe-all-bison:
-
-
-
-
-.PHONY: check-bison maybe-check-bison
-maybe-check-bison:
-
-.PHONY: install-bison maybe-install-bison
-maybe-install-bison:
-
-.PHONY: install-strip-bison maybe-install-strip-bison
-maybe-install-strip-bison:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-bison info-bison
-maybe-info-bison:
-
-.PHONY: maybe-dvi-bison dvi-bison
-maybe-dvi-bison:
-
-.PHONY: maybe-pdf-bison pdf-bison
-maybe-pdf-bison:
-
-.PHONY: maybe-html-bison html-bison
-maybe-html-bison:
-
-.PHONY: maybe-TAGS-bison TAGS-bison
-maybe-TAGS-bison:
-
-.PHONY: maybe-install-info-bison install-info-bison
-maybe-install-info-bison:
-
-.PHONY: maybe-install-pdf-bison install-pdf-bison
-maybe-install-pdf-bison:
-
-.PHONY: maybe-install-html-bison install-html-bison
-maybe-install-html-bison:
-
-.PHONY: maybe-installcheck-bison installcheck-bison
-maybe-installcheck-bison:
-
-.PHONY: maybe-mostlyclean-bison mostlyclean-bison
-maybe-mostlyclean-bison:
-
-.PHONY: maybe-clean-bison clean-bison
-maybe-clean-bison:
-
-.PHONY: maybe-distclean-bison distclean-bison
-maybe-distclean-bison:
-
-.PHONY: maybe-maintainer-clean-bison maintainer-clean-bison
-maybe-maintainer-clean-bison:
-
-
-
-.PHONY: configure-cgen maybe-configure-cgen
-maybe-configure-cgen:
-
-
-
-
-
-.PHONY: all-cgen maybe-all-cgen
-maybe-all-cgen:
-
-
-
-
-.PHONY: check-cgen maybe-check-cgen
-maybe-check-cgen:
-
-.PHONY: install-cgen maybe-install-cgen
-maybe-install-cgen:
-
-.PHONY: install-strip-cgen maybe-install-strip-cgen
-maybe-install-strip-cgen:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-cgen info-cgen
-maybe-info-cgen:
-
-.PHONY: maybe-dvi-cgen dvi-cgen
-maybe-dvi-cgen:
-
-.PHONY: maybe-pdf-cgen pdf-cgen
-maybe-pdf-cgen:
-
-.PHONY: maybe-html-cgen html-cgen
-maybe-html-cgen:
-
-.PHONY: maybe-TAGS-cgen TAGS-cgen
-maybe-TAGS-cgen:
-
-.PHONY: maybe-install-info-cgen install-info-cgen
-maybe-install-info-cgen:
-
-.PHONY: maybe-install-pdf-cgen install-pdf-cgen
-maybe-install-pdf-cgen:
-
-.PHONY: maybe-install-html-cgen install-html-cgen
-maybe-install-html-cgen:
-
-.PHONY: maybe-installcheck-cgen installcheck-cgen
-maybe-installcheck-cgen:
-
-.PHONY: maybe-mostlyclean-cgen mostlyclean-cgen
-maybe-mostlyclean-cgen:
-
-.PHONY: maybe-clean-cgen clean-cgen
-maybe-clean-cgen:
-
-.PHONY: maybe-distclean-cgen distclean-cgen
-maybe-distclean-cgen:
-
-.PHONY: maybe-maintainer-clean-cgen maintainer-clean-cgen
-maybe-maintainer-clean-cgen:
-
-
-
-.PHONY: configure-dejagnu maybe-configure-dejagnu
-maybe-configure-dejagnu:
-
-
-
-
-
-.PHONY: all-dejagnu maybe-all-dejagnu
-maybe-all-dejagnu:
-
-
-
-
-.PHONY: check-dejagnu maybe-check-dejagnu
-maybe-check-dejagnu:
-
-.PHONY: install-dejagnu maybe-install-dejagnu
-maybe-install-dejagnu:
-
-.PHONY: install-strip-dejagnu maybe-install-strip-dejagnu
-maybe-install-strip-dejagnu:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-dejagnu info-dejagnu
-maybe-info-dejagnu:
-
-.PHONY: maybe-dvi-dejagnu dvi-dejagnu
-maybe-dvi-dejagnu:
-
-.PHONY: maybe-pdf-dejagnu pdf-dejagnu
-maybe-pdf-dejagnu:
-
-.PHONY: maybe-html-dejagnu html-dejagnu
-maybe-html-dejagnu:
-
-.PHONY: maybe-TAGS-dejagnu TAGS-dejagnu
-maybe-TAGS-dejagnu:
-
-.PHONY: maybe-install-info-dejagnu install-info-dejagnu
-maybe-install-info-dejagnu:
-
-.PHONY: maybe-install-pdf-dejagnu install-pdf-dejagnu
-maybe-install-pdf-dejagnu:
-
-.PHONY: maybe-install-html-dejagnu install-html-dejagnu
-maybe-install-html-dejagnu:
-
-.PHONY: maybe-installcheck-dejagnu installcheck-dejagnu
-maybe-installcheck-dejagnu:
-
-.PHONY: maybe-mostlyclean-dejagnu mostlyclean-dejagnu
-maybe-mostlyclean-dejagnu:
-
-.PHONY: maybe-clean-dejagnu clean-dejagnu
-maybe-clean-dejagnu:
-
-.PHONY: maybe-distclean-dejagnu distclean-dejagnu
-maybe-distclean-dejagnu:
-
-.PHONY: maybe-maintainer-clean-dejagnu maintainer-clean-dejagnu
-maybe-maintainer-clean-dejagnu:
-
-
-
-.PHONY: configure-etc maybe-configure-etc
-maybe-configure-etc:
-
-
-
-
-
-.PHONY: all-etc maybe-all-etc
-maybe-all-etc:
-
-
-
-
-.PHONY: check-etc maybe-check-etc
-maybe-check-etc:
-
-.PHONY: install-etc maybe-install-etc
-maybe-install-etc:
-
-.PHONY: install-strip-etc maybe-install-strip-etc
-maybe-install-strip-etc:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-etc info-etc
-maybe-info-etc:
-
-.PHONY: maybe-dvi-etc dvi-etc
-maybe-dvi-etc:
-
-.PHONY: maybe-pdf-etc pdf-etc
-maybe-pdf-etc:
-
-.PHONY: maybe-html-etc html-etc
-maybe-html-etc:
-
-.PHONY: maybe-TAGS-etc TAGS-etc
-maybe-TAGS-etc:
-
-.PHONY: maybe-install-info-etc install-info-etc
-maybe-install-info-etc:
-
-.PHONY: maybe-install-pdf-etc install-pdf-etc
-maybe-install-pdf-etc:
-
-.PHONY: maybe-install-html-etc install-html-etc
-maybe-install-html-etc:
-
-.PHONY: maybe-installcheck-etc installcheck-etc
-maybe-installcheck-etc:
-
-.PHONY: maybe-mostlyclean-etc mostlyclean-etc
-maybe-mostlyclean-etc:
-
-.PHONY: maybe-clean-etc clean-etc
-maybe-clean-etc:
-
-.PHONY: maybe-distclean-etc distclean-etc
-maybe-distclean-etc:
-
-.PHONY: maybe-maintainer-clean-etc maintainer-clean-etc
-maybe-maintainer-clean-etc:
-
-
-
-.PHONY: configure-fastjar maybe-configure-fastjar
-maybe-configure-fastjar:
-
-
-
-
-
-.PHONY: all-fastjar maybe-all-fastjar
-maybe-all-fastjar:
-
-
-
-
-.PHONY: check-fastjar maybe-check-fastjar
-maybe-check-fastjar:
-
-.PHONY: install-fastjar maybe-install-fastjar
-maybe-install-fastjar:
-
-.PHONY: install-strip-fastjar maybe-install-strip-fastjar
-maybe-install-strip-fastjar:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-fastjar info-fastjar
-maybe-info-fastjar:
-
-.PHONY: maybe-dvi-fastjar dvi-fastjar
-maybe-dvi-fastjar:
-
-.PHONY: maybe-pdf-fastjar pdf-fastjar
-maybe-pdf-fastjar:
-
-.PHONY: maybe-html-fastjar html-fastjar
-maybe-html-fastjar:
-
-.PHONY: maybe-TAGS-fastjar TAGS-fastjar
-maybe-TAGS-fastjar:
-
-.PHONY: maybe-install-info-fastjar install-info-fastjar
-maybe-install-info-fastjar:
-
-.PHONY: maybe-install-pdf-fastjar install-pdf-fastjar
-maybe-install-pdf-fastjar:
-
-.PHONY: maybe-install-html-fastjar install-html-fastjar
-maybe-install-html-fastjar:
-
-.PHONY: maybe-installcheck-fastjar installcheck-fastjar
-maybe-installcheck-fastjar:
-
-.PHONY: maybe-mostlyclean-fastjar mostlyclean-fastjar
-maybe-mostlyclean-fastjar:
-
-.PHONY: maybe-clean-fastjar clean-fastjar
-maybe-clean-fastjar:
-
-.PHONY: maybe-distclean-fastjar distclean-fastjar
-maybe-distclean-fastjar:
-
-.PHONY: maybe-maintainer-clean-fastjar maintainer-clean-fastjar
-maybe-maintainer-clean-fastjar:
-
-
-
-.PHONY: configure-fixincludes maybe-configure-fixincludes
-maybe-configure-fixincludes:
-
-
-
-.PHONY: configure-stage1-fixincludes maybe-configure-stage1-fixincludes
-maybe-configure-stage1-fixincludes:
-
-.PHONY: configure-stage2-fixincludes maybe-configure-stage2-fixincludes
-maybe-configure-stage2-fixincludes:
-
-.PHONY: configure-stage3-fixincludes maybe-configure-stage3-fixincludes
-maybe-configure-stage3-fixincludes:
-
-.PHONY: configure-stage4-fixincludes maybe-configure-stage4-fixincludes
-maybe-configure-stage4-fixincludes:
-
-.PHONY: configure-stageprofile-fixincludes maybe-configure-stageprofile-fixincludes
-maybe-configure-stageprofile-fixincludes:
-
-.PHONY: configure-stagefeedback-fixincludes maybe-configure-stagefeedback-fixincludes
-maybe-configure-stagefeedback-fixincludes:
-
-
-
-
-
-.PHONY: all-fixincludes maybe-all-fixincludes
-maybe-all-fixincludes:
-
-
-
-.PHONY: all-stage1-fixincludes maybe-all-stage1-fixincludes
-.PHONY: clean-stage1-fixincludes maybe-clean-stage1-fixincludes
-maybe-all-stage1-fixincludes:
-maybe-clean-stage1-fixincludes:
-
-
-.PHONY: all-stage2-fixincludes maybe-all-stage2-fixincludes
-.PHONY: clean-stage2-fixincludes maybe-clean-stage2-fixincludes
-maybe-all-stage2-fixincludes:
-maybe-clean-stage2-fixincludes:
-
-
-.PHONY: all-stage3-fixincludes maybe-all-stage3-fixincludes
-.PHONY: clean-stage3-fixincludes maybe-clean-stage3-fixincludes
-maybe-all-stage3-fixincludes:
-maybe-clean-stage3-fixincludes:
-
-
-.PHONY: all-stage4-fixincludes maybe-all-stage4-fixincludes
-.PHONY: clean-stage4-fixincludes maybe-clean-stage4-fixincludes
-maybe-all-stage4-fixincludes:
-maybe-clean-stage4-fixincludes:
-
-
-.PHONY: all-stageprofile-fixincludes maybe-all-stageprofile-fixincludes
-.PHONY: clean-stageprofile-fixincludes maybe-clean-stageprofile-fixincludes
-maybe-all-stageprofile-fixincludes:
-maybe-clean-stageprofile-fixincludes:
-
-
-.PHONY: all-stagefeedback-fixincludes maybe-all-stagefeedback-fixincludes
-.PHONY: clean-stagefeedback-fixincludes maybe-clean-stagefeedback-fixincludes
-maybe-all-stagefeedback-fixincludes:
-maybe-clean-stagefeedback-fixincludes:
-
-
-
-
-
-.PHONY: check-fixincludes maybe-check-fixincludes
-maybe-check-fixincludes:
-
-.PHONY: install-fixincludes maybe-install-fixincludes
-maybe-install-fixincludes:
-
-.PHONY: install-strip-fixincludes maybe-install-strip-fixincludes
-maybe-install-strip-fixincludes:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-fixincludes info-fixincludes
-maybe-info-fixincludes:
-
-.PHONY: maybe-dvi-fixincludes dvi-fixincludes
-maybe-dvi-fixincludes:
-
-.PHONY: maybe-pdf-fixincludes pdf-fixincludes
-maybe-pdf-fixincludes:
-
-.PHONY: maybe-html-fixincludes html-fixincludes
-maybe-html-fixincludes:
-
-.PHONY: maybe-TAGS-fixincludes TAGS-fixincludes
-maybe-TAGS-fixincludes:
-
-.PHONY: maybe-install-info-fixincludes install-info-fixincludes
-maybe-install-info-fixincludes:
-
-.PHONY: maybe-install-pdf-fixincludes install-pdf-fixincludes
-maybe-install-pdf-fixincludes:
-
-.PHONY: maybe-install-html-fixincludes install-html-fixincludes
-maybe-install-html-fixincludes:
-
-.PHONY: maybe-installcheck-fixincludes installcheck-fixincludes
-maybe-installcheck-fixincludes:
-
-.PHONY: maybe-mostlyclean-fixincludes mostlyclean-fixincludes
-maybe-mostlyclean-fixincludes:
-
-.PHONY: maybe-clean-fixincludes clean-fixincludes
-maybe-clean-fixincludes:
-
-.PHONY: maybe-distclean-fixincludes distclean-fixincludes
-maybe-distclean-fixincludes:
-
-.PHONY: maybe-maintainer-clean-fixincludes maintainer-clean-fixincludes
-maybe-maintainer-clean-fixincludes:
-
-
-
-.PHONY: configure-flex maybe-configure-flex
-maybe-configure-flex:
-
-
-
-
-
-.PHONY: all-flex maybe-all-flex
-maybe-all-flex:
-
-
-
-
-.PHONY: check-flex maybe-check-flex
-maybe-check-flex:
-
-.PHONY: install-flex maybe-install-flex
-maybe-install-flex:
-
-.PHONY: install-strip-flex maybe-install-strip-flex
-maybe-install-strip-flex:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-flex info-flex
-maybe-info-flex:
-
-.PHONY: maybe-dvi-flex dvi-flex
-maybe-dvi-flex:
-
-.PHONY: maybe-pdf-flex pdf-flex
-maybe-pdf-flex:
-
-.PHONY: maybe-html-flex html-flex
-maybe-html-flex:
-
-.PHONY: maybe-TAGS-flex TAGS-flex
-maybe-TAGS-flex:
-
-.PHONY: maybe-install-info-flex install-info-flex
-maybe-install-info-flex:
-
-.PHONY: maybe-install-pdf-flex install-pdf-flex
-maybe-install-pdf-flex:
-
-.PHONY: maybe-install-html-flex install-html-flex
-maybe-install-html-flex:
-
-.PHONY: maybe-installcheck-flex installcheck-flex
-maybe-installcheck-flex:
-
-.PHONY: maybe-mostlyclean-flex mostlyclean-flex
-maybe-mostlyclean-flex:
-
-.PHONY: maybe-clean-flex clean-flex
-maybe-clean-flex:
-
-.PHONY: maybe-distclean-flex distclean-flex
-maybe-distclean-flex:
-
-.PHONY: maybe-maintainer-clean-flex maintainer-clean-flex
-maybe-maintainer-clean-flex:
-
-
-
-.PHONY: configure-gas maybe-configure-gas
-maybe-configure-gas:
-
-
-
-.PHONY: configure-stage1-gas maybe-configure-stage1-gas
-maybe-configure-stage1-gas:
-
-.PHONY: configure-stage2-gas maybe-configure-stage2-gas
-maybe-configure-stage2-gas:
-
-.PHONY: configure-stage3-gas maybe-configure-stage3-gas
-maybe-configure-stage3-gas:
-
-.PHONY: configure-stage4-gas maybe-configure-stage4-gas
-maybe-configure-stage4-gas:
-
-.PHONY: configure-stageprofile-gas maybe-configure-stageprofile-gas
-maybe-configure-stageprofile-gas:
-
-.PHONY: configure-stagefeedback-gas maybe-configure-stagefeedback-gas
-maybe-configure-stagefeedback-gas:
-
-
-
-
-
-.PHONY: all-gas maybe-all-gas
-maybe-all-gas:
-
-
-
-.PHONY: all-stage1-gas maybe-all-stage1-gas
-.PHONY: clean-stage1-gas maybe-clean-stage1-gas
-maybe-all-stage1-gas:
-maybe-clean-stage1-gas:
-
-
-.PHONY: all-stage2-gas maybe-all-stage2-gas
-.PHONY: clean-stage2-gas maybe-clean-stage2-gas
-maybe-all-stage2-gas:
-maybe-clean-stage2-gas:
-
-
-.PHONY: all-stage3-gas maybe-all-stage3-gas
-.PHONY: clean-stage3-gas maybe-clean-stage3-gas
-maybe-all-stage3-gas:
-maybe-clean-stage3-gas:
-
-
-.PHONY: all-stage4-gas maybe-all-stage4-gas
-.PHONY: clean-stage4-gas maybe-clean-stage4-gas
-maybe-all-stage4-gas:
-maybe-clean-stage4-gas:
-
-
-.PHONY: all-stageprofile-gas maybe-all-stageprofile-gas
-.PHONY: clean-stageprofile-gas maybe-clean-stageprofile-gas
-maybe-all-stageprofile-gas:
-maybe-clean-stageprofile-gas:
-
-
-.PHONY: all-stagefeedback-gas maybe-all-stagefeedback-gas
-.PHONY: clean-stagefeedback-gas maybe-clean-stagefeedback-gas
-maybe-all-stagefeedback-gas:
-maybe-clean-stagefeedback-gas:
-
-
-
-
-
-.PHONY: check-gas maybe-check-gas
-maybe-check-gas:
-
-.PHONY: install-gas maybe-install-gas
-maybe-install-gas:
-
-.PHONY: install-strip-gas maybe-install-strip-gas
-maybe-install-strip-gas:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-gas info-gas
-maybe-info-gas:
-
-.PHONY: maybe-dvi-gas dvi-gas
-maybe-dvi-gas:
-
-.PHONY: maybe-pdf-gas pdf-gas
-maybe-pdf-gas:
-
-.PHONY: maybe-html-gas html-gas
-maybe-html-gas:
-
-.PHONY: maybe-TAGS-gas TAGS-gas
-maybe-TAGS-gas:
-
-.PHONY: maybe-install-info-gas install-info-gas
-maybe-install-info-gas:
-
-.PHONY: maybe-install-pdf-gas install-pdf-gas
-maybe-install-pdf-gas:
-
-.PHONY: maybe-install-html-gas install-html-gas
-maybe-install-html-gas:
-
-.PHONY: maybe-installcheck-gas installcheck-gas
-maybe-installcheck-gas:
-
-.PHONY: maybe-mostlyclean-gas mostlyclean-gas
-maybe-mostlyclean-gas:
-
-.PHONY: maybe-clean-gas clean-gas
-maybe-clean-gas:
-
-.PHONY: maybe-distclean-gas distclean-gas
-maybe-distclean-gas:
-
-.PHONY: maybe-maintainer-clean-gas maintainer-clean-gas
-maybe-maintainer-clean-gas:
-
-
-
-.PHONY: configure-gcc maybe-configure-gcc
-maybe-configure-gcc:
-
-
-
-.PHONY: configure-stage1-gcc maybe-configure-stage1-gcc
-maybe-configure-stage1-gcc:
-
-.PHONY: configure-stage2-gcc maybe-configure-stage2-gcc
-maybe-configure-stage2-gcc:
-
-.PHONY: configure-stage3-gcc maybe-configure-stage3-gcc
-maybe-configure-stage3-gcc:
-
-.PHONY: configure-stage4-gcc maybe-configure-stage4-gcc
-maybe-configure-stage4-gcc:
-
-.PHONY: configure-stageprofile-gcc maybe-configure-stageprofile-gcc
-maybe-configure-stageprofile-gcc:
-
-.PHONY: configure-stagefeedback-gcc maybe-configure-stagefeedback-gcc
-maybe-configure-stagefeedback-gcc:
-
-
-
-
-
-.PHONY: all-gcc maybe-all-gcc
-maybe-all-gcc:
-
-
-
-.PHONY: all-stage1-gcc maybe-all-stage1-gcc
-.PHONY: clean-stage1-gcc maybe-clean-stage1-gcc
-maybe-all-stage1-gcc:
-maybe-clean-stage1-gcc:
-
-
-.PHONY: all-stage2-gcc maybe-all-stage2-gcc
-.PHONY: clean-stage2-gcc maybe-clean-stage2-gcc
-maybe-all-stage2-gcc:
-maybe-clean-stage2-gcc:
-
-
-.PHONY: all-stage3-gcc maybe-all-stage3-gcc
-.PHONY: clean-stage3-gcc maybe-clean-stage3-gcc
-maybe-all-stage3-gcc:
-maybe-clean-stage3-gcc:
-
-
-.PHONY: all-stage4-gcc maybe-all-stage4-gcc
-.PHONY: clean-stage4-gcc maybe-clean-stage4-gcc
-maybe-all-stage4-gcc:
-maybe-clean-stage4-gcc:
-
-
-.PHONY: all-stageprofile-gcc maybe-all-stageprofile-gcc
-.PHONY: clean-stageprofile-gcc maybe-clean-stageprofile-gcc
-maybe-all-stageprofile-gcc:
-maybe-clean-stageprofile-gcc:
-
-
-.PHONY: all-stagefeedback-gcc maybe-all-stagefeedback-gcc
-.PHONY: clean-stagefeedback-gcc maybe-clean-stagefeedback-gcc
-maybe-all-stagefeedback-gcc:
-maybe-clean-stagefeedback-gcc:
-
-
-
-
-
-.PHONY: check-gcc maybe-check-gcc
-maybe-check-gcc:
-
-.PHONY: install-gcc maybe-install-gcc
-maybe-install-gcc:
-
-.PHONY: install-strip-gcc maybe-install-strip-gcc
-maybe-install-strip-gcc:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-gcc info-gcc
-maybe-info-gcc:
-
-.PHONY: maybe-dvi-gcc dvi-gcc
-maybe-dvi-gcc:
-
-.PHONY: maybe-pdf-gcc pdf-gcc
-maybe-pdf-gcc:
-
-.PHONY: maybe-html-gcc html-gcc
-maybe-html-gcc:
-
-.PHONY: maybe-TAGS-gcc TAGS-gcc
-maybe-TAGS-gcc:
-
-.PHONY: maybe-install-info-gcc install-info-gcc
-maybe-install-info-gcc:
-
-.PHONY: maybe-install-pdf-gcc install-pdf-gcc
-maybe-install-pdf-gcc:
-
-.PHONY: maybe-install-html-gcc install-html-gcc
-maybe-install-html-gcc:
-
-.PHONY: maybe-installcheck-gcc installcheck-gcc
-maybe-installcheck-gcc:
-
-.PHONY: maybe-mostlyclean-gcc mostlyclean-gcc
-maybe-mostlyclean-gcc:
-
-.PHONY: maybe-clean-gcc clean-gcc
-maybe-clean-gcc:
-
-.PHONY: maybe-distclean-gcc distclean-gcc
-maybe-distclean-gcc:
-
-.PHONY: maybe-maintainer-clean-gcc maintainer-clean-gcc
-maybe-maintainer-clean-gcc:
-
-
-
-.PHONY: configure-gmp maybe-configure-gmp
-maybe-configure-gmp:
-
-
-
-.PHONY: configure-stage1-gmp maybe-configure-stage1-gmp
-maybe-configure-stage1-gmp:
-
-.PHONY: configure-stage2-gmp maybe-configure-stage2-gmp
-maybe-configure-stage2-gmp:
-
-.PHONY: configure-stage3-gmp maybe-configure-stage3-gmp
-maybe-configure-stage3-gmp:
-
-.PHONY: configure-stage4-gmp maybe-configure-stage4-gmp
-maybe-configure-stage4-gmp:
-
-.PHONY: configure-stageprofile-gmp maybe-configure-stageprofile-gmp
-maybe-configure-stageprofile-gmp:
-
-.PHONY: configure-stagefeedback-gmp maybe-configure-stagefeedback-gmp
-maybe-configure-stagefeedback-gmp:
-
-
-
-
-
-.PHONY: all-gmp maybe-all-gmp
-maybe-all-gmp:
-
-
-
-.PHONY: all-stage1-gmp maybe-all-stage1-gmp
-.PHONY: clean-stage1-gmp maybe-clean-stage1-gmp
-maybe-all-stage1-gmp:
-maybe-clean-stage1-gmp:
-
-
-.PHONY: all-stage2-gmp maybe-all-stage2-gmp
-.PHONY: clean-stage2-gmp maybe-clean-stage2-gmp
-maybe-all-stage2-gmp:
-maybe-clean-stage2-gmp:
-
-
-.PHONY: all-stage3-gmp maybe-all-stage3-gmp
-.PHONY: clean-stage3-gmp maybe-clean-stage3-gmp
-maybe-all-stage3-gmp:
-maybe-clean-stage3-gmp:
-
-
-.PHONY: all-stage4-gmp maybe-all-stage4-gmp
-.PHONY: clean-stage4-gmp maybe-clean-stage4-gmp
-maybe-all-stage4-gmp:
-maybe-clean-stage4-gmp:
-
-
-.PHONY: all-stageprofile-gmp maybe-all-stageprofile-gmp
-.PHONY: clean-stageprofile-gmp maybe-clean-stageprofile-gmp
-maybe-all-stageprofile-gmp:
-maybe-clean-stageprofile-gmp:
-
-
-.PHONY: all-stagefeedback-gmp maybe-all-stagefeedback-gmp
-.PHONY: clean-stagefeedback-gmp maybe-clean-stagefeedback-gmp
-maybe-all-stagefeedback-gmp:
-maybe-clean-stagefeedback-gmp:
-
-
-
-
-
-.PHONY: check-gmp maybe-check-gmp
-maybe-check-gmp:
-
-.PHONY: install-gmp maybe-install-gmp
-maybe-install-gmp:
-
-.PHONY: install-strip-gmp maybe-install-strip-gmp
-maybe-install-strip-gmp:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-gmp info-gmp
-maybe-info-gmp:
-
-.PHONY: maybe-dvi-gmp dvi-gmp
-maybe-dvi-gmp:
-
-.PHONY: maybe-pdf-gmp pdf-gmp
-maybe-pdf-gmp:
-
-.PHONY: maybe-html-gmp html-gmp
-maybe-html-gmp:
-
-.PHONY: maybe-TAGS-gmp TAGS-gmp
-maybe-TAGS-gmp:
-
-.PHONY: maybe-install-info-gmp install-info-gmp
-maybe-install-info-gmp:
-
-.PHONY: maybe-install-pdf-gmp install-pdf-gmp
-maybe-install-pdf-gmp:
-
-.PHONY: maybe-install-html-gmp install-html-gmp
-maybe-install-html-gmp:
-
-.PHONY: maybe-installcheck-gmp installcheck-gmp
-maybe-installcheck-gmp:
-
-.PHONY: maybe-mostlyclean-gmp mostlyclean-gmp
-maybe-mostlyclean-gmp:
-
-.PHONY: maybe-clean-gmp clean-gmp
-maybe-clean-gmp:
-
-.PHONY: maybe-distclean-gmp distclean-gmp
-maybe-distclean-gmp:
-
-.PHONY: maybe-maintainer-clean-gmp maintainer-clean-gmp
-maybe-maintainer-clean-gmp:
-
-
-
-.PHONY: configure-mpfr maybe-configure-mpfr
-maybe-configure-mpfr:
-
-
-
-.PHONY: configure-stage1-mpfr maybe-configure-stage1-mpfr
-maybe-configure-stage1-mpfr:
-
-.PHONY: configure-stage2-mpfr maybe-configure-stage2-mpfr
-maybe-configure-stage2-mpfr:
-
-.PHONY: configure-stage3-mpfr maybe-configure-stage3-mpfr
-maybe-configure-stage3-mpfr:
-
-.PHONY: configure-stage4-mpfr maybe-configure-stage4-mpfr
-maybe-configure-stage4-mpfr:
-
-.PHONY: configure-stageprofile-mpfr maybe-configure-stageprofile-mpfr
-maybe-configure-stageprofile-mpfr:
-
-.PHONY: configure-stagefeedback-mpfr maybe-configure-stagefeedback-mpfr
-maybe-configure-stagefeedback-mpfr:
-
-
-
-
-
-.PHONY: all-mpfr maybe-all-mpfr
-maybe-all-mpfr:
-
-
-
-.PHONY: all-stage1-mpfr maybe-all-stage1-mpfr
-.PHONY: clean-stage1-mpfr maybe-clean-stage1-mpfr
-maybe-all-stage1-mpfr:
-maybe-clean-stage1-mpfr:
-
-
-.PHONY: all-stage2-mpfr maybe-all-stage2-mpfr
-.PHONY: clean-stage2-mpfr maybe-clean-stage2-mpfr
-maybe-all-stage2-mpfr:
-maybe-clean-stage2-mpfr:
-
-
-.PHONY: all-stage3-mpfr maybe-all-stage3-mpfr
-.PHONY: clean-stage3-mpfr maybe-clean-stage3-mpfr
-maybe-all-stage3-mpfr:
-maybe-clean-stage3-mpfr:
-
-
-.PHONY: all-stage4-mpfr maybe-all-stage4-mpfr
-.PHONY: clean-stage4-mpfr maybe-clean-stage4-mpfr
-maybe-all-stage4-mpfr:
-maybe-clean-stage4-mpfr:
-
-
-.PHONY: all-stageprofile-mpfr maybe-all-stageprofile-mpfr
-.PHONY: clean-stageprofile-mpfr maybe-clean-stageprofile-mpfr
-maybe-all-stageprofile-mpfr:
-maybe-clean-stageprofile-mpfr:
-
-
-.PHONY: all-stagefeedback-mpfr maybe-all-stagefeedback-mpfr
-.PHONY: clean-stagefeedback-mpfr maybe-clean-stagefeedback-mpfr
-maybe-all-stagefeedback-mpfr:
-maybe-clean-stagefeedback-mpfr:
-
-
-
-
-
-.PHONY: check-mpfr maybe-check-mpfr
-maybe-check-mpfr:
-
-.PHONY: install-mpfr maybe-install-mpfr
-maybe-install-mpfr:
-
-.PHONY: install-strip-mpfr maybe-install-strip-mpfr
-maybe-install-strip-mpfr:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-mpfr info-mpfr
-maybe-info-mpfr:
-
-.PHONY: maybe-dvi-mpfr dvi-mpfr
-maybe-dvi-mpfr:
-
-.PHONY: maybe-pdf-mpfr pdf-mpfr
-maybe-pdf-mpfr:
-
-.PHONY: maybe-html-mpfr html-mpfr
-maybe-html-mpfr:
-
-.PHONY: maybe-TAGS-mpfr TAGS-mpfr
-maybe-TAGS-mpfr:
-
-.PHONY: maybe-install-info-mpfr install-info-mpfr
-maybe-install-info-mpfr:
-
-.PHONY: maybe-install-pdf-mpfr install-pdf-mpfr
-maybe-install-pdf-mpfr:
-
-.PHONY: maybe-install-html-mpfr install-html-mpfr
-maybe-install-html-mpfr:
-
-.PHONY: maybe-installcheck-mpfr installcheck-mpfr
-maybe-installcheck-mpfr:
-
-.PHONY: maybe-mostlyclean-mpfr mostlyclean-mpfr
-maybe-mostlyclean-mpfr:
-
-.PHONY: maybe-clean-mpfr clean-mpfr
-maybe-clean-mpfr:
-
-.PHONY: maybe-distclean-mpfr distclean-mpfr
-maybe-distclean-mpfr:
-
-.PHONY: maybe-maintainer-clean-mpfr maintainer-clean-mpfr
-maybe-maintainer-clean-mpfr:
-
-
-
-.PHONY: configure-mpc maybe-configure-mpc
-maybe-configure-mpc:
-
-
-
-.PHONY: configure-stage1-mpc maybe-configure-stage1-mpc
-maybe-configure-stage1-mpc:
-
-.PHONY: configure-stage2-mpc maybe-configure-stage2-mpc
-maybe-configure-stage2-mpc:
-
-.PHONY: configure-stage3-mpc maybe-configure-stage3-mpc
-maybe-configure-stage3-mpc:
-
-.PHONY: configure-stage4-mpc maybe-configure-stage4-mpc
-maybe-configure-stage4-mpc:
-
-.PHONY: configure-stageprofile-mpc maybe-configure-stageprofile-mpc
-maybe-configure-stageprofile-mpc:
-
-.PHONY: configure-stagefeedback-mpc maybe-configure-stagefeedback-mpc
-maybe-configure-stagefeedback-mpc:
-
-
-
-
-
-.PHONY: all-mpc maybe-all-mpc
-maybe-all-mpc:
-
-
-
-.PHONY: all-stage1-mpc maybe-all-stage1-mpc
-.PHONY: clean-stage1-mpc maybe-clean-stage1-mpc
-maybe-all-stage1-mpc:
-maybe-clean-stage1-mpc:
-
-
-.PHONY: all-stage2-mpc maybe-all-stage2-mpc
-.PHONY: clean-stage2-mpc maybe-clean-stage2-mpc
-maybe-all-stage2-mpc:
-maybe-clean-stage2-mpc:
-
-
-.PHONY: all-stage3-mpc maybe-all-stage3-mpc
-.PHONY: clean-stage3-mpc maybe-clean-stage3-mpc
-maybe-all-stage3-mpc:
-maybe-clean-stage3-mpc:
-
-
-.PHONY: all-stage4-mpc maybe-all-stage4-mpc
-.PHONY: clean-stage4-mpc maybe-clean-stage4-mpc
-maybe-all-stage4-mpc:
-maybe-clean-stage4-mpc:
-
-
-.PHONY: all-stageprofile-mpc maybe-all-stageprofile-mpc
-.PHONY: clean-stageprofile-mpc maybe-clean-stageprofile-mpc
-maybe-all-stageprofile-mpc:
-maybe-clean-stageprofile-mpc:
-
-
-.PHONY: all-stagefeedback-mpc maybe-all-stagefeedback-mpc
-.PHONY: clean-stagefeedback-mpc maybe-clean-stagefeedback-mpc
-maybe-all-stagefeedback-mpc:
-maybe-clean-stagefeedback-mpc:
-
-
-
-
-
-.PHONY: check-mpc maybe-check-mpc
-maybe-check-mpc:
-
-.PHONY: install-mpc maybe-install-mpc
-maybe-install-mpc:
-
-.PHONY: install-strip-mpc maybe-install-strip-mpc
-maybe-install-strip-mpc:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-mpc info-mpc
-maybe-info-mpc:
-
-.PHONY: maybe-dvi-mpc dvi-mpc
-maybe-dvi-mpc:
-
-.PHONY: maybe-pdf-mpc pdf-mpc
-maybe-pdf-mpc:
-
-.PHONY: maybe-html-mpc html-mpc
-maybe-html-mpc:
-
-.PHONY: maybe-TAGS-mpc TAGS-mpc
-maybe-TAGS-mpc:
-
-.PHONY: maybe-install-info-mpc install-info-mpc
-maybe-install-info-mpc:
-
-.PHONY: maybe-install-pdf-mpc install-pdf-mpc
-maybe-install-pdf-mpc:
-
-.PHONY: maybe-install-html-mpc install-html-mpc
-maybe-install-html-mpc:
-
-.PHONY: maybe-installcheck-mpc installcheck-mpc
-maybe-installcheck-mpc:
-
-.PHONY: maybe-mostlyclean-mpc mostlyclean-mpc
-maybe-mostlyclean-mpc:
-
-.PHONY: maybe-clean-mpc clean-mpc
-maybe-clean-mpc:
-
-.PHONY: maybe-distclean-mpc distclean-mpc
-maybe-distclean-mpc:
-
-.PHONY: maybe-maintainer-clean-mpc maintainer-clean-mpc
-maybe-maintainer-clean-mpc:
-
-
-
-.PHONY: configure-isl maybe-configure-isl
-maybe-configure-isl:
-
-
-
-.PHONY: configure-stage1-isl maybe-configure-stage1-isl
-maybe-configure-stage1-isl:
-
-.PHONY: configure-stage2-isl maybe-configure-stage2-isl
-maybe-configure-stage2-isl:
-
-.PHONY: configure-stage3-isl maybe-configure-stage3-isl
-maybe-configure-stage3-isl:
-
-.PHONY: configure-stage4-isl maybe-configure-stage4-isl
-maybe-configure-stage4-isl:
-
-.PHONY: configure-stageprofile-isl maybe-configure-stageprofile-isl
-maybe-configure-stageprofile-isl:
-
-.PHONY: configure-stagefeedback-isl maybe-configure-stagefeedback-isl
-maybe-configure-stagefeedback-isl:
-
-
-
-
-
-.PHONY: all-isl maybe-all-isl
-maybe-all-isl:
-
-
-
-.PHONY: all-stage1-isl maybe-all-stage1-isl
-.PHONY: clean-stage1-isl maybe-clean-stage1-isl
-maybe-all-stage1-isl:
-maybe-clean-stage1-isl:
-
-
-.PHONY: all-stage2-isl maybe-all-stage2-isl
-.PHONY: clean-stage2-isl maybe-clean-stage2-isl
-maybe-all-stage2-isl:
-maybe-clean-stage2-isl:
-
-
-.PHONY: all-stage3-isl maybe-all-stage3-isl
-.PHONY: clean-stage3-isl maybe-clean-stage3-isl
-maybe-all-stage3-isl:
-maybe-clean-stage3-isl:
-
-
-.PHONY: all-stage4-isl maybe-all-stage4-isl
-.PHONY: clean-stage4-isl maybe-clean-stage4-isl
-maybe-all-stage4-isl:
-maybe-clean-stage4-isl:
-
-
-.PHONY: all-stageprofile-isl maybe-all-stageprofile-isl
-.PHONY: clean-stageprofile-isl maybe-clean-stageprofile-isl
-maybe-all-stageprofile-isl:
-maybe-clean-stageprofile-isl:
-
-
-.PHONY: all-stagefeedback-isl maybe-all-stagefeedback-isl
-.PHONY: clean-stagefeedback-isl maybe-clean-stagefeedback-isl
-maybe-all-stagefeedback-isl:
-maybe-clean-stagefeedback-isl:
-
-
-
-
-
-.PHONY: check-isl maybe-check-isl
-maybe-check-isl:
-
-.PHONY: install-isl maybe-install-isl
-maybe-install-isl:
-
-.PHONY: install-strip-isl maybe-install-strip-isl
-maybe-install-strip-isl:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-isl info-isl
-maybe-info-isl:
-
-.PHONY: maybe-dvi-isl dvi-isl
-maybe-dvi-isl:
-
-.PHONY: maybe-pdf-isl pdf-isl
-maybe-pdf-isl:
-
-.PHONY: maybe-html-isl html-isl
-maybe-html-isl:
-
-.PHONY: maybe-TAGS-isl TAGS-isl
-maybe-TAGS-isl:
-
-.PHONY: maybe-install-info-isl install-info-isl
-maybe-install-info-isl:
-
-.PHONY: maybe-install-pdf-isl install-pdf-isl
-maybe-install-pdf-isl:
-
-.PHONY: maybe-install-html-isl install-html-isl
-maybe-install-html-isl:
-
-.PHONY: maybe-installcheck-isl installcheck-isl
-maybe-installcheck-isl:
-
-.PHONY: maybe-mostlyclean-isl mostlyclean-isl
-maybe-mostlyclean-isl:
-
-.PHONY: maybe-clean-isl clean-isl
-maybe-clean-isl:
-
-.PHONY: maybe-distclean-isl distclean-isl
-maybe-distclean-isl:
-
-.PHONY: maybe-maintainer-clean-isl maintainer-clean-isl
-maybe-maintainer-clean-isl:
-
-
-
-.PHONY: configure-libelf maybe-configure-libelf
-maybe-configure-libelf:
-
-
-
-.PHONY: configure-stage1-libelf maybe-configure-stage1-libelf
-maybe-configure-stage1-libelf:
-
-.PHONY: configure-stage2-libelf maybe-configure-stage2-libelf
-maybe-configure-stage2-libelf:
-
-.PHONY: configure-stage3-libelf maybe-configure-stage3-libelf
-maybe-configure-stage3-libelf:
-
-.PHONY: configure-stage4-libelf maybe-configure-stage4-libelf
-maybe-configure-stage4-libelf:
-
-.PHONY: configure-stageprofile-libelf maybe-configure-stageprofile-libelf
-maybe-configure-stageprofile-libelf:
-
-.PHONY: configure-stagefeedback-libelf maybe-configure-stagefeedback-libelf
-maybe-configure-stagefeedback-libelf:
-
-
-
-
-
-.PHONY: all-libelf maybe-all-libelf
-maybe-all-libelf:
-
-
-
-.PHONY: all-stage1-libelf maybe-all-stage1-libelf
-.PHONY: clean-stage1-libelf maybe-clean-stage1-libelf
-maybe-all-stage1-libelf:
-maybe-clean-stage1-libelf:
-
-
-.PHONY: all-stage2-libelf maybe-all-stage2-libelf
-.PHONY: clean-stage2-libelf maybe-clean-stage2-libelf
-maybe-all-stage2-libelf:
-maybe-clean-stage2-libelf:
-
-
-.PHONY: all-stage3-libelf maybe-all-stage3-libelf
-.PHONY: clean-stage3-libelf maybe-clean-stage3-libelf
-maybe-all-stage3-libelf:
-maybe-clean-stage3-libelf:
-
-
-.PHONY: all-stage4-libelf maybe-all-stage4-libelf
-.PHONY: clean-stage4-libelf maybe-clean-stage4-libelf
-maybe-all-stage4-libelf:
-maybe-clean-stage4-libelf:
-
-
-.PHONY: all-stageprofile-libelf maybe-all-stageprofile-libelf
-.PHONY: clean-stageprofile-libelf maybe-clean-stageprofile-libelf
-maybe-all-stageprofile-libelf:
-maybe-clean-stageprofile-libelf:
-
-
-.PHONY: all-stagefeedback-libelf maybe-all-stagefeedback-libelf
-.PHONY: clean-stagefeedback-libelf maybe-clean-stagefeedback-libelf
-maybe-all-stagefeedback-libelf:
-maybe-clean-stagefeedback-libelf:
-
-
-
-
-
-.PHONY: check-libelf maybe-check-libelf
-maybe-check-libelf:
-
-.PHONY: install-libelf maybe-install-libelf
-maybe-install-libelf:
-
-.PHONY: install-strip-libelf maybe-install-strip-libelf
-maybe-install-strip-libelf:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-libelf info-libelf
-maybe-info-libelf:
-
-.PHONY: maybe-dvi-libelf dvi-libelf
-maybe-dvi-libelf:
-
-.PHONY: maybe-pdf-libelf pdf-libelf
-maybe-pdf-libelf:
-
-.PHONY: maybe-html-libelf html-libelf
-maybe-html-libelf:
-
-.PHONY: maybe-TAGS-libelf TAGS-libelf
-maybe-TAGS-libelf:
-
-.PHONY: maybe-install-info-libelf install-info-libelf
-maybe-install-info-libelf:
-
-.PHONY: maybe-install-pdf-libelf install-pdf-libelf
-maybe-install-pdf-libelf:
-
-.PHONY: maybe-install-html-libelf install-html-libelf
-maybe-install-html-libelf:
-
-.PHONY: maybe-installcheck-libelf installcheck-libelf
-maybe-installcheck-libelf:
-
-.PHONY: maybe-mostlyclean-libelf mostlyclean-libelf
-maybe-mostlyclean-libelf:
-
-.PHONY: maybe-clean-libelf clean-libelf
-maybe-clean-libelf:
-
-.PHONY: maybe-distclean-libelf distclean-libelf
-maybe-distclean-libelf:
-
-.PHONY: maybe-maintainer-clean-libelf maintainer-clean-libelf
-maybe-maintainer-clean-libelf:
-
-
-
-.PHONY: configure-gold maybe-configure-gold
-maybe-configure-gold:
-
-
-
-.PHONY: configure-stage1-gold maybe-configure-stage1-gold
-maybe-configure-stage1-gold:
-
-.PHONY: configure-stage2-gold maybe-configure-stage2-gold
-maybe-configure-stage2-gold:
-
-.PHONY: configure-stage3-gold maybe-configure-stage3-gold
-maybe-configure-stage3-gold:
-
-.PHONY: configure-stage4-gold maybe-configure-stage4-gold
-maybe-configure-stage4-gold:
-
-.PHONY: configure-stageprofile-gold maybe-configure-stageprofile-gold
-maybe-configure-stageprofile-gold:
-
-.PHONY: configure-stagefeedback-gold maybe-configure-stagefeedback-gold
-maybe-configure-stagefeedback-gold:
-
-
-
-
-
-.PHONY: all-gold maybe-all-gold
-maybe-all-gold:
-
-
-
-.PHONY: all-stage1-gold maybe-all-stage1-gold
-.PHONY: clean-stage1-gold maybe-clean-stage1-gold
-maybe-all-stage1-gold:
-maybe-clean-stage1-gold:
-
-
-.PHONY: all-stage2-gold maybe-all-stage2-gold
-.PHONY: clean-stage2-gold maybe-clean-stage2-gold
-maybe-all-stage2-gold:
-maybe-clean-stage2-gold:
-
-
-.PHONY: all-stage3-gold maybe-all-stage3-gold
-.PHONY: clean-stage3-gold maybe-clean-stage3-gold
-maybe-all-stage3-gold:
-maybe-clean-stage3-gold:
-
-
-.PHONY: all-stage4-gold maybe-all-stage4-gold
-.PHONY: clean-stage4-gold maybe-clean-stage4-gold
-maybe-all-stage4-gold:
-maybe-clean-stage4-gold:
-
-
-.PHONY: all-stageprofile-gold maybe-all-stageprofile-gold
-.PHONY: clean-stageprofile-gold maybe-clean-stageprofile-gold
-maybe-all-stageprofile-gold:
-maybe-clean-stageprofile-gold:
-
-
-.PHONY: all-stagefeedback-gold maybe-all-stagefeedback-gold
-.PHONY: clean-stagefeedback-gold maybe-clean-stagefeedback-gold
-maybe-all-stagefeedback-gold:
-maybe-clean-stagefeedback-gold:
-
-
-
-
-
-.PHONY: check-gold maybe-check-gold
-maybe-check-gold:
-
-.PHONY: install-gold maybe-install-gold
-maybe-install-gold:
-
-.PHONY: install-strip-gold maybe-install-strip-gold
-maybe-install-strip-gold:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-gold info-gold
-maybe-info-gold:
-
-.PHONY: maybe-dvi-gold dvi-gold
-maybe-dvi-gold:
-
-.PHONY: maybe-pdf-gold pdf-gold
-maybe-pdf-gold:
-
-.PHONY: maybe-html-gold html-gold
-maybe-html-gold:
-
-.PHONY: maybe-TAGS-gold TAGS-gold
-maybe-TAGS-gold:
-
-.PHONY: maybe-install-info-gold install-info-gold
-maybe-install-info-gold:
-
-.PHONY: maybe-install-pdf-gold install-pdf-gold
-maybe-install-pdf-gold:
-
-.PHONY: maybe-install-html-gold install-html-gold
-maybe-install-html-gold:
-
-.PHONY: maybe-installcheck-gold installcheck-gold
-maybe-installcheck-gold:
-
-.PHONY: maybe-mostlyclean-gold mostlyclean-gold
-maybe-mostlyclean-gold:
-
-.PHONY: maybe-clean-gold clean-gold
-maybe-clean-gold:
-
-.PHONY: maybe-distclean-gold distclean-gold
-maybe-distclean-gold:
-
-.PHONY: maybe-maintainer-clean-gold maintainer-clean-gold
-maybe-maintainer-clean-gold:
-
-
-
-.PHONY: configure-gprof maybe-configure-gprof
-maybe-configure-gprof:
-
-
-
-
-
-.PHONY: all-gprof maybe-all-gprof
-maybe-all-gprof:
-
-
-
-
-.PHONY: check-gprof maybe-check-gprof
-maybe-check-gprof:
-
-.PHONY: install-gprof maybe-install-gprof
-maybe-install-gprof:
-
-.PHONY: install-strip-gprof maybe-install-strip-gprof
-maybe-install-strip-gprof:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-gprof info-gprof
-maybe-info-gprof:
-
-.PHONY: maybe-dvi-gprof dvi-gprof
-maybe-dvi-gprof:
-
-.PHONY: maybe-pdf-gprof pdf-gprof
-maybe-pdf-gprof:
-
-.PHONY: maybe-html-gprof html-gprof
-maybe-html-gprof:
-
-.PHONY: maybe-TAGS-gprof TAGS-gprof
-maybe-TAGS-gprof:
-
-.PHONY: maybe-install-info-gprof install-info-gprof
-maybe-install-info-gprof:
-
-.PHONY: maybe-install-pdf-gprof install-pdf-gprof
-maybe-install-pdf-gprof:
-
-.PHONY: maybe-install-html-gprof install-html-gprof
-maybe-install-html-gprof:
-
-.PHONY: maybe-installcheck-gprof installcheck-gprof
-maybe-installcheck-gprof:
-
-.PHONY: maybe-mostlyclean-gprof mostlyclean-gprof
-maybe-mostlyclean-gprof:
-
-.PHONY: maybe-clean-gprof clean-gprof
-maybe-clean-gprof:
-
-.PHONY: maybe-distclean-gprof distclean-gprof
-maybe-distclean-gprof:
-
-.PHONY: maybe-maintainer-clean-gprof maintainer-clean-gprof
-maybe-maintainer-clean-gprof:
-
-
-
-.PHONY: configure-intl maybe-configure-intl
-maybe-configure-intl:
-
-
-
-.PHONY: configure-stage1-intl maybe-configure-stage1-intl
-maybe-configure-stage1-intl:
-
-.PHONY: configure-stage2-intl maybe-configure-stage2-intl
-maybe-configure-stage2-intl:
-
-.PHONY: configure-stage3-intl maybe-configure-stage3-intl
-maybe-configure-stage3-intl:
-
-.PHONY: configure-stage4-intl maybe-configure-stage4-intl
-maybe-configure-stage4-intl:
-
-.PHONY: configure-stageprofile-intl maybe-configure-stageprofile-intl
-maybe-configure-stageprofile-intl:
-
-.PHONY: configure-stagefeedback-intl maybe-configure-stagefeedback-intl
-maybe-configure-stagefeedback-intl:
-
-
-
-
-
-.PHONY: all-intl maybe-all-intl
-maybe-all-intl:
-
-
-
-.PHONY: all-stage1-intl maybe-all-stage1-intl
-.PHONY: clean-stage1-intl maybe-clean-stage1-intl
-maybe-all-stage1-intl:
-maybe-clean-stage1-intl:
-
-
-.PHONY: all-stage2-intl maybe-all-stage2-intl
-.PHONY: clean-stage2-intl maybe-clean-stage2-intl
-maybe-all-stage2-intl:
-maybe-clean-stage2-intl:
-
-
-.PHONY: all-stage3-intl maybe-all-stage3-intl
-.PHONY: clean-stage3-intl maybe-clean-stage3-intl
-maybe-all-stage3-intl:
-maybe-clean-stage3-intl:
-
-
-.PHONY: all-stage4-intl maybe-all-stage4-intl
-.PHONY: clean-stage4-intl maybe-clean-stage4-intl
-maybe-all-stage4-intl:
-maybe-clean-stage4-intl:
-
-
-.PHONY: all-stageprofile-intl maybe-all-stageprofile-intl
-.PHONY: clean-stageprofile-intl maybe-clean-stageprofile-intl
-maybe-all-stageprofile-intl:
-maybe-clean-stageprofile-intl:
-
-
-.PHONY: all-stagefeedback-intl maybe-all-stagefeedback-intl
-.PHONY: clean-stagefeedback-intl maybe-clean-stagefeedback-intl
-maybe-all-stagefeedback-intl:
-maybe-clean-stagefeedback-intl:
-
-
-
-
-
-.PHONY: check-intl maybe-check-intl
-maybe-check-intl:
-
-.PHONY: install-intl maybe-install-intl
-maybe-install-intl:
-
-.PHONY: install-strip-intl maybe-install-strip-intl
-maybe-install-strip-intl:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-intl info-intl
-maybe-info-intl:
-
-.PHONY: maybe-dvi-intl dvi-intl
-maybe-dvi-intl:
-
-.PHONY: maybe-pdf-intl pdf-intl
-maybe-pdf-intl:
-
-.PHONY: maybe-html-intl html-intl
-maybe-html-intl:
-
-.PHONY: maybe-TAGS-intl TAGS-intl
-maybe-TAGS-intl:
-
-.PHONY: maybe-install-info-intl install-info-intl
-maybe-install-info-intl:
-
-.PHONY: maybe-install-pdf-intl install-pdf-intl
-maybe-install-pdf-intl:
-
-.PHONY: maybe-install-html-intl install-html-intl
-maybe-install-html-intl:
-
-.PHONY: maybe-installcheck-intl installcheck-intl
-maybe-installcheck-intl:
-
-.PHONY: maybe-mostlyclean-intl mostlyclean-intl
-maybe-mostlyclean-intl:
-
-.PHONY: maybe-clean-intl clean-intl
-maybe-clean-intl:
-
-.PHONY: maybe-distclean-intl distclean-intl
-maybe-distclean-intl:
-
-.PHONY: maybe-maintainer-clean-intl maintainer-clean-intl
-maybe-maintainer-clean-intl:
-
-
-
-.PHONY: configure-tcl maybe-configure-tcl
-maybe-configure-tcl:
-
-
-
-
-
-.PHONY: all-tcl maybe-all-tcl
-maybe-all-tcl:
-
-
-
-
-.PHONY: check-tcl maybe-check-tcl
-maybe-check-tcl:
-
-.PHONY: install-tcl maybe-install-tcl
-maybe-install-tcl:
-
-.PHONY: install-strip-tcl maybe-install-strip-tcl
-maybe-install-strip-tcl:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-tcl info-tcl
-maybe-info-tcl:
-
-.PHONY: maybe-dvi-tcl dvi-tcl
-maybe-dvi-tcl:
-
-.PHONY: maybe-pdf-tcl pdf-tcl
-maybe-pdf-tcl:
-
-.PHONY: maybe-html-tcl html-tcl
-maybe-html-tcl:
-
-.PHONY: maybe-TAGS-tcl TAGS-tcl
-maybe-TAGS-tcl:
-
-.PHONY: maybe-install-info-tcl install-info-tcl
-maybe-install-info-tcl:
-
-.PHONY: maybe-install-pdf-tcl install-pdf-tcl
-maybe-install-pdf-tcl:
-
-.PHONY: maybe-install-html-tcl install-html-tcl
-maybe-install-html-tcl:
-
-.PHONY: maybe-installcheck-tcl installcheck-tcl
-maybe-installcheck-tcl:
-
-.PHONY: maybe-mostlyclean-tcl mostlyclean-tcl
-maybe-mostlyclean-tcl:
-
-.PHONY: maybe-clean-tcl clean-tcl
-maybe-clean-tcl:
-
-.PHONY: maybe-distclean-tcl distclean-tcl
-maybe-distclean-tcl:
-
-.PHONY: maybe-maintainer-clean-tcl maintainer-clean-tcl
-maybe-maintainer-clean-tcl:
-
-
-
-.PHONY: configure-itcl maybe-configure-itcl
-maybe-configure-itcl:
-
-
-
-
-
-.PHONY: all-itcl maybe-all-itcl
-maybe-all-itcl:
-
-
-
-
-.PHONY: check-itcl maybe-check-itcl
-maybe-check-itcl:
-
-.PHONY: install-itcl maybe-install-itcl
-maybe-install-itcl:
-
-.PHONY: install-strip-itcl maybe-install-strip-itcl
-maybe-install-strip-itcl:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-itcl info-itcl
-maybe-info-itcl:
-
-.PHONY: maybe-dvi-itcl dvi-itcl
-maybe-dvi-itcl:
-
-.PHONY: maybe-pdf-itcl pdf-itcl
-maybe-pdf-itcl:
-
-.PHONY: maybe-html-itcl html-itcl
-maybe-html-itcl:
-
-.PHONY: maybe-TAGS-itcl TAGS-itcl
-maybe-TAGS-itcl:
-
-.PHONY: maybe-install-info-itcl install-info-itcl
-maybe-install-info-itcl:
-
-.PHONY: maybe-install-pdf-itcl install-pdf-itcl
-maybe-install-pdf-itcl:
-
-.PHONY: maybe-install-html-itcl install-html-itcl
-maybe-install-html-itcl:
-
-.PHONY: maybe-installcheck-itcl installcheck-itcl
-maybe-installcheck-itcl:
-
-.PHONY: maybe-mostlyclean-itcl mostlyclean-itcl
-maybe-mostlyclean-itcl:
-
-.PHONY: maybe-clean-itcl clean-itcl
-maybe-clean-itcl:
-
-.PHONY: maybe-distclean-itcl distclean-itcl
-maybe-distclean-itcl:
-
-.PHONY: maybe-maintainer-clean-itcl maintainer-clean-itcl
-maybe-maintainer-clean-itcl:
-
-
-
-.PHONY: configure-ld maybe-configure-ld
-maybe-configure-ld:
-
-
-
-.PHONY: configure-stage1-ld maybe-configure-stage1-ld
-maybe-configure-stage1-ld:
-
-.PHONY: configure-stage2-ld maybe-configure-stage2-ld
-maybe-configure-stage2-ld:
-
-.PHONY: configure-stage3-ld maybe-configure-stage3-ld
-maybe-configure-stage3-ld:
-
-.PHONY: configure-stage4-ld maybe-configure-stage4-ld
-maybe-configure-stage4-ld:
-
-.PHONY: configure-stageprofile-ld maybe-configure-stageprofile-ld
-maybe-configure-stageprofile-ld:
-
-.PHONY: configure-stagefeedback-ld maybe-configure-stagefeedback-ld
-maybe-configure-stagefeedback-ld:
-
-
-
-
-
-.PHONY: all-ld maybe-all-ld
-maybe-all-ld:
-
-
-
-.PHONY: all-stage1-ld maybe-all-stage1-ld
-.PHONY: clean-stage1-ld maybe-clean-stage1-ld
-maybe-all-stage1-ld:
-maybe-clean-stage1-ld:
-
-
-.PHONY: all-stage2-ld maybe-all-stage2-ld
-.PHONY: clean-stage2-ld maybe-clean-stage2-ld
-maybe-all-stage2-ld:
-maybe-clean-stage2-ld:
-
-
-.PHONY: all-stage3-ld maybe-all-stage3-ld
-.PHONY: clean-stage3-ld maybe-clean-stage3-ld
-maybe-all-stage3-ld:
-maybe-clean-stage3-ld:
-
-
-.PHONY: all-stage4-ld maybe-all-stage4-ld
-.PHONY: clean-stage4-ld maybe-clean-stage4-ld
-maybe-all-stage4-ld:
-maybe-clean-stage4-ld:
-
-
-.PHONY: all-stageprofile-ld maybe-all-stageprofile-ld
-.PHONY: clean-stageprofile-ld maybe-clean-stageprofile-ld
-maybe-all-stageprofile-ld:
-maybe-clean-stageprofile-ld:
-
-
-.PHONY: all-stagefeedback-ld maybe-all-stagefeedback-ld
-.PHONY: clean-stagefeedback-ld maybe-clean-stagefeedback-ld
-maybe-all-stagefeedback-ld:
-maybe-clean-stagefeedback-ld:
-
-
-
-
-
-.PHONY: check-ld maybe-check-ld
-maybe-check-ld:
-
-.PHONY: install-ld maybe-install-ld
-maybe-install-ld:
-
-.PHONY: install-strip-ld maybe-install-strip-ld
-maybe-install-strip-ld:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-ld info-ld
-maybe-info-ld:
-
-.PHONY: maybe-dvi-ld dvi-ld
-maybe-dvi-ld:
-
-.PHONY: maybe-pdf-ld pdf-ld
-maybe-pdf-ld:
-
-.PHONY: maybe-html-ld html-ld
-maybe-html-ld:
-
-.PHONY: maybe-TAGS-ld TAGS-ld
-maybe-TAGS-ld:
-
-.PHONY: maybe-install-info-ld install-info-ld
-maybe-install-info-ld:
-
-.PHONY: maybe-install-pdf-ld install-pdf-ld
-maybe-install-pdf-ld:
-
-.PHONY: maybe-install-html-ld install-html-ld
-maybe-install-html-ld:
-
-.PHONY: maybe-installcheck-ld installcheck-ld
-maybe-installcheck-ld:
-
-.PHONY: maybe-mostlyclean-ld mostlyclean-ld
-maybe-mostlyclean-ld:
-
-.PHONY: maybe-clean-ld clean-ld
-maybe-clean-ld:
-
-.PHONY: maybe-distclean-ld distclean-ld
-maybe-distclean-ld:
-
-.PHONY: maybe-maintainer-clean-ld maintainer-clean-ld
-maybe-maintainer-clean-ld:
-
-
-
-.PHONY: configure-libbacktrace maybe-configure-libbacktrace
-maybe-configure-libbacktrace:
-
-
-
-.PHONY: configure-stage1-libbacktrace maybe-configure-stage1-libbacktrace
-maybe-configure-stage1-libbacktrace:
-
-.PHONY: configure-stage2-libbacktrace maybe-configure-stage2-libbacktrace
-maybe-configure-stage2-libbacktrace:
-
-.PHONY: configure-stage3-libbacktrace maybe-configure-stage3-libbacktrace
-maybe-configure-stage3-libbacktrace:
-
-.PHONY: configure-stage4-libbacktrace maybe-configure-stage4-libbacktrace
-maybe-configure-stage4-libbacktrace:
-
-.PHONY: configure-stageprofile-libbacktrace maybe-configure-stageprofile-libbacktrace
-maybe-configure-stageprofile-libbacktrace:
-
-.PHONY: configure-stagefeedback-libbacktrace maybe-configure-stagefeedback-libbacktrace
-maybe-configure-stagefeedback-libbacktrace:
-
-
-
-
-
-.PHONY: all-libbacktrace maybe-all-libbacktrace
-maybe-all-libbacktrace:
-
-
-
-.PHONY: all-stage1-libbacktrace maybe-all-stage1-libbacktrace
-.PHONY: clean-stage1-libbacktrace maybe-clean-stage1-libbacktrace
-maybe-all-stage1-libbacktrace:
-maybe-clean-stage1-libbacktrace:
-
-
-.PHONY: all-stage2-libbacktrace maybe-all-stage2-libbacktrace
-.PHONY: clean-stage2-libbacktrace maybe-clean-stage2-libbacktrace
-maybe-all-stage2-libbacktrace:
-maybe-clean-stage2-libbacktrace:
-
-
-.PHONY: all-stage3-libbacktrace maybe-all-stage3-libbacktrace
-.PHONY: clean-stage3-libbacktrace maybe-clean-stage3-libbacktrace
-maybe-all-stage3-libbacktrace:
-maybe-clean-stage3-libbacktrace:
-
-
-.PHONY: all-stage4-libbacktrace maybe-all-stage4-libbacktrace
-.PHONY: clean-stage4-libbacktrace maybe-clean-stage4-libbacktrace
-maybe-all-stage4-libbacktrace:
-maybe-clean-stage4-libbacktrace:
-
-
-.PHONY: all-stageprofile-libbacktrace maybe-all-stageprofile-libbacktrace
-.PHONY: clean-stageprofile-libbacktrace maybe-clean-stageprofile-libbacktrace
-maybe-all-stageprofile-libbacktrace:
-maybe-clean-stageprofile-libbacktrace:
-
-
-.PHONY: all-stagefeedback-libbacktrace maybe-all-stagefeedback-libbacktrace
-.PHONY: clean-stagefeedback-libbacktrace maybe-clean-stagefeedback-libbacktrace
-maybe-all-stagefeedback-libbacktrace:
-maybe-clean-stagefeedback-libbacktrace:
-
-
-
-
-
-.PHONY: check-libbacktrace maybe-check-libbacktrace
-maybe-check-libbacktrace:
-
-.PHONY: install-libbacktrace maybe-install-libbacktrace
-maybe-install-libbacktrace:
-
-.PHONY: install-strip-libbacktrace maybe-install-strip-libbacktrace
-maybe-install-strip-libbacktrace:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-libbacktrace info-libbacktrace
-maybe-info-libbacktrace:
-
-.PHONY: maybe-dvi-libbacktrace dvi-libbacktrace
-maybe-dvi-libbacktrace:
-
-.PHONY: maybe-pdf-libbacktrace pdf-libbacktrace
-maybe-pdf-libbacktrace:
-
-.PHONY: maybe-html-libbacktrace html-libbacktrace
-maybe-html-libbacktrace:
-
-.PHONY: maybe-TAGS-libbacktrace TAGS-libbacktrace
-maybe-TAGS-libbacktrace:
-
-.PHONY: maybe-install-info-libbacktrace install-info-libbacktrace
-maybe-install-info-libbacktrace:
-
-.PHONY: maybe-install-pdf-libbacktrace install-pdf-libbacktrace
-maybe-install-pdf-libbacktrace:
-
-.PHONY: maybe-install-html-libbacktrace install-html-libbacktrace
-maybe-install-html-libbacktrace:
-
-.PHONY: maybe-installcheck-libbacktrace installcheck-libbacktrace
-maybe-installcheck-libbacktrace:
-
-.PHONY: maybe-mostlyclean-libbacktrace mostlyclean-libbacktrace
-maybe-mostlyclean-libbacktrace:
-
-.PHONY: maybe-clean-libbacktrace clean-libbacktrace
-maybe-clean-libbacktrace:
-
-.PHONY: maybe-distclean-libbacktrace distclean-libbacktrace
-maybe-distclean-libbacktrace:
-
-.PHONY: maybe-maintainer-clean-libbacktrace maintainer-clean-libbacktrace
-maybe-maintainer-clean-libbacktrace:
-
-
-
-.PHONY: configure-libcpp maybe-configure-libcpp
-maybe-configure-libcpp:
-
-
-
-.PHONY: configure-stage1-libcpp maybe-configure-stage1-libcpp
-maybe-configure-stage1-libcpp:
-
-.PHONY: configure-stage2-libcpp maybe-configure-stage2-libcpp
-maybe-configure-stage2-libcpp:
-
-.PHONY: configure-stage3-libcpp maybe-configure-stage3-libcpp
-maybe-configure-stage3-libcpp:
-
-.PHONY: configure-stage4-libcpp maybe-configure-stage4-libcpp
-maybe-configure-stage4-libcpp:
-
-.PHONY: configure-stageprofile-libcpp maybe-configure-stageprofile-libcpp
-maybe-configure-stageprofile-libcpp:
-
-.PHONY: configure-stagefeedback-libcpp maybe-configure-stagefeedback-libcpp
-maybe-configure-stagefeedback-libcpp:
-
-
-
-
-
-.PHONY: all-libcpp maybe-all-libcpp
-maybe-all-libcpp:
-
-
-
-.PHONY: all-stage1-libcpp maybe-all-stage1-libcpp
-.PHONY: clean-stage1-libcpp maybe-clean-stage1-libcpp
-maybe-all-stage1-libcpp:
-maybe-clean-stage1-libcpp:
-
-
-.PHONY: all-stage2-libcpp maybe-all-stage2-libcpp
-.PHONY: clean-stage2-libcpp maybe-clean-stage2-libcpp
-maybe-all-stage2-libcpp:
-maybe-clean-stage2-libcpp:
-
-
-.PHONY: all-stage3-libcpp maybe-all-stage3-libcpp
-.PHONY: clean-stage3-libcpp maybe-clean-stage3-libcpp
-maybe-all-stage3-libcpp:
-maybe-clean-stage3-libcpp:
-
-
-.PHONY: all-stage4-libcpp maybe-all-stage4-libcpp
-.PHONY: clean-stage4-libcpp maybe-clean-stage4-libcpp
-maybe-all-stage4-libcpp:
-maybe-clean-stage4-libcpp:
-
-
-.PHONY: all-stageprofile-libcpp maybe-all-stageprofile-libcpp
-.PHONY: clean-stageprofile-libcpp maybe-clean-stageprofile-libcpp
-maybe-all-stageprofile-libcpp:
-maybe-clean-stageprofile-libcpp:
-
-
-.PHONY: all-stagefeedback-libcpp maybe-all-stagefeedback-libcpp
-.PHONY: clean-stagefeedback-libcpp maybe-clean-stagefeedback-libcpp
-maybe-all-stagefeedback-libcpp:
-maybe-clean-stagefeedback-libcpp:
-
-
-
-
-
-.PHONY: check-libcpp maybe-check-libcpp
-maybe-check-libcpp:
-
-.PHONY: install-libcpp maybe-install-libcpp
-maybe-install-libcpp:
-
-.PHONY: install-strip-libcpp maybe-install-strip-libcpp
-maybe-install-strip-libcpp:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-libcpp info-libcpp
-maybe-info-libcpp:
-
-.PHONY: maybe-dvi-libcpp dvi-libcpp
-maybe-dvi-libcpp:
-
-.PHONY: maybe-pdf-libcpp pdf-libcpp
-maybe-pdf-libcpp:
-
-.PHONY: maybe-html-libcpp html-libcpp
-maybe-html-libcpp:
-
-.PHONY: maybe-TAGS-libcpp TAGS-libcpp
-maybe-TAGS-libcpp:
-
-.PHONY: maybe-install-info-libcpp install-info-libcpp
-maybe-install-info-libcpp:
-
-.PHONY: maybe-install-pdf-libcpp install-pdf-libcpp
-maybe-install-pdf-libcpp:
-
-.PHONY: maybe-install-html-libcpp install-html-libcpp
-maybe-install-html-libcpp:
-
-.PHONY: maybe-installcheck-libcpp installcheck-libcpp
-maybe-installcheck-libcpp:
-
-.PHONY: maybe-mostlyclean-libcpp mostlyclean-libcpp
-maybe-mostlyclean-libcpp:
-
-.PHONY: maybe-clean-libcpp clean-libcpp
-maybe-clean-libcpp:
-
-.PHONY: maybe-distclean-libcpp distclean-libcpp
-maybe-distclean-libcpp:
-
-.PHONY: maybe-maintainer-clean-libcpp maintainer-clean-libcpp
-maybe-maintainer-clean-libcpp:
-
-
-
-.PHONY: configure-libdecnumber maybe-configure-libdecnumber
-maybe-configure-libdecnumber:
-
-
-
-.PHONY: configure-stage1-libdecnumber maybe-configure-stage1-libdecnumber
-maybe-configure-stage1-libdecnumber:
-
-.PHONY: configure-stage2-libdecnumber maybe-configure-stage2-libdecnumber
-maybe-configure-stage2-libdecnumber:
-
-.PHONY: configure-stage3-libdecnumber maybe-configure-stage3-libdecnumber
-maybe-configure-stage3-libdecnumber:
-
-.PHONY: configure-stage4-libdecnumber maybe-configure-stage4-libdecnumber
-maybe-configure-stage4-libdecnumber:
-
-.PHONY: configure-stageprofile-libdecnumber maybe-configure-stageprofile-libdecnumber
-maybe-configure-stageprofile-libdecnumber:
-
-.PHONY: configure-stagefeedback-libdecnumber maybe-configure-stagefeedback-libdecnumber
-maybe-configure-stagefeedback-libdecnumber:
-
-
-
-
-
-.PHONY: all-libdecnumber maybe-all-libdecnumber
-maybe-all-libdecnumber:
-
-
-
-.PHONY: all-stage1-libdecnumber maybe-all-stage1-libdecnumber
-.PHONY: clean-stage1-libdecnumber maybe-clean-stage1-libdecnumber
-maybe-all-stage1-libdecnumber:
-maybe-clean-stage1-libdecnumber:
-
-
-.PHONY: all-stage2-libdecnumber maybe-all-stage2-libdecnumber
-.PHONY: clean-stage2-libdecnumber maybe-clean-stage2-libdecnumber
-maybe-all-stage2-libdecnumber:
-maybe-clean-stage2-libdecnumber:
-
-
-.PHONY: all-stage3-libdecnumber maybe-all-stage3-libdecnumber
-.PHONY: clean-stage3-libdecnumber maybe-clean-stage3-libdecnumber
-maybe-all-stage3-libdecnumber:
-maybe-clean-stage3-libdecnumber:
-
-
-.PHONY: all-stage4-libdecnumber maybe-all-stage4-libdecnumber
-.PHONY: clean-stage4-libdecnumber maybe-clean-stage4-libdecnumber
-maybe-all-stage4-libdecnumber:
-maybe-clean-stage4-libdecnumber:
-
-
-.PHONY: all-stageprofile-libdecnumber maybe-all-stageprofile-libdecnumber
-.PHONY: clean-stageprofile-libdecnumber maybe-clean-stageprofile-libdecnumber
-maybe-all-stageprofile-libdecnumber:
-maybe-clean-stageprofile-libdecnumber:
-
-
-.PHONY: all-stagefeedback-libdecnumber maybe-all-stagefeedback-libdecnumber
-.PHONY: clean-stagefeedback-libdecnumber maybe-clean-stagefeedback-libdecnumber
-maybe-all-stagefeedback-libdecnumber:
-maybe-clean-stagefeedback-libdecnumber:
-
-
-
-
-
-.PHONY: check-libdecnumber maybe-check-libdecnumber
-maybe-check-libdecnumber:
-
-.PHONY: install-libdecnumber maybe-install-libdecnumber
-maybe-install-libdecnumber:
-
-.PHONY: install-strip-libdecnumber maybe-install-strip-libdecnumber
-maybe-install-strip-libdecnumber:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-libdecnumber info-libdecnumber
-maybe-info-libdecnumber:
-
-.PHONY: maybe-dvi-libdecnumber dvi-libdecnumber
-maybe-dvi-libdecnumber:
-
-.PHONY: maybe-pdf-libdecnumber pdf-libdecnumber
-maybe-pdf-libdecnumber:
-
-.PHONY: maybe-html-libdecnumber html-libdecnumber
-maybe-html-libdecnumber:
-
-.PHONY: maybe-TAGS-libdecnumber TAGS-libdecnumber
-maybe-TAGS-libdecnumber:
-
-.PHONY: maybe-install-info-libdecnumber install-info-libdecnumber
-maybe-install-info-libdecnumber:
-
-.PHONY: maybe-install-pdf-libdecnumber install-pdf-libdecnumber
-maybe-install-pdf-libdecnumber:
-
-.PHONY: maybe-install-html-libdecnumber install-html-libdecnumber
-maybe-install-html-libdecnumber:
-
-.PHONY: maybe-installcheck-libdecnumber installcheck-libdecnumber
-maybe-installcheck-libdecnumber:
-
-.PHONY: maybe-mostlyclean-libdecnumber mostlyclean-libdecnumber
-maybe-mostlyclean-libdecnumber:
-
-.PHONY: maybe-clean-libdecnumber clean-libdecnumber
-maybe-clean-libdecnumber:
-
-.PHONY: maybe-distclean-libdecnumber distclean-libdecnumber
-maybe-distclean-libdecnumber:
-
-.PHONY: maybe-maintainer-clean-libdecnumber maintainer-clean-libdecnumber
-maybe-maintainer-clean-libdecnumber:
-
-
-
-.PHONY: configure-libgui maybe-configure-libgui
-maybe-configure-libgui:
-
-
-
-
-
-.PHONY: all-libgui maybe-all-libgui
-maybe-all-libgui:
-
-
-
-
-.PHONY: check-libgui maybe-check-libgui
-maybe-check-libgui:
-
-.PHONY: install-libgui maybe-install-libgui
-maybe-install-libgui:
-
-.PHONY: install-strip-libgui maybe-install-strip-libgui
-maybe-install-strip-libgui:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-libgui info-libgui
-maybe-info-libgui:
-
-.PHONY: maybe-dvi-libgui dvi-libgui
-maybe-dvi-libgui:
-
-.PHONY: maybe-pdf-libgui pdf-libgui
-maybe-pdf-libgui:
-
-.PHONY: maybe-html-libgui html-libgui
-maybe-html-libgui:
-
-.PHONY: maybe-TAGS-libgui TAGS-libgui
-maybe-TAGS-libgui:
-
-.PHONY: maybe-install-info-libgui install-info-libgui
-maybe-install-info-libgui:
-
-.PHONY: maybe-install-pdf-libgui install-pdf-libgui
-maybe-install-pdf-libgui:
-
-.PHONY: maybe-install-html-libgui install-html-libgui
-maybe-install-html-libgui:
-
-.PHONY: maybe-installcheck-libgui installcheck-libgui
-maybe-installcheck-libgui:
-
-.PHONY: maybe-mostlyclean-libgui mostlyclean-libgui
-maybe-mostlyclean-libgui:
-
-.PHONY: maybe-clean-libgui clean-libgui
-maybe-clean-libgui:
-
-.PHONY: maybe-distclean-libgui distclean-libgui
-maybe-distclean-libgui:
-
-.PHONY: maybe-maintainer-clean-libgui maintainer-clean-libgui
-maybe-maintainer-clean-libgui:
-
-
-
-.PHONY: configure-libiberty maybe-configure-libiberty
-maybe-configure-libiberty:
-maybe-configure-libiberty: configure-libiberty
-configure-libiberty:
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
- $(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty; \
- $(HOST_EXPORTS) \
- echo Configuring in $(HOST_SUBDIR)/libiberty; \
- cd "$(HOST_SUBDIR)/libiberty" || exit 1; \
- case $(srcdir) in \
- /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
- *) topdir=`echo $(HOST_SUBDIR)/libiberty/ | \
- sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
- esac; \
- module_srcdir=libiberty; \
- $(SHELL) \
- $$s/$$module_srcdir/configure \
- --srcdir=$${topdir}/$$module_srcdir \
- $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
- --target=${target_alias} \
- || exit 1
-
-
-
-.PHONY: configure-stage1-libiberty maybe-configure-stage1-libiberty
-maybe-configure-stage1-libiberty:
-
-.PHONY: configure-stage2-libiberty maybe-configure-stage2-libiberty
-maybe-configure-stage2-libiberty:
-
-.PHONY: configure-stage3-libiberty maybe-configure-stage3-libiberty
-maybe-configure-stage3-libiberty:
-
-.PHONY: configure-stage4-libiberty maybe-configure-stage4-libiberty
-maybe-configure-stage4-libiberty:
-
-.PHONY: configure-stageprofile-libiberty maybe-configure-stageprofile-libiberty
-maybe-configure-stageprofile-libiberty:
-
-.PHONY: configure-stagefeedback-libiberty maybe-configure-stagefeedback-libiberty
-maybe-configure-stagefeedback-libiberty:
-
-
-
-
-
-.PHONY: all-libiberty maybe-all-libiberty
-maybe-all-libiberty:
-TARGET-libiberty=all
-maybe-all-libiberty: all-libiberty
-all-libiberty: configure-libiberty
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(STAGE1_FLAGS_TO_PASS) \
- $(TARGET-libiberty))
-
-
-
-.PHONY: all-stage1-libiberty maybe-all-stage1-libiberty
-.PHONY: clean-stage1-libiberty maybe-clean-stage1-libiberty
-maybe-all-stage1-libiberty:
-maybe-clean-stage1-libiberty:
-
-
-.PHONY: all-stage2-libiberty maybe-all-stage2-libiberty
-.PHONY: clean-stage2-libiberty maybe-clean-stage2-libiberty
-maybe-all-stage2-libiberty:
-maybe-clean-stage2-libiberty:
-
-
-.PHONY: all-stage3-libiberty maybe-all-stage3-libiberty
-.PHONY: clean-stage3-libiberty maybe-clean-stage3-libiberty
-maybe-all-stage3-libiberty:
-maybe-clean-stage3-libiberty:
-
-
-.PHONY: all-stage4-libiberty maybe-all-stage4-libiberty
-.PHONY: clean-stage4-libiberty maybe-clean-stage4-libiberty
-maybe-all-stage4-libiberty:
-maybe-clean-stage4-libiberty:
-
-
-.PHONY: all-stageprofile-libiberty maybe-all-stageprofile-libiberty
-.PHONY: clean-stageprofile-libiberty maybe-clean-stageprofile-libiberty
-maybe-all-stageprofile-libiberty:
-maybe-clean-stageprofile-libiberty:
-
-
-.PHONY: all-stagefeedback-libiberty maybe-all-stagefeedback-libiberty
-.PHONY: clean-stagefeedback-libiberty maybe-clean-stagefeedback-libiberty
-maybe-all-stagefeedback-libiberty:
-maybe-clean-stagefeedback-libiberty:
-
-
-
-
-
-.PHONY: check-libiberty maybe-check-libiberty
-maybe-check-libiberty:
-maybe-check-libiberty: check-libiberty
-
-check-libiberty:
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) $(EXTRA_HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(FLAGS_TO_PASS) $(EXTRA_BOOTSTRAP_FLAGS) check)
-
-
-.PHONY: install-libiberty maybe-install-libiberty
-maybe-install-libiberty:
-maybe-install-libiberty: install-libiberty
-
-install-libiberty: installdirs
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(FLAGS_TO_PASS) install)
-
-
-.PHONY: install-strip-libiberty maybe-install-strip-libiberty
-maybe-install-strip-libiberty:
-maybe-install-strip-libiberty: install-strip-libiberty
-
-install-strip-libiberty: installdirs
- @: $(MAKE); $(unstage)
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(FLAGS_TO_PASS) install-strip)
-
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-libiberty info-libiberty
-maybe-info-libiberty:
-maybe-info-libiberty: info-libiberty
-
-info-libiberty: \
- configure-libiberty
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing info in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- info) \
- || exit 1
-
-
-.PHONY: maybe-dvi-libiberty dvi-libiberty
-maybe-dvi-libiberty:
-maybe-dvi-libiberty: dvi-libiberty
-
-dvi-libiberty: \
- configure-libiberty
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing dvi in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- dvi) \
- || exit 1
-
-
-.PHONY: maybe-pdf-libiberty pdf-libiberty
-maybe-pdf-libiberty:
-maybe-pdf-libiberty: pdf-libiberty
-
-pdf-libiberty: \
- configure-libiberty
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing pdf in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- pdf) \
- || exit 1
-
-
-.PHONY: maybe-html-libiberty html-libiberty
-maybe-html-libiberty:
-maybe-html-libiberty: html-libiberty
-
-html-libiberty: \
- configure-libiberty
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing html in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- html) \
- || exit 1
-
-
-.PHONY: maybe-TAGS-libiberty TAGS-libiberty
-maybe-TAGS-libiberty:
-maybe-TAGS-libiberty: TAGS-libiberty
-
-TAGS-libiberty: \
- configure-libiberty
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing TAGS in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- TAGS) \
- || exit 1
-
-
-.PHONY: maybe-install-info-libiberty install-info-libiberty
-maybe-install-info-libiberty:
-maybe-install-info-libiberty: install-info-libiberty
-
-install-info-libiberty: \
- configure-libiberty \
- info-libiberty
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing install-info in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- install-info) \
- || exit 1
-
-
-.PHONY: maybe-install-pdf-libiberty install-pdf-libiberty
-maybe-install-pdf-libiberty:
-maybe-install-pdf-libiberty: install-pdf-libiberty
-
-install-pdf-libiberty: \
- configure-libiberty \
- pdf-libiberty
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing install-pdf in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- install-pdf) \
- || exit 1
-
-
-.PHONY: maybe-install-html-libiberty install-html-libiberty
-maybe-install-html-libiberty:
-maybe-install-html-libiberty: install-html-libiberty
-
-install-html-libiberty: \
- configure-libiberty \
- html-libiberty
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing install-html in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- install-html) \
- || exit 1
-
-
-.PHONY: maybe-installcheck-libiberty installcheck-libiberty
-maybe-installcheck-libiberty:
-maybe-installcheck-libiberty: installcheck-libiberty
-
-installcheck-libiberty: \
- configure-libiberty
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing installcheck in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- installcheck) \
- || exit 1
-
-
-.PHONY: maybe-mostlyclean-libiberty mostlyclean-libiberty
-maybe-mostlyclean-libiberty:
-maybe-mostlyclean-libiberty: mostlyclean-libiberty
-
-mostlyclean-libiberty:
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing mostlyclean in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- mostlyclean) \
- || exit 1
-
-
-.PHONY: maybe-clean-libiberty clean-libiberty
-maybe-clean-libiberty:
-maybe-clean-libiberty: clean-libiberty
-
-clean-libiberty:
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing clean in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- clean) \
- || exit 1
-
-
-.PHONY: maybe-distclean-libiberty distclean-libiberty
-maybe-distclean-libiberty:
-maybe-distclean-libiberty: distclean-libiberty
-
-distclean-libiberty:
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing distclean in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- distclean) \
- || exit 1
-
-
-.PHONY: maybe-maintainer-clean-libiberty maintainer-clean-libiberty
-maybe-maintainer-clean-libiberty:
-maybe-maintainer-clean-libiberty: maintainer-clean-libiberty
-
-maintainer-clean-libiberty:
- @[ -f ./libiberty/Makefile ] || exit 0; \
- r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- $(HOST_EXPORTS) \
- for flag in $(EXTRA_HOST_FLAGS) ; do \
- eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
- done; \
- echo "Doing maintainer-clean in libiberty"; \
- (cd $(HOST_SUBDIR)/libiberty && \
- $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
- "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
- "RANLIB=$${RANLIB}" \
- "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
- maintainer-clean) \
- || exit 1
-
-
-
-
-.PHONY: configure-libiberty-linker-plugin maybe-configure-libiberty-linker-plugin
-maybe-configure-libiberty-linker-plugin:
-
-
-
-.PHONY: configure-stage1-libiberty-linker-plugin maybe-configure-stage1-libiberty-linker-plugin
-maybe-configure-stage1-libiberty-linker-plugin:
-
-.PHONY: configure-stage2-libiberty-linker-plugin maybe-configure-stage2-libiberty-linker-plugin
-maybe-configure-stage2-libiberty-linker-plugin:
-
-.PHONY: configure-stage3-libiberty-linker-plugin maybe-configure-stage3-libiberty-linker-plugin
-maybe-configure-stage3-libiberty-linker-plugin:
-
-.PHONY: configure-stage4-libiberty-linker-plugin maybe-configure-stage4-libiberty-linker-plugin
-maybe-configure-stage4-libiberty-linker-plugin:
-
-.PHONY: configure-stageprofile-libiberty-linker-plugin maybe-configure-stageprofile-libiberty-linker-plugin
-maybe-configure-stageprofile-libiberty-linker-plugin:
-
-.PHONY: configure-stagefeedback-libiberty-linker-plugin maybe-configure-stagefeedback-libiberty-linker-plugin
-maybe-configure-stagefeedback-libiberty-linker-plugin:
-
-
-
-
-
-.PHONY: all-libiberty-linker-plugin maybe-all-libiberty-linker-plugin
-maybe-all-libiberty-linker-plugin:
-
-
-
-.PHONY: all-stage1-libiberty-linker-plugin maybe-all-stage1-libiberty-linker-plugin
-.PHONY: clean-stage1-libiberty-linker-plugin maybe-clean-stage1-libiberty-linker-plugin
-maybe-all-stage1-libiberty-linker-plugin:
-maybe-clean-stage1-libiberty-linker-plugin:
-
-
-.PHONY: all-stage2-libiberty-linker-plugin maybe-all-stage2-libiberty-linker-plugin
-.PHONY: clean-stage2-libiberty-linker-plugin maybe-clean-stage2-libiberty-linker-plugin
-maybe-all-stage2-libiberty-linker-plugin:
-maybe-clean-stage2-libiberty-linker-plugin:
-
-
-.PHONY: all-stage3-libiberty-linker-plugin maybe-all-stage3-libiberty-linker-plugin
-.PHONY: clean-stage3-libiberty-linker-plugin maybe-clean-stage3-libiberty-linker-plugin
-maybe-all-stage3-libiberty-linker-plugin:
-maybe-clean-stage3-libiberty-linker-plugin:
-
-
-.PHONY: all-stage4-libiberty-linker-plugin maybe-all-stage4-libiberty-linker-plugin
-.PHONY: clean-stage4-libiberty-linker-plugin maybe-clean-stage4-libiberty-linker-plugin
-maybe-all-stage4-libiberty-linker-plugin:
-maybe-clean-stage4-libiberty-linker-plugin:
-
-
-.PHONY: all-stageprofile-libiberty-linker-plugin maybe-all-stageprofile-libiberty-linker-plugin
-.PHONY: clean-stageprofile-libiberty-linker-plugin maybe-clean-stageprofile-libiberty-linker-plugin
-maybe-all-stageprofile-libiberty-linker-plugin:
-maybe-clean-stageprofile-libiberty-linker-plugin:
-
-
-.PHONY: all-stagefeedback-libiberty-linker-plugin maybe-all-stagefeedback-libiberty-linker-plugin
-.PHONY: clean-stagefeedback-libiberty-linker-plugin maybe-clean-stagefeedback-libiberty-linker-plugin
-maybe-all-stagefeedback-libiberty-linker-plugin:
-maybe-clean-stagefeedback-libiberty-linker-plugin:
-
-
-
-
-
-.PHONY: check-libiberty-linker-plugin maybe-check-libiberty-linker-plugin
-maybe-check-libiberty-linker-plugin:
-
-.PHONY: install-libiberty-linker-plugin maybe-install-libiberty-linker-plugin
-maybe-install-libiberty-linker-plugin:
-
-.PHONY: install-strip-libiberty-linker-plugin maybe-install-strip-libiberty-linker-plugin
-maybe-install-strip-libiberty-linker-plugin:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-libiberty-linker-plugin info-libiberty-linker-plugin
-maybe-info-libiberty-linker-plugin:
-
-.PHONY: maybe-dvi-libiberty-linker-plugin dvi-libiberty-linker-plugin
-maybe-dvi-libiberty-linker-plugin:
-
-.PHONY: maybe-pdf-libiberty-linker-plugin pdf-libiberty-linker-plugin
-maybe-pdf-libiberty-linker-plugin:
-
-.PHONY: maybe-html-libiberty-linker-plugin html-libiberty-linker-plugin
-maybe-html-libiberty-linker-plugin:
-
-.PHONY: maybe-TAGS-libiberty-linker-plugin TAGS-libiberty-linker-plugin
-maybe-TAGS-libiberty-linker-plugin:
-
-.PHONY: maybe-install-info-libiberty-linker-plugin install-info-libiberty-linker-plugin
-maybe-install-info-libiberty-linker-plugin:
-
-.PHONY: maybe-install-pdf-libiberty-linker-plugin install-pdf-libiberty-linker-plugin
-maybe-install-pdf-libiberty-linker-plugin:
-
-.PHONY: maybe-install-html-libiberty-linker-plugin install-html-libiberty-linker-plugin
-maybe-install-html-libiberty-linker-plugin:
-
-.PHONY: maybe-installcheck-libiberty-linker-plugin installcheck-libiberty-linker-plugin
-maybe-installcheck-libiberty-linker-plugin:
-
-.PHONY: maybe-mostlyclean-libiberty-linker-plugin mostlyclean-libiberty-linker-plugin
-maybe-mostlyclean-libiberty-linker-plugin:
-
-.PHONY: maybe-clean-libiberty-linker-plugin clean-libiberty-linker-plugin
-maybe-clean-libiberty-linker-plugin:
-
-.PHONY: maybe-distclean-libiberty-linker-plugin distclean-libiberty-linker-plugin
-maybe-distclean-libiberty-linker-plugin:
-
-.PHONY: maybe-maintainer-clean-libiberty-linker-plugin maintainer-clean-libiberty-linker-plugin
-maybe-maintainer-clean-libiberty-linker-plugin:
-
-
-
-.PHONY: configure-libiconv maybe-configure-libiconv
-maybe-configure-libiconv:
-
-
-
-.PHONY: configure-stage1-libiconv maybe-configure-stage1-libiconv
-maybe-configure-stage1-libiconv:
-
-.PHONY: configure-stage2-libiconv maybe-configure-stage2-libiconv
-maybe-configure-stage2-libiconv:
-
-.PHONY: configure-stage3-libiconv maybe-configure-stage3-libiconv
-maybe-configure-stage3-libiconv:
-
-.PHONY: configure-stage4-libiconv maybe-configure-stage4-libiconv
-maybe-configure-stage4-libiconv:
-
-.PHONY: configure-stageprofile-libiconv maybe-configure-stageprofile-libiconv
-maybe-configure-stageprofile-libiconv:
-
-.PHONY: configure-stagefeedback-libiconv maybe-configure-stagefeedback-libiconv
-maybe-configure-stagefeedback-libiconv:
-
-
-
-
-
-.PHONY: all-libiconv maybe-all-libiconv
-maybe-all-libiconv:
-
-
-
-.PHONY: all-stage1-libiconv maybe-all-stage1-libiconv
-.PHONY: clean-stage1-libiconv maybe-clean-stage1-libiconv
-maybe-all-stage1-libiconv:
-maybe-clean-stage1-libiconv:
-
-
-.PHONY: all-stage2-libiconv maybe-all-stage2-libiconv
-.PHONY: clean-stage2-libiconv maybe-clean-stage2-libiconv
-maybe-all-stage2-libiconv:
-maybe-clean-stage2-libiconv:
-
-
-.PHONY: all-stage3-libiconv maybe-all-stage3-libiconv
-.PHONY: clean-stage3-libiconv maybe-clean-stage3-libiconv
-maybe-all-stage3-libiconv:
-maybe-clean-stage3-libiconv:
-
-
-.PHONY: all-stage4-libiconv maybe-all-stage4-libiconv
-.PHONY: clean-stage4-libiconv maybe-clean-stage4-libiconv
-maybe-all-stage4-libiconv:
-maybe-clean-stage4-libiconv:
-
-
-.PHONY: all-stageprofile-libiconv maybe-all-stageprofile-libiconv
-.PHONY: clean-stageprofile-libiconv maybe-clean-stageprofile-libiconv
-maybe-all-stageprofile-libiconv:
-maybe-clean-stageprofile-libiconv:
-
-
-.PHONY: all-stagefeedback-libiconv maybe-all-stagefeedback-libiconv
-.PHONY: clean-stagefeedback-libiconv maybe-clean-stagefeedback-libiconv
-maybe-all-stagefeedback-libiconv:
-maybe-clean-stagefeedback-libiconv:
-
-
-
-
-
-.PHONY: check-libiconv maybe-check-libiconv
-maybe-check-libiconv:
-
-.PHONY: install-libiconv maybe-install-libiconv
-maybe-install-libiconv:
-
-.PHONY: install-strip-libiconv maybe-install-strip-libiconv
-maybe-install-strip-libiconv:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-libiconv info-libiconv
-maybe-info-libiconv:
-
-.PHONY: maybe-dvi-libiconv dvi-libiconv
-maybe-dvi-libiconv:
-
-.PHONY: maybe-pdf-libiconv pdf-libiconv
-maybe-pdf-libiconv:
-
-.PHONY: maybe-html-libiconv html-libiconv
-maybe-html-libiconv:
-
-.PHONY: maybe-TAGS-libiconv TAGS-libiconv
-maybe-TAGS-libiconv:
-
-.PHONY: maybe-install-info-libiconv install-info-libiconv
-maybe-install-info-libiconv:
-
-.PHONY: maybe-install-pdf-libiconv install-pdf-libiconv
-maybe-install-pdf-libiconv:
-
-.PHONY: maybe-install-html-libiconv install-html-libiconv
-maybe-install-html-libiconv:
-
-.PHONY: maybe-installcheck-libiconv installcheck-libiconv
-maybe-installcheck-libiconv:
-
-.PHONY: maybe-mostlyclean-libiconv mostlyclean-libiconv
-maybe-mostlyclean-libiconv:
-
-.PHONY: maybe-clean-libiconv clean-libiconv
-maybe-clean-libiconv:
-
-.PHONY: maybe-distclean-libiconv distclean-libiconv
-maybe-distclean-libiconv:
-
-.PHONY: maybe-maintainer-clean-libiconv maintainer-clean-libiconv
-maybe-maintainer-clean-libiconv:
-
-
-
-.PHONY: configure-m4 maybe-configure-m4
-maybe-configure-m4:
-
-
-
-
-
-.PHONY: all-m4 maybe-all-m4
-maybe-all-m4:
-
-
-
-
-.PHONY: check-m4 maybe-check-m4
-maybe-check-m4:
-
-.PHONY: install-m4 maybe-install-m4
-maybe-install-m4:
-
-.PHONY: install-strip-m4 maybe-install-strip-m4
-maybe-install-strip-m4:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-m4 info-m4
-maybe-info-m4:
-
-.PHONY: maybe-dvi-m4 dvi-m4
-maybe-dvi-m4:
-
-.PHONY: maybe-pdf-m4 pdf-m4
-maybe-pdf-m4:
-
-.PHONY: maybe-html-m4 html-m4
-maybe-html-m4:
-
-.PHONY: maybe-TAGS-m4 TAGS-m4
-maybe-TAGS-m4:
-
-.PHONY: maybe-install-info-m4 install-info-m4
-maybe-install-info-m4:
-
-.PHONY: maybe-install-pdf-m4 install-pdf-m4
-maybe-install-pdf-m4:
-
-.PHONY: maybe-install-html-m4 install-html-m4
-maybe-install-html-m4:
-
-.PHONY: maybe-installcheck-m4 installcheck-m4
-maybe-installcheck-m4:
-
-.PHONY: maybe-mostlyclean-m4 mostlyclean-m4
-maybe-mostlyclean-m4:
-
-.PHONY: maybe-clean-m4 clean-m4
-maybe-clean-m4:
-
-.PHONY: maybe-distclean-m4 distclean-m4
-maybe-distclean-m4:
-
-.PHONY: maybe-maintainer-clean-m4 maintainer-clean-m4
-maybe-maintainer-clean-m4:
-
-
-
-.PHONY: configure-readline maybe-configure-readline
-maybe-configure-readline:
-
-
-
-
-
-.PHONY: all-readline maybe-all-readline
-maybe-all-readline:
-
-
-
-
-.PHONY: check-readline maybe-check-readline
-maybe-check-readline:
-
-.PHONY: install-readline maybe-install-readline
-maybe-install-readline:
-
-.PHONY: install-strip-readline maybe-install-strip-readline
-maybe-install-strip-readline:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-readline info-readline
-maybe-info-readline:
-
-.PHONY: maybe-dvi-readline dvi-readline
-maybe-dvi-readline:
-
-.PHONY: maybe-pdf-readline pdf-readline
-maybe-pdf-readline:
-
-.PHONY: maybe-html-readline html-readline
-maybe-html-readline:
-
-.PHONY: maybe-TAGS-readline TAGS-readline
-maybe-TAGS-readline:
-
-.PHONY: maybe-install-info-readline install-info-readline
-maybe-install-info-readline:
-
-.PHONY: maybe-install-pdf-readline install-pdf-readline
-maybe-install-pdf-readline:
-
-.PHONY: maybe-install-html-readline install-html-readline
-maybe-install-html-readline:
-
-.PHONY: maybe-installcheck-readline installcheck-readline
-maybe-installcheck-readline:
-
-.PHONY: maybe-mostlyclean-readline mostlyclean-readline
-maybe-mostlyclean-readline:
-
-.PHONY: maybe-clean-readline clean-readline
-maybe-clean-readline:
-
-.PHONY: maybe-distclean-readline distclean-readline
-maybe-distclean-readline:
-
-.PHONY: maybe-maintainer-clean-readline maintainer-clean-readline
-maybe-maintainer-clean-readline:
-
-
-
-.PHONY: configure-sid maybe-configure-sid
-maybe-configure-sid:
-
-
-
-
-
-.PHONY: all-sid maybe-all-sid
-maybe-all-sid:
-
-
-
-
-.PHONY: check-sid maybe-check-sid
-maybe-check-sid:
-
-.PHONY: install-sid maybe-install-sid
-maybe-install-sid:
-
-.PHONY: install-strip-sid maybe-install-strip-sid
-maybe-install-strip-sid:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-sid info-sid
-maybe-info-sid:
-
-.PHONY: maybe-dvi-sid dvi-sid
-maybe-dvi-sid:
-
-.PHONY: maybe-pdf-sid pdf-sid
-maybe-pdf-sid:
-
-.PHONY: maybe-html-sid html-sid
-maybe-html-sid:
-
-.PHONY: maybe-TAGS-sid TAGS-sid
-maybe-TAGS-sid:
-
-.PHONY: maybe-install-info-sid install-info-sid
-maybe-install-info-sid:
-
-.PHONY: maybe-install-pdf-sid install-pdf-sid
-maybe-install-pdf-sid:
-
-.PHONY: maybe-install-html-sid install-html-sid
-maybe-install-html-sid:
-
-.PHONY: maybe-installcheck-sid installcheck-sid
-maybe-installcheck-sid:
-
-.PHONY: maybe-mostlyclean-sid mostlyclean-sid
-maybe-mostlyclean-sid:
-
-.PHONY: maybe-clean-sid clean-sid
-maybe-clean-sid:
-
-.PHONY: maybe-distclean-sid distclean-sid
-maybe-distclean-sid:
-
-.PHONY: maybe-maintainer-clean-sid maintainer-clean-sid
-maybe-maintainer-clean-sid:
-
-
-
-.PHONY: configure-sim maybe-configure-sim
-maybe-configure-sim:
-
-
-
-
-
-.PHONY: all-sim maybe-all-sim
-maybe-all-sim:
-
-
-
-
-.PHONY: check-sim maybe-check-sim
-maybe-check-sim:
-
-.PHONY: install-sim maybe-install-sim
-maybe-install-sim:
-
-.PHONY: install-strip-sim maybe-install-strip-sim
-maybe-install-strip-sim:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-sim info-sim
-maybe-info-sim:
-
-.PHONY: maybe-dvi-sim dvi-sim
-maybe-dvi-sim:
-
-.PHONY: maybe-pdf-sim pdf-sim
-maybe-pdf-sim:
-
-.PHONY: maybe-html-sim html-sim
-maybe-html-sim:
-
-.PHONY: maybe-TAGS-sim TAGS-sim
-maybe-TAGS-sim:
-
-.PHONY: maybe-install-info-sim install-info-sim
-maybe-install-info-sim:
-
-.PHONY: maybe-install-pdf-sim install-pdf-sim
-maybe-install-pdf-sim:
-
-.PHONY: maybe-install-html-sim install-html-sim
-maybe-install-html-sim:
-
-.PHONY: maybe-installcheck-sim installcheck-sim
-maybe-installcheck-sim:
-
-.PHONY: maybe-mostlyclean-sim mostlyclean-sim
-maybe-mostlyclean-sim:
-
-.PHONY: maybe-clean-sim clean-sim
-maybe-clean-sim:
-
-.PHONY: maybe-distclean-sim distclean-sim
-maybe-distclean-sim:
-
-.PHONY: maybe-maintainer-clean-sim maintainer-clean-sim
-maybe-maintainer-clean-sim:
-
-
-
-.PHONY: configure-texinfo maybe-configure-texinfo
-maybe-configure-texinfo:
-
-
-
-
-
-.PHONY: all-texinfo maybe-all-texinfo
-maybe-all-texinfo:
-
-
-
-
-.PHONY: check-texinfo maybe-check-texinfo
-maybe-check-texinfo:
-
-.PHONY: install-texinfo maybe-install-texinfo
-maybe-install-texinfo:
-
-.PHONY: install-strip-texinfo maybe-install-strip-texinfo
-maybe-install-strip-texinfo:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-texinfo info-texinfo
-maybe-info-texinfo:
-
-.PHONY: maybe-dvi-texinfo dvi-texinfo
-maybe-dvi-texinfo:
-
-.PHONY: maybe-pdf-texinfo pdf-texinfo
-maybe-pdf-texinfo:
-
-.PHONY: maybe-html-texinfo html-texinfo
-maybe-html-texinfo:
-
-.PHONY: maybe-TAGS-texinfo TAGS-texinfo
-maybe-TAGS-texinfo:
-
-.PHONY: maybe-install-info-texinfo install-info-texinfo
-maybe-install-info-texinfo:
-
-.PHONY: maybe-install-pdf-texinfo install-pdf-texinfo
-maybe-install-pdf-texinfo:
-
-.PHONY: maybe-install-html-texinfo install-html-texinfo
-maybe-install-html-texinfo:
-
-.PHONY: maybe-installcheck-texinfo installcheck-texinfo
-maybe-installcheck-texinfo:
-
-.PHONY: maybe-mostlyclean-texinfo mostlyclean-texinfo
-maybe-mostlyclean-texinfo:
-
-.PHONY: maybe-clean-texinfo clean-texinfo
-maybe-clean-texinfo:
-
-.PHONY: maybe-distclean-texinfo distclean-texinfo
-maybe-distclean-texinfo:
-
-.PHONY: maybe-maintainer-clean-texinfo maintainer-clean-texinfo
-maybe-maintainer-clean-texinfo:
-
-
-
-.PHONY: configure-zlib maybe-configure-zlib
-maybe-configure-zlib:
-
-
-
-.PHONY: configure-stage1-zlib maybe-configure-stage1-zlib
-maybe-configure-stage1-zlib:
-
-.PHONY: configure-stage2-zlib maybe-configure-stage2-zlib
-maybe-configure-stage2-zlib:
-
-.PHONY: configure-stage3-zlib maybe-configure-stage3-zlib
-maybe-configure-stage3-zlib:
-
-.PHONY: configure-stage4-zlib maybe-configure-stage4-zlib
-maybe-configure-stage4-zlib:
-
-.PHONY: configure-stageprofile-zlib maybe-configure-stageprofile-zlib
-maybe-configure-stageprofile-zlib:
-
-.PHONY: configure-stagefeedback-zlib maybe-configure-stagefeedback-zlib
-maybe-configure-stagefeedback-zlib:
-
-
-
-
-
-.PHONY: all-zlib maybe-all-zlib
-maybe-all-zlib:
-
-
-
-.PHONY: all-stage1-zlib maybe-all-stage1-zlib
-.PHONY: clean-stage1-zlib maybe-clean-stage1-zlib
-maybe-all-stage1-zlib:
-maybe-clean-stage1-zlib:
-
-
-.PHONY: all-stage2-zlib maybe-all-stage2-zlib
-.PHONY: clean-stage2-zlib maybe-clean-stage2-zlib
-maybe-all-stage2-zlib:
-maybe-clean-stage2-zlib:
-
-
-.PHONY: all-stage3-zlib maybe-all-stage3-zlib
-.PHONY: clean-stage3-zlib maybe-clean-stage3-zlib
-maybe-all-stage3-zlib:
-maybe-clean-stage3-zlib:
-
-
-.PHONY: all-stage4-zlib maybe-all-stage4-zlib
-.PHONY: clean-stage4-zlib maybe-clean-stage4-zlib
-maybe-all-stage4-zlib:
-maybe-clean-stage4-zlib:
-
-
-.PHONY: all-stageprofile-zlib maybe-all-stageprofile-zlib
-.PHONY: clean-stageprofile-zlib maybe-clean-stageprofile-zlib
-maybe-all-stageprofile-zlib:
-maybe-clean-stageprofile-zlib:
-
-
-.PHONY: all-stagefeedback-zlib maybe-all-stagefeedback-zlib
-.PHONY: clean-stagefeedback-zlib maybe-clean-stagefeedback-zlib
-maybe-all-stagefeedback-zlib:
-maybe-clean-stagefeedback-zlib:
-
-
-
-
-
-.PHONY: check-zlib maybe-check-zlib
-maybe-check-zlib:
-
-.PHONY: install-zlib maybe-install-zlib
-maybe-install-zlib:
-
-.PHONY: install-strip-zlib maybe-install-strip-zlib
-maybe-install-strip-zlib:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-zlib info-zlib
-maybe-info-zlib:
-
-.PHONY: maybe-dvi-zlib dvi-zlib
-maybe-dvi-zlib:
-
-.PHONY: maybe-pdf-zlib pdf-zlib
-maybe-pdf-zlib:
-
-.PHONY: maybe-html-zlib html-zlib
-maybe-html-zlib:
-
-.PHONY: maybe-TAGS-zlib TAGS-zlib
-maybe-TAGS-zlib:
-
-.PHONY: maybe-install-info-zlib install-info-zlib
-maybe-install-info-zlib:
-
-.PHONY: maybe-install-pdf-zlib install-pdf-zlib
-maybe-install-pdf-zlib:
-
-.PHONY: maybe-install-html-zlib install-html-zlib
-maybe-install-html-zlib:
-
-.PHONY: maybe-installcheck-zlib installcheck-zlib
-maybe-installcheck-zlib:
-
-.PHONY: maybe-mostlyclean-zlib mostlyclean-zlib
-maybe-mostlyclean-zlib:
-
-.PHONY: maybe-clean-zlib clean-zlib
-maybe-clean-zlib:
-
-.PHONY: maybe-distclean-zlib distclean-zlib
-maybe-distclean-zlib:
-
-.PHONY: maybe-maintainer-clean-zlib maintainer-clean-zlib
-maybe-maintainer-clean-zlib:
-
-
-
-.PHONY: configure-gdb maybe-configure-gdb
-maybe-configure-gdb:
-
-
-
-
-
-.PHONY: all-gdb maybe-all-gdb
-maybe-all-gdb:
-
-
-
-
-.PHONY: check-gdb maybe-check-gdb
-maybe-check-gdb:
-
-.PHONY: install-gdb maybe-install-gdb
-maybe-install-gdb:
-
-.PHONY: install-strip-gdb maybe-install-strip-gdb
-maybe-install-strip-gdb:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-gdb info-gdb
-maybe-info-gdb:
-
-.PHONY: maybe-dvi-gdb dvi-gdb
-maybe-dvi-gdb:
-
-.PHONY: maybe-pdf-gdb pdf-gdb
-maybe-pdf-gdb:
-
-.PHONY: maybe-html-gdb html-gdb
-maybe-html-gdb:
-
-.PHONY: maybe-TAGS-gdb TAGS-gdb
-maybe-TAGS-gdb:
-
-.PHONY: maybe-install-info-gdb install-info-gdb
-maybe-install-info-gdb:
-
-.PHONY: maybe-install-pdf-gdb install-pdf-gdb
-maybe-install-pdf-gdb:
-
-.PHONY: maybe-install-html-gdb install-html-gdb
-maybe-install-html-gdb:
-
-.PHONY: maybe-installcheck-gdb installcheck-gdb
-maybe-installcheck-gdb:
-
-.PHONY: maybe-mostlyclean-gdb mostlyclean-gdb
-maybe-mostlyclean-gdb:
-
-.PHONY: maybe-clean-gdb clean-gdb
-maybe-clean-gdb:
-
-.PHONY: maybe-distclean-gdb distclean-gdb
-maybe-distclean-gdb:
-
-.PHONY: maybe-maintainer-clean-gdb maintainer-clean-gdb
-maybe-maintainer-clean-gdb:
-
-
-
-.PHONY: configure-expect maybe-configure-expect
-maybe-configure-expect:
-
-
-
-
-
-.PHONY: all-expect maybe-all-expect
-maybe-all-expect:
-
-
-
-
-.PHONY: check-expect maybe-check-expect
-maybe-check-expect:
-
-.PHONY: install-expect maybe-install-expect
-maybe-install-expect:
-
-.PHONY: install-strip-expect maybe-install-strip-expect
-maybe-install-strip-expect:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-expect info-expect
-maybe-info-expect:
-
-.PHONY: maybe-dvi-expect dvi-expect
-maybe-dvi-expect:
-
-.PHONY: maybe-pdf-expect pdf-expect
-maybe-pdf-expect:
-
-.PHONY: maybe-html-expect html-expect
-maybe-html-expect:
-
-.PHONY: maybe-TAGS-expect TAGS-expect
-maybe-TAGS-expect:
-
-.PHONY: maybe-install-info-expect install-info-expect
-maybe-install-info-expect:
-
-.PHONY: maybe-install-pdf-expect install-pdf-expect
-maybe-install-pdf-expect:
-
-.PHONY: maybe-install-html-expect install-html-expect
-maybe-install-html-expect:
-
-.PHONY: maybe-installcheck-expect installcheck-expect
-maybe-installcheck-expect:
-
-.PHONY: maybe-mostlyclean-expect mostlyclean-expect
-maybe-mostlyclean-expect:
-
-.PHONY: maybe-clean-expect clean-expect
-maybe-clean-expect:
-
-.PHONY: maybe-distclean-expect distclean-expect
-maybe-distclean-expect:
-
-.PHONY: maybe-maintainer-clean-expect maintainer-clean-expect
-maybe-maintainer-clean-expect:
-
-
-
-.PHONY: configure-guile maybe-configure-guile
-maybe-configure-guile:
-
-
-
-
-
-.PHONY: all-guile maybe-all-guile
-maybe-all-guile:
-
-
-
-
-.PHONY: check-guile maybe-check-guile
-maybe-check-guile:
-
-.PHONY: install-guile maybe-install-guile
-maybe-install-guile:
-
-.PHONY: install-strip-guile maybe-install-strip-guile
-maybe-install-strip-guile:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-guile info-guile
-maybe-info-guile:
-
-.PHONY: maybe-dvi-guile dvi-guile
-maybe-dvi-guile:
-
-.PHONY: maybe-pdf-guile pdf-guile
-maybe-pdf-guile:
-
-.PHONY: maybe-html-guile html-guile
-maybe-html-guile:
-
-.PHONY: maybe-TAGS-guile TAGS-guile
-maybe-TAGS-guile:
-
-.PHONY: maybe-install-info-guile install-info-guile
-maybe-install-info-guile:
-
-.PHONY: maybe-install-pdf-guile install-pdf-guile
-maybe-install-pdf-guile:
-
-.PHONY: maybe-install-html-guile install-html-guile
-maybe-install-html-guile:
-
-.PHONY: maybe-installcheck-guile installcheck-guile
-maybe-installcheck-guile:
-
-.PHONY: maybe-mostlyclean-guile mostlyclean-guile
-maybe-mostlyclean-guile:
-
-.PHONY: maybe-clean-guile clean-guile
-maybe-clean-guile:
-
-.PHONY: maybe-distclean-guile distclean-guile
-maybe-distclean-guile:
-
-.PHONY: maybe-maintainer-clean-guile maintainer-clean-guile
-maybe-maintainer-clean-guile:
-
-
-
-.PHONY: configure-tk maybe-configure-tk
-maybe-configure-tk:
-
-
-
-
-
-.PHONY: all-tk maybe-all-tk
-maybe-all-tk:
-
-
-
-
-.PHONY: check-tk maybe-check-tk
-maybe-check-tk:
-
-.PHONY: install-tk maybe-install-tk
-maybe-install-tk:
-
-.PHONY: install-strip-tk maybe-install-strip-tk
-maybe-install-strip-tk:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-tk info-tk
-maybe-info-tk:
-
-.PHONY: maybe-dvi-tk dvi-tk
-maybe-dvi-tk:
-
-.PHONY: maybe-pdf-tk pdf-tk
-maybe-pdf-tk:
-
-.PHONY: maybe-html-tk html-tk
-maybe-html-tk:
-
-.PHONY: maybe-TAGS-tk TAGS-tk
-maybe-TAGS-tk:
-
-.PHONY: maybe-install-info-tk install-info-tk
-maybe-install-info-tk:
-
-.PHONY: maybe-install-pdf-tk install-pdf-tk
-maybe-install-pdf-tk:
-
-.PHONY: maybe-install-html-tk install-html-tk
-maybe-install-html-tk:
-
-.PHONY: maybe-installcheck-tk installcheck-tk
-maybe-installcheck-tk:
-
-.PHONY: maybe-mostlyclean-tk mostlyclean-tk
-maybe-mostlyclean-tk:
-
-.PHONY: maybe-clean-tk clean-tk
-maybe-clean-tk:
-
-.PHONY: maybe-distclean-tk distclean-tk
-maybe-distclean-tk:
-
-.PHONY: maybe-maintainer-clean-tk maintainer-clean-tk
-maybe-maintainer-clean-tk:
-
-
-
-.PHONY: configure-libtermcap maybe-configure-libtermcap
-maybe-configure-libtermcap:
-
-
-
-
-
-.PHONY: all-libtermcap maybe-all-libtermcap
-maybe-all-libtermcap:
-
-
-
-
-.PHONY: check-libtermcap maybe-check-libtermcap
-maybe-check-libtermcap:
-
-.PHONY: install-libtermcap maybe-install-libtermcap
-maybe-install-libtermcap:
-
-.PHONY: install-strip-libtermcap maybe-install-strip-libtermcap
-maybe-install-strip-libtermcap:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-libtermcap info-libtermcap
-maybe-info-libtermcap:
-
-.PHONY: maybe-dvi-libtermcap dvi-libtermcap
-maybe-dvi-libtermcap:
-
-.PHONY: maybe-pdf-libtermcap pdf-libtermcap
-maybe-pdf-libtermcap:
-
-.PHONY: maybe-html-libtermcap html-libtermcap
-maybe-html-libtermcap:
-
-.PHONY: maybe-TAGS-libtermcap TAGS-libtermcap
-maybe-TAGS-libtermcap:
-
-.PHONY: maybe-install-info-libtermcap install-info-libtermcap
-maybe-install-info-libtermcap:
-
-.PHONY: maybe-install-pdf-libtermcap install-pdf-libtermcap
-maybe-install-pdf-libtermcap:
-
-.PHONY: maybe-install-html-libtermcap install-html-libtermcap
-maybe-install-html-libtermcap:
-
-.PHONY: maybe-installcheck-libtermcap installcheck-libtermcap
-maybe-installcheck-libtermcap:
-
-.PHONY: maybe-mostlyclean-libtermcap mostlyclean-libtermcap
-maybe-mostlyclean-libtermcap:
-
-.PHONY: maybe-clean-libtermcap clean-libtermcap
-maybe-clean-libtermcap:
-
-.PHONY: maybe-distclean-libtermcap distclean-libtermcap
-maybe-distclean-libtermcap:
-
-.PHONY: maybe-maintainer-clean-libtermcap maintainer-clean-libtermcap
-maybe-maintainer-clean-libtermcap:
-
-
-
-.PHONY: configure-utils maybe-configure-utils
-maybe-configure-utils:
-
-
-
-
-
-.PHONY: all-utils maybe-all-utils
-maybe-all-utils:
-
-
-
-
-.PHONY: check-utils maybe-check-utils
-maybe-check-utils:
-
-.PHONY: install-utils maybe-install-utils
-maybe-install-utils:
-
-.PHONY: install-strip-utils maybe-install-strip-utils
-maybe-install-strip-utils:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-utils info-utils
-maybe-info-utils:
-
-.PHONY: maybe-dvi-utils dvi-utils
-maybe-dvi-utils:
-
-.PHONY: maybe-pdf-utils pdf-utils
-maybe-pdf-utils:
-
-.PHONY: maybe-html-utils html-utils
-maybe-html-utils:
-
-.PHONY: maybe-TAGS-utils TAGS-utils
-maybe-TAGS-utils:
-
-.PHONY: maybe-install-info-utils install-info-utils
-maybe-install-info-utils:
-
-.PHONY: maybe-install-pdf-utils install-pdf-utils
-maybe-install-pdf-utils:
-
-.PHONY: maybe-install-html-utils install-html-utils
-maybe-install-html-utils:
-
-.PHONY: maybe-installcheck-utils installcheck-utils
-maybe-installcheck-utils:
-
-.PHONY: maybe-mostlyclean-utils mostlyclean-utils
-maybe-mostlyclean-utils:
-
-.PHONY: maybe-clean-utils clean-utils
-maybe-clean-utils:
-
-.PHONY: maybe-distclean-utils distclean-utils
-maybe-distclean-utils:
-
-.PHONY: maybe-maintainer-clean-utils maintainer-clean-utils
-maybe-maintainer-clean-utils:
-
-
-
-.PHONY: configure-gnattools maybe-configure-gnattools
-maybe-configure-gnattools:
-
-
-
-
-
-.PHONY: all-gnattools maybe-all-gnattools
-maybe-all-gnattools:
-
-
-
-
-.PHONY: check-gnattools maybe-check-gnattools
-maybe-check-gnattools:
-
-.PHONY: install-gnattools maybe-install-gnattools
-maybe-install-gnattools:
-
-.PHONY: install-strip-gnattools maybe-install-strip-gnattools
-maybe-install-strip-gnattools:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-gnattools info-gnattools
-maybe-info-gnattools:
-
-.PHONY: maybe-dvi-gnattools dvi-gnattools
-maybe-dvi-gnattools:
-
-.PHONY: maybe-pdf-gnattools pdf-gnattools
-maybe-pdf-gnattools:
-
-.PHONY: maybe-html-gnattools html-gnattools
-maybe-html-gnattools:
-
-.PHONY: maybe-TAGS-gnattools TAGS-gnattools
-maybe-TAGS-gnattools:
-
-.PHONY: maybe-install-info-gnattools install-info-gnattools
-maybe-install-info-gnattools:
-
-.PHONY: maybe-install-pdf-gnattools install-pdf-gnattools
-maybe-install-pdf-gnattools:
-
-.PHONY: maybe-install-html-gnattools install-html-gnattools
-maybe-install-html-gnattools:
-
-.PHONY: maybe-installcheck-gnattools installcheck-gnattools
-maybe-installcheck-gnattools:
-
-.PHONY: maybe-mostlyclean-gnattools mostlyclean-gnattools
-maybe-mostlyclean-gnattools:
-
-.PHONY: maybe-clean-gnattools clean-gnattools
-maybe-clean-gnattools:
-
-.PHONY: maybe-distclean-gnattools distclean-gnattools
-maybe-distclean-gnattools:
-
-.PHONY: maybe-maintainer-clean-gnattools maintainer-clean-gnattools
-maybe-maintainer-clean-gnattools:
-
-
-
-.PHONY: configure-lto-plugin maybe-configure-lto-plugin
-maybe-configure-lto-plugin:
-
-
-
-.PHONY: configure-stage1-lto-plugin maybe-configure-stage1-lto-plugin
-maybe-configure-stage1-lto-plugin:
-
-.PHONY: configure-stage2-lto-plugin maybe-configure-stage2-lto-plugin
-maybe-configure-stage2-lto-plugin:
-
-.PHONY: configure-stage3-lto-plugin maybe-configure-stage3-lto-plugin
-maybe-configure-stage3-lto-plugin:
-
-.PHONY: configure-stage4-lto-plugin maybe-configure-stage4-lto-plugin
-maybe-configure-stage4-lto-plugin:
-
-.PHONY: configure-stageprofile-lto-plugin maybe-configure-stageprofile-lto-plugin
-maybe-configure-stageprofile-lto-plugin:
-
-.PHONY: configure-stagefeedback-lto-plugin maybe-configure-stagefeedback-lto-plugin
-maybe-configure-stagefeedback-lto-plugin:
-
-
-
-
-
-.PHONY: all-lto-plugin maybe-all-lto-plugin
-maybe-all-lto-plugin:
-
-
-
-.PHONY: all-stage1-lto-plugin maybe-all-stage1-lto-plugin
-.PHONY: clean-stage1-lto-plugin maybe-clean-stage1-lto-plugin
-maybe-all-stage1-lto-plugin:
-maybe-clean-stage1-lto-plugin:
-
-
-.PHONY: all-stage2-lto-plugin maybe-all-stage2-lto-plugin
-.PHONY: clean-stage2-lto-plugin maybe-clean-stage2-lto-plugin
-maybe-all-stage2-lto-plugin:
-maybe-clean-stage2-lto-plugin:
-
-
-.PHONY: all-stage3-lto-plugin maybe-all-stage3-lto-plugin
-.PHONY: clean-stage3-lto-plugin maybe-clean-stage3-lto-plugin
-maybe-all-stage3-lto-plugin:
-maybe-clean-stage3-lto-plugin:
-
-
-.PHONY: all-stage4-lto-plugin maybe-all-stage4-lto-plugin
-.PHONY: clean-stage4-lto-plugin maybe-clean-stage4-lto-plugin
-maybe-all-stage4-lto-plugin:
-maybe-clean-stage4-lto-plugin:
-
-
-.PHONY: all-stageprofile-lto-plugin maybe-all-stageprofile-lto-plugin
-.PHONY: clean-stageprofile-lto-plugin maybe-clean-stageprofile-lto-plugin
-maybe-all-stageprofile-lto-plugin:
-maybe-clean-stageprofile-lto-plugin:
-
-
-.PHONY: all-stagefeedback-lto-plugin maybe-all-stagefeedback-lto-plugin
-.PHONY: clean-stagefeedback-lto-plugin maybe-clean-stagefeedback-lto-plugin
-maybe-all-stagefeedback-lto-plugin:
-maybe-clean-stagefeedback-lto-plugin:
-
-
-
-
-
-.PHONY: check-lto-plugin maybe-check-lto-plugin
-maybe-check-lto-plugin:
-
-.PHONY: install-lto-plugin maybe-install-lto-plugin
-maybe-install-lto-plugin:
-
-.PHONY: install-strip-lto-plugin maybe-install-strip-lto-plugin
-maybe-install-strip-lto-plugin:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-lto-plugin info-lto-plugin
-maybe-info-lto-plugin:
-
-.PHONY: maybe-dvi-lto-plugin dvi-lto-plugin
-maybe-dvi-lto-plugin:
-
-.PHONY: maybe-pdf-lto-plugin pdf-lto-plugin
-maybe-pdf-lto-plugin:
-
-.PHONY: maybe-html-lto-plugin html-lto-plugin
-maybe-html-lto-plugin:
-
-.PHONY: maybe-TAGS-lto-plugin TAGS-lto-plugin
-maybe-TAGS-lto-plugin:
-
-.PHONY: maybe-install-info-lto-plugin install-info-lto-plugin
-maybe-install-info-lto-plugin:
-
-.PHONY: maybe-install-pdf-lto-plugin install-pdf-lto-plugin
-maybe-install-pdf-lto-plugin:
-
-.PHONY: maybe-install-html-lto-plugin install-html-lto-plugin
-maybe-install-html-lto-plugin:
-
-.PHONY: maybe-installcheck-lto-plugin installcheck-lto-plugin
-maybe-installcheck-lto-plugin:
-
-.PHONY: maybe-mostlyclean-lto-plugin mostlyclean-lto-plugin
-maybe-mostlyclean-lto-plugin:
-
-.PHONY: maybe-clean-lto-plugin clean-lto-plugin
-maybe-clean-lto-plugin:
-
-.PHONY: maybe-distclean-lto-plugin distclean-lto-plugin
-maybe-distclean-lto-plugin:
-
-.PHONY: maybe-maintainer-clean-lto-plugin maintainer-clean-lto-plugin
-maybe-maintainer-clean-lto-plugin:
-
-
-
-.PHONY: configure-libcc1 maybe-configure-libcc1
-maybe-configure-libcc1:
-
-
-
-
-
-.PHONY: all-libcc1 maybe-all-libcc1
-maybe-all-libcc1:
-
-
-
-
-.PHONY: check-libcc1 maybe-check-libcc1
-maybe-check-libcc1:
-
-.PHONY: install-libcc1 maybe-install-libcc1
-maybe-install-libcc1:
-
-.PHONY: install-strip-libcc1 maybe-install-strip-libcc1
-maybe-install-strip-libcc1:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-libcc1 info-libcc1
-maybe-info-libcc1:
-
-.PHONY: maybe-dvi-libcc1 dvi-libcc1
-maybe-dvi-libcc1:
-
-.PHONY: maybe-pdf-libcc1 pdf-libcc1
-maybe-pdf-libcc1:
-
-.PHONY: maybe-html-libcc1 html-libcc1
-maybe-html-libcc1:
-
-.PHONY: maybe-TAGS-libcc1 TAGS-libcc1
-maybe-TAGS-libcc1:
-
-.PHONY: maybe-install-info-libcc1 install-info-libcc1
-maybe-install-info-libcc1:
-
-.PHONY: maybe-install-pdf-libcc1 install-pdf-libcc1
-maybe-install-pdf-libcc1:
-
-.PHONY: maybe-install-html-libcc1 install-html-libcc1
-maybe-install-html-libcc1:
-
-.PHONY: maybe-installcheck-libcc1 installcheck-libcc1
-maybe-installcheck-libcc1:
-
-.PHONY: maybe-mostlyclean-libcc1 mostlyclean-libcc1
-maybe-mostlyclean-libcc1:
-
-.PHONY: maybe-clean-libcc1 clean-libcc1
-maybe-clean-libcc1:
-
-.PHONY: maybe-distclean-libcc1 distclean-libcc1
-maybe-distclean-libcc1:
-
-.PHONY: maybe-maintainer-clean-libcc1 maintainer-clean-libcc1
-maybe-maintainer-clean-libcc1:
-
-
-
-.PHONY: configure-gotools maybe-configure-gotools
-maybe-configure-gotools:
-
-
-
-
-
-.PHONY: all-gotools maybe-all-gotools
-maybe-all-gotools:
-
-
-
-
-.PHONY: check-gotools maybe-check-gotools
-maybe-check-gotools:
-
-.PHONY: install-gotools maybe-install-gotools
-maybe-install-gotools:
-
-.PHONY: install-strip-gotools maybe-install-strip-gotools
-maybe-install-strip-gotools:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-gotools info-gotools
-maybe-info-gotools:
-
-.PHONY: maybe-dvi-gotools dvi-gotools
-maybe-dvi-gotools:
-
-.PHONY: maybe-pdf-gotools pdf-gotools
-maybe-pdf-gotools:
-
-.PHONY: maybe-html-gotools html-gotools
-maybe-html-gotools:
-
-.PHONY: maybe-TAGS-gotools TAGS-gotools
-maybe-TAGS-gotools:
-
-.PHONY: maybe-install-info-gotools install-info-gotools
-maybe-install-info-gotools:
-
-.PHONY: maybe-install-pdf-gotools install-pdf-gotools
-maybe-install-pdf-gotools:
-
-.PHONY: maybe-install-html-gotools install-html-gotools
-maybe-install-html-gotools:
-
-.PHONY: maybe-installcheck-gotools installcheck-gotools
-maybe-installcheck-gotools:
-
-.PHONY: maybe-mostlyclean-gotools mostlyclean-gotools
-maybe-mostlyclean-gotools:
-
-.PHONY: maybe-clean-gotools clean-gotools
-maybe-clean-gotools:
-
-.PHONY: maybe-distclean-gotools distclean-gotools
-maybe-distclean-gotools:
-
-.PHONY: maybe-maintainer-clean-gotools maintainer-clean-gotools
-maybe-maintainer-clean-gotools:
-
-
-
-# ---------------------------------------
-# Modules which run on the target machine
-# ---------------------------------------
-
-
-
-
-.PHONY: configure-target-libstdc++-v3 maybe-configure-target-libstdc++-v3
-maybe-configure-target-libstdc++-v3:
-
-
-
-.PHONY: configure-stage1-target-libstdc++-v3 maybe-configure-stage1-target-libstdc++-v3
-maybe-configure-stage1-target-libstdc++-v3:
-
-.PHONY: configure-stage2-target-libstdc++-v3 maybe-configure-stage2-target-libstdc++-v3
-maybe-configure-stage2-target-libstdc++-v3:
-
-.PHONY: configure-stage3-target-libstdc++-v3 maybe-configure-stage3-target-libstdc++-v3
-maybe-configure-stage3-target-libstdc++-v3:
-
-.PHONY: configure-stage4-target-libstdc++-v3 maybe-configure-stage4-target-libstdc++-v3
-maybe-configure-stage4-target-libstdc++-v3:
-
-.PHONY: configure-stageprofile-target-libstdc++-v3 maybe-configure-stageprofile-target-libstdc++-v3
-maybe-configure-stageprofile-target-libstdc++-v3:
-
-.PHONY: configure-stagefeedback-target-libstdc++-v3 maybe-configure-stagefeedback-target-libstdc++-v3
-maybe-configure-stagefeedback-target-libstdc++-v3:
-
-
-
-
-
-.PHONY: all-target-libstdc++-v3 maybe-all-target-libstdc++-v3
-maybe-all-target-libstdc++-v3:
-
-
-
-.PHONY: all-stage1-target-libstdc++-v3 maybe-all-stage1-target-libstdc++-v3
-.PHONY: clean-stage1-target-libstdc++-v3 maybe-clean-stage1-target-libstdc++-v3
-maybe-all-stage1-target-libstdc++-v3:
-maybe-clean-stage1-target-libstdc++-v3:
-
-
-.PHONY: all-stage2-target-libstdc++-v3 maybe-all-stage2-target-libstdc++-v3
-.PHONY: clean-stage2-target-libstdc++-v3 maybe-clean-stage2-target-libstdc++-v3
-maybe-all-stage2-target-libstdc++-v3:
-maybe-clean-stage2-target-libstdc++-v3:
-
-
-.PHONY: all-stage3-target-libstdc++-v3 maybe-all-stage3-target-libstdc++-v3
-.PHONY: clean-stage3-target-libstdc++-v3 maybe-clean-stage3-target-libstdc++-v3
-maybe-all-stage3-target-libstdc++-v3:
-maybe-clean-stage3-target-libstdc++-v3:
-
-
-.PHONY: all-stage4-target-libstdc++-v3 maybe-all-stage4-target-libstdc++-v3
-.PHONY: clean-stage4-target-libstdc++-v3 maybe-clean-stage4-target-libstdc++-v3
-maybe-all-stage4-target-libstdc++-v3:
-maybe-clean-stage4-target-libstdc++-v3:
-
-
-.PHONY: all-stageprofile-target-libstdc++-v3 maybe-all-stageprofile-target-libstdc++-v3
-.PHONY: clean-stageprofile-target-libstdc++-v3 maybe-clean-stageprofile-target-libstdc++-v3
-maybe-all-stageprofile-target-libstdc++-v3:
-maybe-clean-stageprofile-target-libstdc++-v3:
-
-
-.PHONY: all-stagefeedback-target-libstdc++-v3 maybe-all-stagefeedback-target-libstdc++-v3
-.PHONY: clean-stagefeedback-target-libstdc++-v3 maybe-clean-stagefeedback-target-libstdc++-v3
-maybe-all-stagefeedback-target-libstdc++-v3:
-maybe-clean-stagefeedback-target-libstdc++-v3:
-
-
-
-
-
-
-.PHONY: check-target-libstdc++-v3 maybe-check-target-libstdc++-v3
-maybe-check-target-libstdc++-v3:
-
-.PHONY: install-target-libstdc++-v3 maybe-install-target-libstdc++-v3
-maybe-install-target-libstdc++-v3:
-
-.PHONY: install-strip-target-libstdc++-v3 maybe-install-strip-target-libstdc++-v3
-maybe-install-strip-target-libstdc++-v3:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libstdc++-v3 info-target-libstdc++-v3
-maybe-info-target-libstdc++-v3:
-
-.PHONY: maybe-dvi-target-libstdc++-v3 dvi-target-libstdc++-v3
-maybe-dvi-target-libstdc++-v3:
-
-.PHONY: maybe-pdf-target-libstdc++-v3 pdf-target-libstdc++-v3
-maybe-pdf-target-libstdc++-v3:
-
-.PHONY: maybe-html-target-libstdc++-v3 html-target-libstdc++-v3
-maybe-html-target-libstdc++-v3:
-
-.PHONY: maybe-TAGS-target-libstdc++-v3 TAGS-target-libstdc++-v3
-maybe-TAGS-target-libstdc++-v3:
-
-.PHONY: maybe-install-info-target-libstdc++-v3 install-info-target-libstdc++-v3
-maybe-install-info-target-libstdc++-v3:
-
-.PHONY: maybe-install-pdf-target-libstdc++-v3 install-pdf-target-libstdc++-v3
-maybe-install-pdf-target-libstdc++-v3:
-
-.PHONY: maybe-install-html-target-libstdc++-v3 install-html-target-libstdc++-v3
-maybe-install-html-target-libstdc++-v3:
-
-.PHONY: maybe-installcheck-target-libstdc++-v3 installcheck-target-libstdc++-v3
-maybe-installcheck-target-libstdc++-v3:
-
-.PHONY: maybe-mostlyclean-target-libstdc++-v3 mostlyclean-target-libstdc++-v3
-maybe-mostlyclean-target-libstdc++-v3:
-
-.PHONY: maybe-clean-target-libstdc++-v3 clean-target-libstdc++-v3
-maybe-clean-target-libstdc++-v3:
-
-.PHONY: maybe-distclean-target-libstdc++-v3 distclean-target-libstdc++-v3
-maybe-distclean-target-libstdc++-v3:
-
-.PHONY: maybe-maintainer-clean-target-libstdc++-v3 maintainer-clean-target-libstdc++-v3
-maybe-maintainer-clean-target-libstdc++-v3:
-
-
-
-
-
-.PHONY: configure-target-libsanitizer maybe-configure-target-libsanitizer
-maybe-configure-target-libsanitizer:
-
-
-
-.PHONY: configure-stage1-target-libsanitizer maybe-configure-stage1-target-libsanitizer
-maybe-configure-stage1-target-libsanitizer:
-
-.PHONY: configure-stage2-target-libsanitizer maybe-configure-stage2-target-libsanitizer
-maybe-configure-stage2-target-libsanitizer:
-
-.PHONY: configure-stage3-target-libsanitizer maybe-configure-stage3-target-libsanitizer
-maybe-configure-stage3-target-libsanitizer:
-
-.PHONY: configure-stage4-target-libsanitizer maybe-configure-stage4-target-libsanitizer
-maybe-configure-stage4-target-libsanitizer:
-
-.PHONY: configure-stageprofile-target-libsanitizer maybe-configure-stageprofile-target-libsanitizer
-maybe-configure-stageprofile-target-libsanitizer:
-
-.PHONY: configure-stagefeedback-target-libsanitizer maybe-configure-stagefeedback-target-libsanitizer
-maybe-configure-stagefeedback-target-libsanitizer:
-
-
-
-
-
-.PHONY: all-target-libsanitizer maybe-all-target-libsanitizer
-maybe-all-target-libsanitizer:
-
-
-
-.PHONY: all-stage1-target-libsanitizer maybe-all-stage1-target-libsanitizer
-.PHONY: clean-stage1-target-libsanitizer maybe-clean-stage1-target-libsanitizer
-maybe-all-stage1-target-libsanitizer:
-maybe-clean-stage1-target-libsanitizer:
-
-
-.PHONY: all-stage2-target-libsanitizer maybe-all-stage2-target-libsanitizer
-.PHONY: clean-stage2-target-libsanitizer maybe-clean-stage2-target-libsanitizer
-maybe-all-stage2-target-libsanitizer:
-maybe-clean-stage2-target-libsanitizer:
-
-
-.PHONY: all-stage3-target-libsanitizer maybe-all-stage3-target-libsanitizer
-.PHONY: clean-stage3-target-libsanitizer maybe-clean-stage3-target-libsanitizer
-maybe-all-stage3-target-libsanitizer:
-maybe-clean-stage3-target-libsanitizer:
-
-
-.PHONY: all-stage4-target-libsanitizer maybe-all-stage4-target-libsanitizer
-.PHONY: clean-stage4-target-libsanitizer maybe-clean-stage4-target-libsanitizer
-maybe-all-stage4-target-libsanitizer:
-maybe-clean-stage4-target-libsanitizer:
-
-
-.PHONY: all-stageprofile-target-libsanitizer maybe-all-stageprofile-target-libsanitizer
-.PHONY: clean-stageprofile-target-libsanitizer maybe-clean-stageprofile-target-libsanitizer
-maybe-all-stageprofile-target-libsanitizer:
-maybe-clean-stageprofile-target-libsanitizer:
-
-
-.PHONY: all-stagefeedback-target-libsanitizer maybe-all-stagefeedback-target-libsanitizer
-.PHONY: clean-stagefeedback-target-libsanitizer maybe-clean-stagefeedback-target-libsanitizer
-maybe-all-stagefeedback-target-libsanitizer:
-maybe-clean-stagefeedback-target-libsanitizer:
-
-
-
-
-
-
-.PHONY: check-target-libsanitizer maybe-check-target-libsanitizer
-maybe-check-target-libsanitizer:
-
-.PHONY: install-target-libsanitizer maybe-install-target-libsanitizer
-maybe-install-target-libsanitizer:
-
-.PHONY: install-strip-target-libsanitizer maybe-install-strip-target-libsanitizer
-maybe-install-strip-target-libsanitizer:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libsanitizer info-target-libsanitizer
-maybe-info-target-libsanitizer:
-
-.PHONY: maybe-dvi-target-libsanitizer dvi-target-libsanitizer
-maybe-dvi-target-libsanitizer:
-
-.PHONY: maybe-pdf-target-libsanitizer pdf-target-libsanitizer
-maybe-pdf-target-libsanitizer:
-
-.PHONY: maybe-html-target-libsanitizer html-target-libsanitizer
-maybe-html-target-libsanitizer:
-
-.PHONY: maybe-TAGS-target-libsanitizer TAGS-target-libsanitizer
-maybe-TAGS-target-libsanitizer:
-
-.PHONY: maybe-install-info-target-libsanitizer install-info-target-libsanitizer
-maybe-install-info-target-libsanitizer:
-
-.PHONY: maybe-install-pdf-target-libsanitizer install-pdf-target-libsanitizer
-maybe-install-pdf-target-libsanitizer:
-
-.PHONY: maybe-install-html-target-libsanitizer install-html-target-libsanitizer
-maybe-install-html-target-libsanitizer:
-
-.PHONY: maybe-installcheck-target-libsanitizer installcheck-target-libsanitizer
-maybe-installcheck-target-libsanitizer:
-
-.PHONY: maybe-mostlyclean-target-libsanitizer mostlyclean-target-libsanitizer
-maybe-mostlyclean-target-libsanitizer:
-
-.PHONY: maybe-clean-target-libsanitizer clean-target-libsanitizer
-maybe-clean-target-libsanitizer:
-
-.PHONY: maybe-distclean-target-libsanitizer distclean-target-libsanitizer
-maybe-distclean-target-libsanitizer:
-
-.PHONY: maybe-maintainer-clean-target-libsanitizer maintainer-clean-target-libsanitizer
-maybe-maintainer-clean-target-libsanitizer:
-
-
-
-
-
-.PHONY: configure-target-libmpx maybe-configure-target-libmpx
-maybe-configure-target-libmpx:
-
-
-
-.PHONY: configure-stage1-target-libmpx maybe-configure-stage1-target-libmpx
-maybe-configure-stage1-target-libmpx:
-
-.PHONY: configure-stage2-target-libmpx maybe-configure-stage2-target-libmpx
-maybe-configure-stage2-target-libmpx:
-
-.PHONY: configure-stage3-target-libmpx maybe-configure-stage3-target-libmpx
-maybe-configure-stage3-target-libmpx:
-
-.PHONY: configure-stage4-target-libmpx maybe-configure-stage4-target-libmpx
-maybe-configure-stage4-target-libmpx:
-
-.PHONY: configure-stageprofile-target-libmpx maybe-configure-stageprofile-target-libmpx
-maybe-configure-stageprofile-target-libmpx:
-
-.PHONY: configure-stagefeedback-target-libmpx maybe-configure-stagefeedback-target-libmpx
-maybe-configure-stagefeedback-target-libmpx:
-
-
-
-
-
-.PHONY: all-target-libmpx maybe-all-target-libmpx
-maybe-all-target-libmpx:
-
-
-
-.PHONY: all-stage1-target-libmpx maybe-all-stage1-target-libmpx
-.PHONY: clean-stage1-target-libmpx maybe-clean-stage1-target-libmpx
-maybe-all-stage1-target-libmpx:
-maybe-clean-stage1-target-libmpx:
-
-
-.PHONY: all-stage2-target-libmpx maybe-all-stage2-target-libmpx
-.PHONY: clean-stage2-target-libmpx maybe-clean-stage2-target-libmpx
-maybe-all-stage2-target-libmpx:
-maybe-clean-stage2-target-libmpx:
-
-
-.PHONY: all-stage3-target-libmpx maybe-all-stage3-target-libmpx
-.PHONY: clean-stage3-target-libmpx maybe-clean-stage3-target-libmpx
-maybe-all-stage3-target-libmpx:
-maybe-clean-stage3-target-libmpx:
-
-
-.PHONY: all-stage4-target-libmpx maybe-all-stage4-target-libmpx
-.PHONY: clean-stage4-target-libmpx maybe-clean-stage4-target-libmpx
-maybe-all-stage4-target-libmpx:
-maybe-clean-stage4-target-libmpx:
-
-
-.PHONY: all-stageprofile-target-libmpx maybe-all-stageprofile-target-libmpx
-.PHONY: clean-stageprofile-target-libmpx maybe-clean-stageprofile-target-libmpx
-maybe-all-stageprofile-target-libmpx:
-maybe-clean-stageprofile-target-libmpx:
-
-
-.PHONY: all-stagefeedback-target-libmpx maybe-all-stagefeedback-target-libmpx
-.PHONY: clean-stagefeedback-target-libmpx maybe-clean-stagefeedback-target-libmpx
-maybe-all-stagefeedback-target-libmpx:
-maybe-clean-stagefeedback-target-libmpx:
-
-
-
-
-
-
-.PHONY: check-target-libmpx maybe-check-target-libmpx
-maybe-check-target-libmpx:
-
-.PHONY: install-target-libmpx maybe-install-target-libmpx
-maybe-install-target-libmpx:
-
-.PHONY: install-strip-target-libmpx maybe-install-strip-target-libmpx
-maybe-install-strip-target-libmpx:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libmpx info-target-libmpx
-maybe-info-target-libmpx:
-
-.PHONY: maybe-dvi-target-libmpx dvi-target-libmpx
-maybe-dvi-target-libmpx:
-
-.PHONY: maybe-pdf-target-libmpx pdf-target-libmpx
-maybe-pdf-target-libmpx:
-
-.PHONY: maybe-html-target-libmpx html-target-libmpx
-maybe-html-target-libmpx:
-
-.PHONY: maybe-TAGS-target-libmpx TAGS-target-libmpx
-maybe-TAGS-target-libmpx:
-
-.PHONY: maybe-install-info-target-libmpx install-info-target-libmpx
-maybe-install-info-target-libmpx:
-
-.PHONY: maybe-install-pdf-target-libmpx install-pdf-target-libmpx
-maybe-install-pdf-target-libmpx:
-
-.PHONY: maybe-install-html-target-libmpx install-html-target-libmpx
-maybe-install-html-target-libmpx:
-
-.PHONY: maybe-installcheck-target-libmpx installcheck-target-libmpx
-maybe-installcheck-target-libmpx:
-
-.PHONY: maybe-mostlyclean-target-libmpx mostlyclean-target-libmpx
-maybe-mostlyclean-target-libmpx:
-
-.PHONY: maybe-clean-target-libmpx clean-target-libmpx
-maybe-clean-target-libmpx:
-
-.PHONY: maybe-distclean-target-libmpx distclean-target-libmpx
-maybe-distclean-target-libmpx:
-
-.PHONY: maybe-maintainer-clean-target-libmpx maintainer-clean-target-libmpx
-maybe-maintainer-clean-target-libmpx:
-
-
-
-
-
-.PHONY: configure-target-libvtv maybe-configure-target-libvtv
-maybe-configure-target-libvtv:
-
-
-
-.PHONY: configure-stage1-target-libvtv maybe-configure-stage1-target-libvtv
-maybe-configure-stage1-target-libvtv:
-
-.PHONY: configure-stage2-target-libvtv maybe-configure-stage2-target-libvtv
-maybe-configure-stage2-target-libvtv:
-
-.PHONY: configure-stage3-target-libvtv maybe-configure-stage3-target-libvtv
-maybe-configure-stage3-target-libvtv:
-
-.PHONY: configure-stage4-target-libvtv maybe-configure-stage4-target-libvtv
-maybe-configure-stage4-target-libvtv:
-
-.PHONY: configure-stageprofile-target-libvtv maybe-configure-stageprofile-target-libvtv
-maybe-configure-stageprofile-target-libvtv:
-
-.PHONY: configure-stagefeedback-target-libvtv maybe-configure-stagefeedback-target-libvtv
-maybe-configure-stagefeedback-target-libvtv:
-
-
-
-
-
-.PHONY: all-target-libvtv maybe-all-target-libvtv
-maybe-all-target-libvtv:
-
-
-
-.PHONY: all-stage1-target-libvtv maybe-all-stage1-target-libvtv
-.PHONY: clean-stage1-target-libvtv maybe-clean-stage1-target-libvtv
-maybe-all-stage1-target-libvtv:
-maybe-clean-stage1-target-libvtv:
-
-
-.PHONY: all-stage2-target-libvtv maybe-all-stage2-target-libvtv
-.PHONY: clean-stage2-target-libvtv maybe-clean-stage2-target-libvtv
-maybe-all-stage2-target-libvtv:
-maybe-clean-stage2-target-libvtv:
-
-
-.PHONY: all-stage3-target-libvtv maybe-all-stage3-target-libvtv
-.PHONY: clean-stage3-target-libvtv maybe-clean-stage3-target-libvtv
-maybe-all-stage3-target-libvtv:
-maybe-clean-stage3-target-libvtv:
-
-
-.PHONY: all-stage4-target-libvtv maybe-all-stage4-target-libvtv
-.PHONY: clean-stage4-target-libvtv maybe-clean-stage4-target-libvtv
-maybe-all-stage4-target-libvtv:
-maybe-clean-stage4-target-libvtv:
-
-
-.PHONY: all-stageprofile-target-libvtv maybe-all-stageprofile-target-libvtv
-.PHONY: clean-stageprofile-target-libvtv maybe-clean-stageprofile-target-libvtv
-maybe-all-stageprofile-target-libvtv:
-maybe-clean-stageprofile-target-libvtv:
-
-
-.PHONY: all-stagefeedback-target-libvtv maybe-all-stagefeedback-target-libvtv
-.PHONY: clean-stagefeedback-target-libvtv maybe-clean-stagefeedback-target-libvtv
-maybe-all-stagefeedback-target-libvtv:
-maybe-clean-stagefeedback-target-libvtv:
-
-
-
-
-
-
-.PHONY: check-target-libvtv maybe-check-target-libvtv
-maybe-check-target-libvtv:
-
-.PHONY: install-target-libvtv maybe-install-target-libvtv
-maybe-install-target-libvtv:
-
-.PHONY: install-strip-target-libvtv maybe-install-strip-target-libvtv
-maybe-install-strip-target-libvtv:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libvtv info-target-libvtv
-maybe-info-target-libvtv:
-
-.PHONY: maybe-dvi-target-libvtv dvi-target-libvtv
-maybe-dvi-target-libvtv:
-
-.PHONY: maybe-pdf-target-libvtv pdf-target-libvtv
-maybe-pdf-target-libvtv:
-
-.PHONY: maybe-html-target-libvtv html-target-libvtv
-maybe-html-target-libvtv:
-
-.PHONY: maybe-TAGS-target-libvtv TAGS-target-libvtv
-maybe-TAGS-target-libvtv:
-
-.PHONY: maybe-install-info-target-libvtv install-info-target-libvtv
-maybe-install-info-target-libvtv:
-
-.PHONY: maybe-install-pdf-target-libvtv install-pdf-target-libvtv
-maybe-install-pdf-target-libvtv:
-
-.PHONY: maybe-install-html-target-libvtv install-html-target-libvtv
-maybe-install-html-target-libvtv:
-
-.PHONY: maybe-installcheck-target-libvtv installcheck-target-libvtv
-maybe-installcheck-target-libvtv:
-
-.PHONY: maybe-mostlyclean-target-libvtv mostlyclean-target-libvtv
-maybe-mostlyclean-target-libvtv:
-
-.PHONY: maybe-clean-target-libvtv clean-target-libvtv
-maybe-clean-target-libvtv:
-
-.PHONY: maybe-distclean-target-libvtv distclean-target-libvtv
-maybe-distclean-target-libvtv:
-
-.PHONY: maybe-maintainer-clean-target-libvtv maintainer-clean-target-libvtv
-maybe-maintainer-clean-target-libvtv:
-
-
-
-
-
-.PHONY: configure-target-libcilkrts maybe-configure-target-libcilkrts
-maybe-configure-target-libcilkrts:
-
-
-
-
-
-.PHONY: all-target-libcilkrts maybe-all-target-libcilkrts
-maybe-all-target-libcilkrts:
-
-
-
-
-
-.PHONY: check-target-libcilkrts maybe-check-target-libcilkrts
-maybe-check-target-libcilkrts:
-
-.PHONY: install-target-libcilkrts maybe-install-target-libcilkrts
-maybe-install-target-libcilkrts:
-
-.PHONY: install-strip-target-libcilkrts maybe-install-strip-target-libcilkrts
-maybe-install-strip-target-libcilkrts:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libcilkrts info-target-libcilkrts
-maybe-info-target-libcilkrts:
-
-.PHONY: maybe-dvi-target-libcilkrts dvi-target-libcilkrts
-maybe-dvi-target-libcilkrts:
-
-.PHONY: maybe-pdf-target-libcilkrts pdf-target-libcilkrts
-maybe-pdf-target-libcilkrts:
-
-.PHONY: maybe-html-target-libcilkrts html-target-libcilkrts
-maybe-html-target-libcilkrts:
-
-.PHONY: maybe-TAGS-target-libcilkrts TAGS-target-libcilkrts
-maybe-TAGS-target-libcilkrts:
-
-.PHONY: maybe-install-info-target-libcilkrts install-info-target-libcilkrts
-maybe-install-info-target-libcilkrts:
-
-.PHONY: maybe-install-pdf-target-libcilkrts install-pdf-target-libcilkrts
-maybe-install-pdf-target-libcilkrts:
-
-.PHONY: maybe-install-html-target-libcilkrts install-html-target-libcilkrts
-maybe-install-html-target-libcilkrts:
-
-.PHONY: maybe-installcheck-target-libcilkrts installcheck-target-libcilkrts
-maybe-installcheck-target-libcilkrts:
-
-.PHONY: maybe-mostlyclean-target-libcilkrts mostlyclean-target-libcilkrts
-maybe-mostlyclean-target-libcilkrts:
-
-.PHONY: maybe-clean-target-libcilkrts clean-target-libcilkrts
-maybe-clean-target-libcilkrts:
-
-.PHONY: maybe-distclean-target-libcilkrts distclean-target-libcilkrts
-maybe-distclean-target-libcilkrts:
-
-.PHONY: maybe-maintainer-clean-target-libcilkrts maintainer-clean-target-libcilkrts
-maybe-maintainer-clean-target-libcilkrts:
-
-
-
-
-
-.PHONY: configure-target-liboffloadmic maybe-configure-target-liboffloadmic
-maybe-configure-target-liboffloadmic:
-
-
-
-
-
-.PHONY: all-target-liboffloadmic maybe-all-target-liboffloadmic
-maybe-all-target-liboffloadmic:
-
-
-
-
-
-.PHONY: check-target-liboffloadmic maybe-check-target-liboffloadmic
-maybe-check-target-liboffloadmic:
-
-.PHONY: install-target-liboffloadmic maybe-install-target-liboffloadmic
-maybe-install-target-liboffloadmic:
-
-.PHONY: install-strip-target-liboffloadmic maybe-install-strip-target-liboffloadmic
-maybe-install-strip-target-liboffloadmic:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-liboffloadmic info-target-liboffloadmic
-maybe-info-target-liboffloadmic:
-
-.PHONY: maybe-dvi-target-liboffloadmic dvi-target-liboffloadmic
-maybe-dvi-target-liboffloadmic:
-
-.PHONY: maybe-pdf-target-liboffloadmic pdf-target-liboffloadmic
-maybe-pdf-target-liboffloadmic:
-
-.PHONY: maybe-html-target-liboffloadmic html-target-liboffloadmic
-maybe-html-target-liboffloadmic:
-
-.PHONY: maybe-TAGS-target-liboffloadmic TAGS-target-liboffloadmic
-maybe-TAGS-target-liboffloadmic:
-
-.PHONY: maybe-install-info-target-liboffloadmic install-info-target-liboffloadmic
-maybe-install-info-target-liboffloadmic:
-
-.PHONY: maybe-install-pdf-target-liboffloadmic install-pdf-target-liboffloadmic
-maybe-install-pdf-target-liboffloadmic:
-
-.PHONY: maybe-install-html-target-liboffloadmic install-html-target-liboffloadmic
-maybe-install-html-target-liboffloadmic:
-
-.PHONY: maybe-installcheck-target-liboffloadmic installcheck-target-liboffloadmic
-maybe-installcheck-target-liboffloadmic:
-
-.PHONY: maybe-mostlyclean-target-liboffloadmic mostlyclean-target-liboffloadmic
-maybe-mostlyclean-target-liboffloadmic:
-
-.PHONY: maybe-clean-target-liboffloadmic clean-target-liboffloadmic
-maybe-clean-target-liboffloadmic:
-
-.PHONY: maybe-distclean-target-liboffloadmic distclean-target-liboffloadmic
-maybe-distclean-target-liboffloadmic:
-
-.PHONY: maybe-maintainer-clean-target-liboffloadmic maintainer-clean-target-liboffloadmic
-maybe-maintainer-clean-target-liboffloadmic:
-
-
-
-
-
-.PHONY: configure-target-libssp maybe-configure-target-libssp
-maybe-configure-target-libssp:
-
-
-
-
-
-.PHONY: all-target-libssp maybe-all-target-libssp
-maybe-all-target-libssp:
-
-
-
-
-
-.PHONY: check-target-libssp maybe-check-target-libssp
-maybe-check-target-libssp:
-
-.PHONY: install-target-libssp maybe-install-target-libssp
-maybe-install-target-libssp:
-
-.PHONY: install-strip-target-libssp maybe-install-strip-target-libssp
-maybe-install-strip-target-libssp:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libssp info-target-libssp
-maybe-info-target-libssp:
-
-.PHONY: maybe-dvi-target-libssp dvi-target-libssp
-maybe-dvi-target-libssp:
-
-.PHONY: maybe-pdf-target-libssp pdf-target-libssp
-maybe-pdf-target-libssp:
-
-.PHONY: maybe-html-target-libssp html-target-libssp
-maybe-html-target-libssp:
-
-.PHONY: maybe-TAGS-target-libssp TAGS-target-libssp
-maybe-TAGS-target-libssp:
-
-.PHONY: maybe-install-info-target-libssp install-info-target-libssp
-maybe-install-info-target-libssp:
-
-.PHONY: maybe-install-pdf-target-libssp install-pdf-target-libssp
-maybe-install-pdf-target-libssp:
-
-.PHONY: maybe-install-html-target-libssp install-html-target-libssp
-maybe-install-html-target-libssp:
-
-.PHONY: maybe-installcheck-target-libssp installcheck-target-libssp
-maybe-installcheck-target-libssp:
-
-.PHONY: maybe-mostlyclean-target-libssp mostlyclean-target-libssp
-maybe-mostlyclean-target-libssp:
-
-.PHONY: maybe-clean-target-libssp clean-target-libssp
-maybe-clean-target-libssp:
-
-.PHONY: maybe-distclean-target-libssp distclean-target-libssp
-maybe-distclean-target-libssp:
-
-.PHONY: maybe-maintainer-clean-target-libssp maintainer-clean-target-libssp
-maybe-maintainer-clean-target-libssp:
-
-
-
-
-
-.PHONY: configure-target-newlib maybe-configure-target-newlib
-maybe-configure-target-newlib:
-
-
-
-
-
-.PHONY: all-target-newlib maybe-all-target-newlib
-maybe-all-target-newlib:
-
-
-
-
-
-.PHONY: check-target-newlib maybe-check-target-newlib
-maybe-check-target-newlib:
-
-.PHONY: install-target-newlib maybe-install-target-newlib
-maybe-install-target-newlib:
-
-.PHONY: install-strip-target-newlib maybe-install-strip-target-newlib
-maybe-install-strip-target-newlib:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-newlib info-target-newlib
-maybe-info-target-newlib:
-
-.PHONY: maybe-dvi-target-newlib dvi-target-newlib
-maybe-dvi-target-newlib:
-
-.PHONY: maybe-pdf-target-newlib pdf-target-newlib
-maybe-pdf-target-newlib:
-
-.PHONY: maybe-html-target-newlib html-target-newlib
-maybe-html-target-newlib:
-
-.PHONY: maybe-TAGS-target-newlib TAGS-target-newlib
-maybe-TAGS-target-newlib:
-
-.PHONY: maybe-install-info-target-newlib install-info-target-newlib
-maybe-install-info-target-newlib:
-
-.PHONY: maybe-install-pdf-target-newlib install-pdf-target-newlib
-maybe-install-pdf-target-newlib:
-
-.PHONY: maybe-install-html-target-newlib install-html-target-newlib
-maybe-install-html-target-newlib:
-
-.PHONY: maybe-installcheck-target-newlib installcheck-target-newlib
-maybe-installcheck-target-newlib:
-
-.PHONY: maybe-mostlyclean-target-newlib mostlyclean-target-newlib
-maybe-mostlyclean-target-newlib:
-
-.PHONY: maybe-clean-target-newlib clean-target-newlib
-maybe-clean-target-newlib:
-
-.PHONY: maybe-distclean-target-newlib distclean-target-newlib
-maybe-distclean-target-newlib:
-
-.PHONY: maybe-maintainer-clean-target-newlib maintainer-clean-target-newlib
-maybe-maintainer-clean-target-newlib:
-
-
-
-
-
-.PHONY: configure-target-libgcc maybe-configure-target-libgcc
-maybe-configure-target-libgcc:
-
-
-
-.PHONY: configure-stage1-target-libgcc maybe-configure-stage1-target-libgcc
-maybe-configure-stage1-target-libgcc:
-
-.PHONY: configure-stage2-target-libgcc maybe-configure-stage2-target-libgcc
-maybe-configure-stage2-target-libgcc:
-
-.PHONY: configure-stage3-target-libgcc maybe-configure-stage3-target-libgcc
-maybe-configure-stage3-target-libgcc:
-
-.PHONY: configure-stage4-target-libgcc maybe-configure-stage4-target-libgcc
-maybe-configure-stage4-target-libgcc:
-
-.PHONY: configure-stageprofile-target-libgcc maybe-configure-stageprofile-target-libgcc
-maybe-configure-stageprofile-target-libgcc:
-
-.PHONY: configure-stagefeedback-target-libgcc maybe-configure-stagefeedback-target-libgcc
-maybe-configure-stagefeedback-target-libgcc:
-
-
-
-
-
-.PHONY: all-target-libgcc maybe-all-target-libgcc
-maybe-all-target-libgcc:
-
-
-
-.PHONY: all-stage1-target-libgcc maybe-all-stage1-target-libgcc
-.PHONY: clean-stage1-target-libgcc maybe-clean-stage1-target-libgcc
-maybe-all-stage1-target-libgcc:
-maybe-clean-stage1-target-libgcc:
-
-
-.PHONY: all-stage2-target-libgcc maybe-all-stage2-target-libgcc
-.PHONY: clean-stage2-target-libgcc maybe-clean-stage2-target-libgcc
-maybe-all-stage2-target-libgcc:
-maybe-clean-stage2-target-libgcc:
-
-
-.PHONY: all-stage3-target-libgcc maybe-all-stage3-target-libgcc
-.PHONY: clean-stage3-target-libgcc maybe-clean-stage3-target-libgcc
-maybe-all-stage3-target-libgcc:
-maybe-clean-stage3-target-libgcc:
-
-
-.PHONY: all-stage4-target-libgcc maybe-all-stage4-target-libgcc
-.PHONY: clean-stage4-target-libgcc maybe-clean-stage4-target-libgcc
-maybe-all-stage4-target-libgcc:
-maybe-clean-stage4-target-libgcc:
-
-
-.PHONY: all-stageprofile-target-libgcc maybe-all-stageprofile-target-libgcc
-.PHONY: clean-stageprofile-target-libgcc maybe-clean-stageprofile-target-libgcc
-maybe-all-stageprofile-target-libgcc:
-maybe-clean-stageprofile-target-libgcc:
-
-
-.PHONY: all-stagefeedback-target-libgcc maybe-all-stagefeedback-target-libgcc
-.PHONY: clean-stagefeedback-target-libgcc maybe-clean-stagefeedback-target-libgcc
-maybe-all-stagefeedback-target-libgcc:
-maybe-clean-stagefeedback-target-libgcc:
-
-
-
-
-
-
-.PHONY: check-target-libgcc maybe-check-target-libgcc
-maybe-check-target-libgcc:
-
-.PHONY: install-target-libgcc maybe-install-target-libgcc
-maybe-install-target-libgcc:
-
-.PHONY: install-strip-target-libgcc maybe-install-strip-target-libgcc
-maybe-install-strip-target-libgcc:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libgcc info-target-libgcc
-maybe-info-target-libgcc:
-
-.PHONY: maybe-dvi-target-libgcc dvi-target-libgcc
-maybe-dvi-target-libgcc:
-
-.PHONY: maybe-pdf-target-libgcc pdf-target-libgcc
-maybe-pdf-target-libgcc:
-
-.PHONY: maybe-html-target-libgcc html-target-libgcc
-maybe-html-target-libgcc:
-
-.PHONY: maybe-TAGS-target-libgcc TAGS-target-libgcc
-maybe-TAGS-target-libgcc:
-
-.PHONY: maybe-install-info-target-libgcc install-info-target-libgcc
-maybe-install-info-target-libgcc:
-
-.PHONY: maybe-install-pdf-target-libgcc install-pdf-target-libgcc
-maybe-install-pdf-target-libgcc:
-
-.PHONY: maybe-install-html-target-libgcc install-html-target-libgcc
-maybe-install-html-target-libgcc:
-
-.PHONY: maybe-installcheck-target-libgcc installcheck-target-libgcc
-maybe-installcheck-target-libgcc:
-
-.PHONY: maybe-mostlyclean-target-libgcc mostlyclean-target-libgcc
-maybe-mostlyclean-target-libgcc:
-
-.PHONY: maybe-clean-target-libgcc clean-target-libgcc
-maybe-clean-target-libgcc:
-
-.PHONY: maybe-distclean-target-libgcc distclean-target-libgcc
-maybe-distclean-target-libgcc:
-
-.PHONY: maybe-maintainer-clean-target-libgcc maintainer-clean-target-libgcc
-maybe-maintainer-clean-target-libgcc:
-
-
-
-
-
-.PHONY: configure-target-libbacktrace maybe-configure-target-libbacktrace
-maybe-configure-target-libbacktrace:
-
-
-
-
-
-.PHONY: all-target-libbacktrace maybe-all-target-libbacktrace
-maybe-all-target-libbacktrace:
-
-
-
-
-
-.PHONY: check-target-libbacktrace maybe-check-target-libbacktrace
-maybe-check-target-libbacktrace:
-
-.PHONY: install-target-libbacktrace maybe-install-target-libbacktrace
-maybe-install-target-libbacktrace:
-
-.PHONY: install-strip-target-libbacktrace maybe-install-strip-target-libbacktrace
-maybe-install-strip-target-libbacktrace:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libbacktrace info-target-libbacktrace
-maybe-info-target-libbacktrace:
-
-.PHONY: maybe-dvi-target-libbacktrace dvi-target-libbacktrace
-maybe-dvi-target-libbacktrace:
-
-.PHONY: maybe-pdf-target-libbacktrace pdf-target-libbacktrace
-maybe-pdf-target-libbacktrace:
-
-.PHONY: maybe-html-target-libbacktrace html-target-libbacktrace
-maybe-html-target-libbacktrace:
-
-.PHONY: maybe-TAGS-target-libbacktrace TAGS-target-libbacktrace
-maybe-TAGS-target-libbacktrace:
-
-.PHONY: maybe-install-info-target-libbacktrace install-info-target-libbacktrace
-maybe-install-info-target-libbacktrace:
-
-.PHONY: maybe-install-pdf-target-libbacktrace install-pdf-target-libbacktrace
-maybe-install-pdf-target-libbacktrace:
-
-.PHONY: maybe-install-html-target-libbacktrace install-html-target-libbacktrace
-maybe-install-html-target-libbacktrace:
-
-.PHONY: maybe-installcheck-target-libbacktrace installcheck-target-libbacktrace
-maybe-installcheck-target-libbacktrace:
-
-.PHONY: maybe-mostlyclean-target-libbacktrace mostlyclean-target-libbacktrace
-maybe-mostlyclean-target-libbacktrace:
-
-.PHONY: maybe-clean-target-libbacktrace clean-target-libbacktrace
-maybe-clean-target-libbacktrace:
-
-.PHONY: maybe-distclean-target-libbacktrace distclean-target-libbacktrace
-maybe-distclean-target-libbacktrace:
-
-.PHONY: maybe-maintainer-clean-target-libbacktrace maintainer-clean-target-libbacktrace
-maybe-maintainer-clean-target-libbacktrace:
-
-
-
-
-
-.PHONY: configure-target-libquadmath maybe-configure-target-libquadmath
-maybe-configure-target-libquadmath:
-
-
-
-
-
-.PHONY: all-target-libquadmath maybe-all-target-libquadmath
-maybe-all-target-libquadmath:
-
-
-
-
-
-.PHONY: check-target-libquadmath maybe-check-target-libquadmath
-maybe-check-target-libquadmath:
-
-.PHONY: install-target-libquadmath maybe-install-target-libquadmath
-maybe-install-target-libquadmath:
-
-.PHONY: install-strip-target-libquadmath maybe-install-strip-target-libquadmath
-maybe-install-strip-target-libquadmath:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libquadmath info-target-libquadmath
-maybe-info-target-libquadmath:
-
-.PHONY: maybe-dvi-target-libquadmath dvi-target-libquadmath
-maybe-dvi-target-libquadmath:
-
-.PHONY: maybe-pdf-target-libquadmath pdf-target-libquadmath
-maybe-pdf-target-libquadmath:
-
-.PHONY: maybe-html-target-libquadmath html-target-libquadmath
-maybe-html-target-libquadmath:
-
-.PHONY: maybe-TAGS-target-libquadmath TAGS-target-libquadmath
-maybe-TAGS-target-libquadmath:
-
-.PHONY: maybe-install-info-target-libquadmath install-info-target-libquadmath
-maybe-install-info-target-libquadmath:
-
-.PHONY: maybe-install-pdf-target-libquadmath install-pdf-target-libquadmath
-maybe-install-pdf-target-libquadmath:
-
-.PHONY: maybe-install-html-target-libquadmath install-html-target-libquadmath
-maybe-install-html-target-libquadmath:
-
-.PHONY: maybe-installcheck-target-libquadmath installcheck-target-libquadmath
-maybe-installcheck-target-libquadmath:
-
-.PHONY: maybe-mostlyclean-target-libquadmath mostlyclean-target-libquadmath
-maybe-mostlyclean-target-libquadmath:
-
-.PHONY: maybe-clean-target-libquadmath clean-target-libquadmath
-maybe-clean-target-libquadmath:
-
-.PHONY: maybe-distclean-target-libquadmath distclean-target-libquadmath
-maybe-distclean-target-libquadmath:
-
-.PHONY: maybe-maintainer-clean-target-libquadmath maintainer-clean-target-libquadmath
-maybe-maintainer-clean-target-libquadmath:
-
-
-
-
-
-.PHONY: configure-target-libgfortran maybe-configure-target-libgfortran
-maybe-configure-target-libgfortran:
-
-
-
-
-
-.PHONY: all-target-libgfortran maybe-all-target-libgfortran
-maybe-all-target-libgfortran:
-
-
-
-
-
-.PHONY: check-target-libgfortran maybe-check-target-libgfortran
-maybe-check-target-libgfortran:
-
-.PHONY: install-target-libgfortran maybe-install-target-libgfortran
-maybe-install-target-libgfortran:
-
-.PHONY: install-strip-target-libgfortran maybe-install-strip-target-libgfortran
-maybe-install-strip-target-libgfortran:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libgfortran info-target-libgfortran
-maybe-info-target-libgfortran:
-
-.PHONY: maybe-dvi-target-libgfortran dvi-target-libgfortran
-maybe-dvi-target-libgfortran:
-
-.PHONY: maybe-pdf-target-libgfortran pdf-target-libgfortran
-maybe-pdf-target-libgfortran:
-
-.PHONY: maybe-html-target-libgfortran html-target-libgfortran
-maybe-html-target-libgfortran:
-
-.PHONY: maybe-TAGS-target-libgfortran TAGS-target-libgfortran
-maybe-TAGS-target-libgfortran:
-
-.PHONY: maybe-install-info-target-libgfortran install-info-target-libgfortran
-maybe-install-info-target-libgfortran:
-
-.PHONY: maybe-install-pdf-target-libgfortran install-pdf-target-libgfortran
-maybe-install-pdf-target-libgfortran:
-
-.PHONY: maybe-install-html-target-libgfortran install-html-target-libgfortran
-maybe-install-html-target-libgfortran:
-
-.PHONY: maybe-installcheck-target-libgfortran installcheck-target-libgfortran
-maybe-installcheck-target-libgfortran:
-
-.PHONY: maybe-mostlyclean-target-libgfortran mostlyclean-target-libgfortran
-maybe-mostlyclean-target-libgfortran:
-
-.PHONY: maybe-clean-target-libgfortran clean-target-libgfortran
-maybe-clean-target-libgfortran:
-
-.PHONY: maybe-distclean-target-libgfortran distclean-target-libgfortran
-maybe-distclean-target-libgfortran:
-
-.PHONY: maybe-maintainer-clean-target-libgfortran maintainer-clean-target-libgfortran
-maybe-maintainer-clean-target-libgfortran:
-
-
-
-
-
-.PHONY: configure-target-libobjc maybe-configure-target-libobjc
-maybe-configure-target-libobjc:
-
-
-
-
-
-.PHONY: all-target-libobjc maybe-all-target-libobjc
-maybe-all-target-libobjc:
-
-
-
-
-
-.PHONY: check-target-libobjc maybe-check-target-libobjc
-maybe-check-target-libobjc:
-
-.PHONY: install-target-libobjc maybe-install-target-libobjc
-maybe-install-target-libobjc:
-
-.PHONY: install-strip-target-libobjc maybe-install-strip-target-libobjc
-maybe-install-strip-target-libobjc:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libobjc info-target-libobjc
-maybe-info-target-libobjc:
-
-.PHONY: maybe-dvi-target-libobjc dvi-target-libobjc
-maybe-dvi-target-libobjc:
-
-.PHONY: maybe-pdf-target-libobjc pdf-target-libobjc
-maybe-pdf-target-libobjc:
-
-.PHONY: maybe-html-target-libobjc html-target-libobjc
-maybe-html-target-libobjc:
-
-.PHONY: maybe-TAGS-target-libobjc TAGS-target-libobjc
-maybe-TAGS-target-libobjc:
-
-.PHONY: maybe-install-info-target-libobjc install-info-target-libobjc
-maybe-install-info-target-libobjc:
-
-.PHONY: maybe-install-pdf-target-libobjc install-pdf-target-libobjc
-maybe-install-pdf-target-libobjc:
-
-.PHONY: maybe-install-html-target-libobjc install-html-target-libobjc
-maybe-install-html-target-libobjc:
-
-.PHONY: maybe-installcheck-target-libobjc installcheck-target-libobjc
-maybe-installcheck-target-libobjc:
-
-.PHONY: maybe-mostlyclean-target-libobjc mostlyclean-target-libobjc
-maybe-mostlyclean-target-libobjc:
-
-.PHONY: maybe-clean-target-libobjc clean-target-libobjc
-maybe-clean-target-libobjc:
-
-.PHONY: maybe-distclean-target-libobjc distclean-target-libobjc
-maybe-distclean-target-libobjc:
-
-.PHONY: maybe-maintainer-clean-target-libobjc maintainer-clean-target-libobjc
-maybe-maintainer-clean-target-libobjc:
-
-
-
-
-
-.PHONY: configure-target-libgo maybe-configure-target-libgo
-maybe-configure-target-libgo:
-
-
-
-
-
-.PHONY: all-target-libgo maybe-all-target-libgo
-maybe-all-target-libgo:
-
-
-
-
-
-.PHONY: check-target-libgo maybe-check-target-libgo
-maybe-check-target-libgo:
-
-.PHONY: install-target-libgo maybe-install-target-libgo
-maybe-install-target-libgo:
-
-.PHONY: install-strip-target-libgo maybe-install-strip-target-libgo
-maybe-install-strip-target-libgo:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libgo info-target-libgo
-maybe-info-target-libgo:
-
-.PHONY: maybe-dvi-target-libgo dvi-target-libgo
-maybe-dvi-target-libgo:
-
-.PHONY: maybe-pdf-target-libgo pdf-target-libgo
-maybe-pdf-target-libgo:
-
-.PHONY: maybe-html-target-libgo html-target-libgo
-maybe-html-target-libgo:
-
-.PHONY: maybe-TAGS-target-libgo TAGS-target-libgo
-maybe-TAGS-target-libgo:
-
-.PHONY: maybe-install-info-target-libgo install-info-target-libgo
-maybe-install-info-target-libgo:
-
-.PHONY: maybe-install-pdf-target-libgo install-pdf-target-libgo
-maybe-install-pdf-target-libgo:
-
-.PHONY: maybe-install-html-target-libgo install-html-target-libgo
-maybe-install-html-target-libgo:
-
-.PHONY: maybe-installcheck-target-libgo installcheck-target-libgo
-maybe-installcheck-target-libgo:
-
-.PHONY: maybe-mostlyclean-target-libgo mostlyclean-target-libgo
-maybe-mostlyclean-target-libgo:
-
-.PHONY: maybe-clean-target-libgo clean-target-libgo
-maybe-clean-target-libgo:
-
-.PHONY: maybe-distclean-target-libgo distclean-target-libgo
-maybe-distclean-target-libgo:
-
-.PHONY: maybe-maintainer-clean-target-libgo maintainer-clean-target-libgo
-maybe-maintainer-clean-target-libgo:
-
-
-
-
-
-.PHONY: configure-target-libtermcap maybe-configure-target-libtermcap
-maybe-configure-target-libtermcap:
-
-
-
-
-
-.PHONY: all-target-libtermcap maybe-all-target-libtermcap
-maybe-all-target-libtermcap:
-
-
-
-
-
-.PHONY: check-target-libtermcap maybe-check-target-libtermcap
-maybe-check-target-libtermcap:
-
-.PHONY: install-target-libtermcap maybe-install-target-libtermcap
-maybe-install-target-libtermcap:
-
-.PHONY: install-strip-target-libtermcap maybe-install-strip-target-libtermcap
-maybe-install-strip-target-libtermcap:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libtermcap info-target-libtermcap
-maybe-info-target-libtermcap:
-
-.PHONY: maybe-dvi-target-libtermcap dvi-target-libtermcap
-maybe-dvi-target-libtermcap:
-
-.PHONY: maybe-pdf-target-libtermcap pdf-target-libtermcap
-maybe-pdf-target-libtermcap:
-
-.PHONY: maybe-html-target-libtermcap html-target-libtermcap
-maybe-html-target-libtermcap:
-
-.PHONY: maybe-TAGS-target-libtermcap TAGS-target-libtermcap
-maybe-TAGS-target-libtermcap:
-
-.PHONY: maybe-install-info-target-libtermcap install-info-target-libtermcap
-maybe-install-info-target-libtermcap:
-
-.PHONY: maybe-install-pdf-target-libtermcap install-pdf-target-libtermcap
-maybe-install-pdf-target-libtermcap:
-
-.PHONY: maybe-install-html-target-libtermcap install-html-target-libtermcap
-maybe-install-html-target-libtermcap:
-
-.PHONY: maybe-installcheck-target-libtermcap installcheck-target-libtermcap
-maybe-installcheck-target-libtermcap:
-
-.PHONY: maybe-mostlyclean-target-libtermcap mostlyclean-target-libtermcap
-maybe-mostlyclean-target-libtermcap:
-
-.PHONY: maybe-clean-target-libtermcap clean-target-libtermcap
-maybe-clean-target-libtermcap:
-
-.PHONY: maybe-distclean-target-libtermcap distclean-target-libtermcap
-maybe-distclean-target-libtermcap:
-
-.PHONY: maybe-maintainer-clean-target-libtermcap maintainer-clean-target-libtermcap
-maybe-maintainer-clean-target-libtermcap:
-
-
-
-
-
-.PHONY: configure-target-winsup maybe-configure-target-winsup
-maybe-configure-target-winsup:
-
-
-
-
-
-.PHONY: all-target-winsup maybe-all-target-winsup
-maybe-all-target-winsup:
-
-
-
-
-
-.PHONY: check-target-winsup maybe-check-target-winsup
-maybe-check-target-winsup:
-
-.PHONY: install-target-winsup maybe-install-target-winsup
-maybe-install-target-winsup:
-
-.PHONY: install-strip-target-winsup maybe-install-strip-target-winsup
-maybe-install-strip-target-winsup:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-winsup info-target-winsup
-maybe-info-target-winsup:
-
-.PHONY: maybe-dvi-target-winsup dvi-target-winsup
-maybe-dvi-target-winsup:
-
-.PHONY: maybe-pdf-target-winsup pdf-target-winsup
-maybe-pdf-target-winsup:
-
-.PHONY: maybe-html-target-winsup html-target-winsup
-maybe-html-target-winsup:
-
-.PHONY: maybe-TAGS-target-winsup TAGS-target-winsup
-maybe-TAGS-target-winsup:
-
-.PHONY: maybe-install-info-target-winsup install-info-target-winsup
-maybe-install-info-target-winsup:
-
-.PHONY: maybe-install-pdf-target-winsup install-pdf-target-winsup
-maybe-install-pdf-target-winsup:
-
-.PHONY: maybe-install-html-target-winsup install-html-target-winsup
-maybe-install-html-target-winsup:
-
-.PHONY: maybe-installcheck-target-winsup installcheck-target-winsup
-maybe-installcheck-target-winsup:
-
-.PHONY: maybe-mostlyclean-target-winsup mostlyclean-target-winsup
-maybe-mostlyclean-target-winsup:
-
-.PHONY: maybe-clean-target-winsup clean-target-winsup
-maybe-clean-target-winsup:
-
-.PHONY: maybe-distclean-target-winsup distclean-target-winsup
-maybe-distclean-target-winsup:
-
-.PHONY: maybe-maintainer-clean-target-winsup maintainer-clean-target-winsup
-maybe-maintainer-clean-target-winsup:
-
-
-
-
-
-.PHONY: configure-target-libgloss maybe-configure-target-libgloss
-maybe-configure-target-libgloss:
-
-
-
-
-
-.PHONY: all-target-libgloss maybe-all-target-libgloss
-maybe-all-target-libgloss:
-
-
-
-
-
-.PHONY: check-target-libgloss maybe-check-target-libgloss
-maybe-check-target-libgloss:
-
-.PHONY: install-target-libgloss maybe-install-target-libgloss
-maybe-install-target-libgloss:
-
-.PHONY: install-strip-target-libgloss maybe-install-strip-target-libgloss
-maybe-install-strip-target-libgloss:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libgloss info-target-libgloss
-maybe-info-target-libgloss:
-
-.PHONY: maybe-dvi-target-libgloss dvi-target-libgloss
-maybe-dvi-target-libgloss:
-
-.PHONY: maybe-pdf-target-libgloss pdf-target-libgloss
-maybe-pdf-target-libgloss:
-
-.PHONY: maybe-html-target-libgloss html-target-libgloss
-maybe-html-target-libgloss:
-
-.PHONY: maybe-TAGS-target-libgloss TAGS-target-libgloss
-maybe-TAGS-target-libgloss:
-
-.PHONY: maybe-install-info-target-libgloss install-info-target-libgloss
-maybe-install-info-target-libgloss:
-
-.PHONY: maybe-install-pdf-target-libgloss install-pdf-target-libgloss
-maybe-install-pdf-target-libgloss:
-
-.PHONY: maybe-install-html-target-libgloss install-html-target-libgloss
-maybe-install-html-target-libgloss:
-
-.PHONY: maybe-installcheck-target-libgloss installcheck-target-libgloss
-maybe-installcheck-target-libgloss:
-
-.PHONY: maybe-mostlyclean-target-libgloss mostlyclean-target-libgloss
-maybe-mostlyclean-target-libgloss:
-
-.PHONY: maybe-clean-target-libgloss clean-target-libgloss
-maybe-clean-target-libgloss:
-
-.PHONY: maybe-distclean-target-libgloss distclean-target-libgloss
-maybe-distclean-target-libgloss:
-
-.PHONY: maybe-maintainer-clean-target-libgloss maintainer-clean-target-libgloss
-maybe-maintainer-clean-target-libgloss:
-
-
-
-
-
-.PHONY: configure-target-libffi maybe-configure-target-libffi
-maybe-configure-target-libffi:
-
-
-
-
-
-.PHONY: all-target-libffi maybe-all-target-libffi
-maybe-all-target-libffi:
-
-
-
-
-
-.PHONY: check-target-libffi maybe-check-target-libffi
-maybe-check-target-libffi:
-
-.PHONY: install-target-libffi maybe-install-target-libffi
-maybe-install-target-libffi:
-
-.PHONY: install-strip-target-libffi maybe-install-strip-target-libffi
-maybe-install-strip-target-libffi:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libffi info-target-libffi
-maybe-info-target-libffi:
-
-.PHONY: maybe-dvi-target-libffi dvi-target-libffi
-maybe-dvi-target-libffi:
-
-.PHONY: maybe-pdf-target-libffi pdf-target-libffi
-maybe-pdf-target-libffi:
-
-.PHONY: maybe-html-target-libffi html-target-libffi
-maybe-html-target-libffi:
-
-.PHONY: maybe-TAGS-target-libffi TAGS-target-libffi
-maybe-TAGS-target-libffi:
-
-.PHONY: maybe-install-info-target-libffi install-info-target-libffi
-maybe-install-info-target-libffi:
-
-.PHONY: maybe-install-pdf-target-libffi install-pdf-target-libffi
-maybe-install-pdf-target-libffi:
-
-.PHONY: maybe-install-html-target-libffi install-html-target-libffi
-maybe-install-html-target-libffi:
-
-.PHONY: maybe-installcheck-target-libffi installcheck-target-libffi
-maybe-installcheck-target-libffi:
-
-.PHONY: maybe-mostlyclean-target-libffi mostlyclean-target-libffi
-maybe-mostlyclean-target-libffi:
-
-.PHONY: maybe-clean-target-libffi clean-target-libffi
-maybe-clean-target-libffi:
-
-.PHONY: maybe-distclean-target-libffi distclean-target-libffi
-maybe-distclean-target-libffi:
-
-.PHONY: maybe-maintainer-clean-target-libffi maintainer-clean-target-libffi
-maybe-maintainer-clean-target-libffi:
-
-
-
-
-
-.PHONY: configure-target-zlib maybe-configure-target-zlib
-maybe-configure-target-zlib:
-
-
-
-
-
-.PHONY: all-target-zlib maybe-all-target-zlib
-maybe-all-target-zlib:
-
-
-
-
-
-.PHONY: check-target-zlib maybe-check-target-zlib
-maybe-check-target-zlib:
-
-.PHONY: install-target-zlib maybe-install-target-zlib
-maybe-install-target-zlib:
-
-.PHONY: install-strip-target-zlib maybe-install-strip-target-zlib
-maybe-install-strip-target-zlib:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-zlib info-target-zlib
-maybe-info-target-zlib:
-
-.PHONY: maybe-dvi-target-zlib dvi-target-zlib
-maybe-dvi-target-zlib:
-
-.PHONY: maybe-pdf-target-zlib pdf-target-zlib
-maybe-pdf-target-zlib:
-
-.PHONY: maybe-html-target-zlib html-target-zlib
-maybe-html-target-zlib:
-
-.PHONY: maybe-TAGS-target-zlib TAGS-target-zlib
-maybe-TAGS-target-zlib:
-
-.PHONY: maybe-install-info-target-zlib install-info-target-zlib
-maybe-install-info-target-zlib:
-
-.PHONY: maybe-install-pdf-target-zlib install-pdf-target-zlib
-maybe-install-pdf-target-zlib:
-
-.PHONY: maybe-install-html-target-zlib install-html-target-zlib
-maybe-install-html-target-zlib:
-
-.PHONY: maybe-installcheck-target-zlib installcheck-target-zlib
-maybe-installcheck-target-zlib:
-
-.PHONY: maybe-mostlyclean-target-zlib mostlyclean-target-zlib
-maybe-mostlyclean-target-zlib:
-
-.PHONY: maybe-clean-target-zlib clean-target-zlib
-maybe-clean-target-zlib:
-
-.PHONY: maybe-distclean-target-zlib distclean-target-zlib
-maybe-distclean-target-zlib:
-
-.PHONY: maybe-maintainer-clean-target-zlib maintainer-clean-target-zlib
-maybe-maintainer-clean-target-zlib:
-
-
-
-
-
-.PHONY: configure-target-rda maybe-configure-target-rda
-maybe-configure-target-rda:
-
-
-
-
-
-.PHONY: all-target-rda maybe-all-target-rda
-maybe-all-target-rda:
-
-
-
-
-
-.PHONY: check-target-rda maybe-check-target-rda
-maybe-check-target-rda:
-
-.PHONY: install-target-rda maybe-install-target-rda
-maybe-install-target-rda:
-
-.PHONY: install-strip-target-rda maybe-install-strip-target-rda
-maybe-install-strip-target-rda:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-rda info-target-rda
-maybe-info-target-rda:
-
-.PHONY: maybe-dvi-target-rda dvi-target-rda
-maybe-dvi-target-rda:
-
-.PHONY: maybe-pdf-target-rda pdf-target-rda
-maybe-pdf-target-rda:
-
-.PHONY: maybe-html-target-rda html-target-rda
-maybe-html-target-rda:
-
-.PHONY: maybe-TAGS-target-rda TAGS-target-rda
-maybe-TAGS-target-rda:
-
-.PHONY: maybe-install-info-target-rda install-info-target-rda
-maybe-install-info-target-rda:
-
-.PHONY: maybe-install-pdf-target-rda install-pdf-target-rda
-maybe-install-pdf-target-rda:
-
-.PHONY: maybe-install-html-target-rda install-html-target-rda
-maybe-install-html-target-rda:
-
-.PHONY: maybe-installcheck-target-rda installcheck-target-rda
-maybe-installcheck-target-rda:
-
-.PHONY: maybe-mostlyclean-target-rda mostlyclean-target-rda
-maybe-mostlyclean-target-rda:
-
-.PHONY: maybe-clean-target-rda clean-target-rda
-maybe-clean-target-rda:
-
-.PHONY: maybe-distclean-target-rda distclean-target-rda
-maybe-distclean-target-rda:
-
-.PHONY: maybe-maintainer-clean-target-rda maintainer-clean-target-rda
-maybe-maintainer-clean-target-rda:
-
-
-
-
-
-.PHONY: configure-target-libada maybe-configure-target-libada
-maybe-configure-target-libada:
-
-
-
-
-
-.PHONY: all-target-libada maybe-all-target-libada
-maybe-all-target-libada:
-
-
-
-
-
-.PHONY: check-target-libada maybe-check-target-libada
-maybe-check-target-libada:
-
-.PHONY: install-target-libada maybe-install-target-libada
-maybe-install-target-libada:
-
-.PHONY: install-strip-target-libada maybe-install-strip-target-libada
-maybe-install-strip-target-libada:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libada info-target-libada
-maybe-info-target-libada:
-
-.PHONY: maybe-dvi-target-libada dvi-target-libada
-maybe-dvi-target-libada:
-
-.PHONY: maybe-pdf-target-libada pdf-target-libada
-maybe-pdf-target-libada:
-
-.PHONY: maybe-html-target-libada html-target-libada
-maybe-html-target-libada:
-
-.PHONY: maybe-TAGS-target-libada TAGS-target-libada
-maybe-TAGS-target-libada:
-
-.PHONY: maybe-install-info-target-libada install-info-target-libada
-maybe-install-info-target-libada:
-
-.PHONY: maybe-install-pdf-target-libada install-pdf-target-libada
-maybe-install-pdf-target-libada:
-
-.PHONY: maybe-install-html-target-libada install-html-target-libada
-maybe-install-html-target-libada:
-
-.PHONY: maybe-installcheck-target-libada installcheck-target-libada
-maybe-installcheck-target-libada:
-
-.PHONY: maybe-mostlyclean-target-libada mostlyclean-target-libada
-maybe-mostlyclean-target-libada:
-
-.PHONY: maybe-clean-target-libada clean-target-libada
-maybe-clean-target-libada:
-
-.PHONY: maybe-distclean-target-libada distclean-target-libada
-maybe-distclean-target-libada:
-
-.PHONY: maybe-maintainer-clean-target-libada maintainer-clean-target-libada
-maybe-maintainer-clean-target-libada:
-
-
-
-
-
-.PHONY: configure-target-libgomp maybe-configure-target-libgomp
-maybe-configure-target-libgomp:
-
-
-
-.PHONY: configure-stage1-target-libgomp maybe-configure-stage1-target-libgomp
-maybe-configure-stage1-target-libgomp:
-
-.PHONY: configure-stage2-target-libgomp maybe-configure-stage2-target-libgomp
-maybe-configure-stage2-target-libgomp:
-
-.PHONY: configure-stage3-target-libgomp maybe-configure-stage3-target-libgomp
-maybe-configure-stage3-target-libgomp:
-
-.PHONY: configure-stage4-target-libgomp maybe-configure-stage4-target-libgomp
-maybe-configure-stage4-target-libgomp:
-
-.PHONY: configure-stageprofile-target-libgomp maybe-configure-stageprofile-target-libgomp
-maybe-configure-stageprofile-target-libgomp:
-
-.PHONY: configure-stagefeedback-target-libgomp maybe-configure-stagefeedback-target-libgomp
-maybe-configure-stagefeedback-target-libgomp:
-
-
-
-
-
-.PHONY: all-target-libgomp maybe-all-target-libgomp
-maybe-all-target-libgomp:
-
-
-
-.PHONY: all-stage1-target-libgomp maybe-all-stage1-target-libgomp
-.PHONY: clean-stage1-target-libgomp maybe-clean-stage1-target-libgomp
-maybe-all-stage1-target-libgomp:
-maybe-clean-stage1-target-libgomp:
-
-
-.PHONY: all-stage2-target-libgomp maybe-all-stage2-target-libgomp
-.PHONY: clean-stage2-target-libgomp maybe-clean-stage2-target-libgomp
-maybe-all-stage2-target-libgomp:
-maybe-clean-stage2-target-libgomp:
-
-
-.PHONY: all-stage3-target-libgomp maybe-all-stage3-target-libgomp
-.PHONY: clean-stage3-target-libgomp maybe-clean-stage3-target-libgomp
-maybe-all-stage3-target-libgomp:
-maybe-clean-stage3-target-libgomp:
-
-
-.PHONY: all-stage4-target-libgomp maybe-all-stage4-target-libgomp
-.PHONY: clean-stage4-target-libgomp maybe-clean-stage4-target-libgomp
-maybe-all-stage4-target-libgomp:
-maybe-clean-stage4-target-libgomp:
-
-
-.PHONY: all-stageprofile-target-libgomp maybe-all-stageprofile-target-libgomp
-.PHONY: clean-stageprofile-target-libgomp maybe-clean-stageprofile-target-libgomp
-maybe-all-stageprofile-target-libgomp:
-maybe-clean-stageprofile-target-libgomp:
-
-
-.PHONY: all-stagefeedback-target-libgomp maybe-all-stagefeedback-target-libgomp
-.PHONY: clean-stagefeedback-target-libgomp maybe-clean-stagefeedback-target-libgomp
-maybe-all-stagefeedback-target-libgomp:
-maybe-clean-stagefeedback-target-libgomp:
-
-
-
-
-
-
-.PHONY: check-target-libgomp maybe-check-target-libgomp
-maybe-check-target-libgomp:
-
-.PHONY: install-target-libgomp maybe-install-target-libgomp
-maybe-install-target-libgomp:
-
-.PHONY: install-strip-target-libgomp maybe-install-strip-target-libgomp
-maybe-install-strip-target-libgomp:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libgomp info-target-libgomp
-maybe-info-target-libgomp:
-
-.PHONY: maybe-dvi-target-libgomp dvi-target-libgomp
-maybe-dvi-target-libgomp:
-
-.PHONY: maybe-pdf-target-libgomp pdf-target-libgomp
-maybe-pdf-target-libgomp:
-
-.PHONY: maybe-html-target-libgomp html-target-libgomp
-maybe-html-target-libgomp:
-
-.PHONY: maybe-TAGS-target-libgomp TAGS-target-libgomp
-maybe-TAGS-target-libgomp:
-
-.PHONY: maybe-install-info-target-libgomp install-info-target-libgomp
-maybe-install-info-target-libgomp:
-
-.PHONY: maybe-install-pdf-target-libgomp install-pdf-target-libgomp
-maybe-install-pdf-target-libgomp:
-
-.PHONY: maybe-install-html-target-libgomp install-html-target-libgomp
-maybe-install-html-target-libgomp:
-
-.PHONY: maybe-installcheck-target-libgomp installcheck-target-libgomp
-maybe-installcheck-target-libgomp:
-
-.PHONY: maybe-mostlyclean-target-libgomp mostlyclean-target-libgomp
-maybe-mostlyclean-target-libgomp:
-
-.PHONY: maybe-clean-target-libgomp clean-target-libgomp
-maybe-clean-target-libgomp:
-
-.PHONY: maybe-distclean-target-libgomp distclean-target-libgomp
-maybe-distclean-target-libgomp:
-
-.PHONY: maybe-maintainer-clean-target-libgomp maintainer-clean-target-libgomp
-maybe-maintainer-clean-target-libgomp:
-
-
-
-
-
-.PHONY: configure-target-libitm maybe-configure-target-libitm
-maybe-configure-target-libitm:
-
-
-
-
-
-.PHONY: all-target-libitm maybe-all-target-libitm
-maybe-all-target-libitm:
-
-
-
-
-
-.PHONY: check-target-libitm maybe-check-target-libitm
-maybe-check-target-libitm:
-
-.PHONY: install-target-libitm maybe-install-target-libitm
-maybe-install-target-libitm:
-
-.PHONY: install-strip-target-libitm maybe-install-strip-target-libitm
-maybe-install-strip-target-libitm:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libitm info-target-libitm
-maybe-info-target-libitm:
-
-.PHONY: maybe-dvi-target-libitm dvi-target-libitm
-maybe-dvi-target-libitm:
-
-.PHONY: maybe-pdf-target-libitm pdf-target-libitm
-maybe-pdf-target-libitm:
-
-.PHONY: maybe-html-target-libitm html-target-libitm
-maybe-html-target-libitm:
-
-.PHONY: maybe-TAGS-target-libitm TAGS-target-libitm
-maybe-TAGS-target-libitm:
-
-.PHONY: maybe-install-info-target-libitm install-info-target-libitm
-maybe-install-info-target-libitm:
-
-.PHONY: maybe-install-pdf-target-libitm install-pdf-target-libitm
-maybe-install-pdf-target-libitm:
-
-.PHONY: maybe-install-html-target-libitm install-html-target-libitm
-maybe-install-html-target-libitm:
-
-.PHONY: maybe-installcheck-target-libitm installcheck-target-libitm
-maybe-installcheck-target-libitm:
-
-.PHONY: maybe-mostlyclean-target-libitm mostlyclean-target-libitm
-maybe-mostlyclean-target-libitm:
-
-.PHONY: maybe-clean-target-libitm clean-target-libitm
-maybe-clean-target-libitm:
-
-.PHONY: maybe-distclean-target-libitm distclean-target-libitm
-maybe-distclean-target-libitm:
-
-.PHONY: maybe-maintainer-clean-target-libitm maintainer-clean-target-libitm
-maybe-maintainer-clean-target-libitm:
-
-
-
-
-
-.PHONY: configure-target-libatomic maybe-configure-target-libatomic
-maybe-configure-target-libatomic:
-
-
-
-
-
-.PHONY: all-target-libatomic maybe-all-target-libatomic
-maybe-all-target-libatomic:
-
-
-
-
-
-.PHONY: check-target-libatomic maybe-check-target-libatomic
-maybe-check-target-libatomic:
-
-.PHONY: install-target-libatomic maybe-install-target-libatomic
-maybe-install-target-libatomic:
-
-.PHONY: install-strip-target-libatomic maybe-install-strip-target-libatomic
-maybe-install-strip-target-libatomic:
-
-# Other targets (info, dvi, pdf, etc.)
-
-.PHONY: maybe-info-target-libatomic info-target-libatomic
-maybe-info-target-libatomic:
-
-.PHONY: maybe-dvi-target-libatomic dvi-target-libatomic
-maybe-dvi-target-libatomic:
-
-.PHONY: maybe-pdf-target-libatomic pdf-target-libatomic
-maybe-pdf-target-libatomic:
-
-.PHONY: maybe-html-target-libatomic html-target-libatomic
-maybe-html-target-libatomic:
-
-.PHONY: maybe-TAGS-target-libatomic TAGS-target-libatomic
-maybe-TAGS-target-libatomic:
-
-.PHONY: maybe-install-info-target-libatomic install-info-target-libatomic
-maybe-install-info-target-libatomic:
-
-.PHONY: maybe-install-pdf-target-libatomic install-pdf-target-libatomic
-maybe-install-pdf-target-libatomic:
-
-.PHONY: maybe-install-html-target-libatomic install-html-target-libatomic
-maybe-install-html-target-libatomic:
-
-.PHONY: maybe-installcheck-target-libatomic installcheck-target-libatomic
-maybe-installcheck-target-libatomic:
-
-.PHONY: maybe-mostlyclean-target-libatomic mostlyclean-target-libatomic
-maybe-mostlyclean-target-libatomic:
-
-.PHONY: maybe-clean-target-libatomic clean-target-libatomic
-maybe-clean-target-libatomic:
-
-.PHONY: maybe-distclean-target-libatomic distclean-target-libatomic
-maybe-distclean-target-libatomic:
-
-.PHONY: maybe-maintainer-clean-target-libatomic maintainer-clean-target-libatomic
-maybe-maintainer-clean-target-libatomic:
-
-
-
-
-
-# ----------
-# GCC module
-# ----------
-
-
-
-# ---------------------
-# GCC bootstrap support
-# ---------------------
-
-# We track the current stage (the one in 'gcc') in the stage_current file.
-# stage_last instead tracks the stage that was built last. These targets
-# are dummy when toplevel bootstrap is not active.
-
-# While making host and target tools, symlinks to the final stage must be
-# there, so $(unstage) should be run at various points. To avoid excessive
-# recursive invocations of make, we "inline" them using a variable. These
-# must be referenced as ": $(MAKE) ; $(unstage)" rather than "$(unstage)"
-# to avoid warnings from the GNU Make job server.
-
-unstage = :
-stage = :
-current_stage = ""
-
-
-.PHONY: unstage stage
-unstage:
- @: $(MAKE); $(unstage)
-stage:
- @: $(MAKE); $(stage)
-
-# Disable commands for lean bootstrap.
-LEAN = false
-
-# We name the build directories for the various stages "stage1-gcc",
-# "stage2-gcc","stage3-gcc", etc.
-
-# Since the 'compare' process will fail (on debugging information) if any
-# directory names are different, we need to link the gcc directory for
-# the previous stage to a constant name ('prev-gcc'), and to make the name of
-# the build directories constant as well. For the latter, we use naked names
-# like 'gcc', because the scripts in that directory assume it. We use
-# mv on platforms where symlinks to directories do not work or are not
-# reliable.
-
-# 'touch' doesn't work right on some platforms.
-STAMP = echo timestamp >
-
-# We only want to compare .o files, so set this!
-objext = .o
-
-
-.PHONY: stage1-start stage1-end
-
-stage1-start::
- @: $(MAKE); $(stage); \
- echo stage1 > stage_current; \
- echo stage1 > stage_last; \
- $(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
- @cd $(HOST_SUBDIR); [ -d stage1-bfd ] || \
- mkdir stage1-bfd; \
- mv stage1-bfd bfd
- @cd $(HOST_SUBDIR); [ -d stage1-binutils ] || \
- mkdir stage1-binutils; \
- mv stage1-binutils binutils
- @cd $(HOST_SUBDIR); [ -d stage1-libiberty ] || \
- mkdir stage1-libiberty; \
- mv stage1-libiberty libiberty
- @[ -d stage1-$(TARGET_SUBDIR) ] || \
- mkdir stage1-$(TARGET_SUBDIR); \
- mv stage1-$(TARGET_SUBDIR) $(TARGET_SUBDIR)
-
-stage1-end::
- @if test -d $(HOST_SUBDIR)/bfd; then \
- cd $(HOST_SUBDIR); mv bfd stage1-bfd; \
- fi
- @if test -d $(HOST_SUBDIR)/binutils; then \
- cd $(HOST_SUBDIR); mv binutils stage1-binutils; \
- fi
- @if test -d $(HOST_SUBDIR)/libiberty; then \
- cd $(HOST_SUBDIR); mv libiberty stage1-libiberty; \
- fi
- @if test -d $(TARGET_SUBDIR); then \
- mv $(TARGET_SUBDIR) stage1-$(TARGET_SUBDIR); \
- fi
- rm -f stage_current
-
-# Bubble a bug fix through all the stages up to stage 1. They are
-# remade, but not reconfigured. The next stage (if any) will not be
-# reconfigured either.
-.PHONY: stage1-bubble
-stage1-bubble::
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- if test -f stage1-lean ; then \
- echo Skipping rebuild of stage1; \
- else \
- $(MAKE) stage1-start; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stage1; \
- fi
-
-.PHONY: all-stage1 clean-stage1
-do-clean: clean-stage1
-
-# FIXME: Will not need to be conditional when toplevel bootstrap is the
-# only possibility, but now it conflicts with no-bootstrap rules
-
-
-.PHONY: stage2-start stage2-end
-
-stage2-start::
- @: $(MAKE); $(stage); \
- echo stage2 > stage_current; \
- echo stage2 > stage_last; \
- $(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
- @cd $(HOST_SUBDIR); [ -d stage2-bfd ] || \
- mkdir stage2-bfd; \
- mv stage2-bfd bfd; \
- mv stage1-bfd prev-bfd || test -f stage1-lean
- @cd $(HOST_SUBDIR); [ -d stage2-binutils ] || \
- mkdir stage2-binutils; \
- mv stage2-binutils binutils; \
- mv stage1-binutils prev-binutils || test -f stage1-lean
- @cd $(HOST_SUBDIR); [ -d stage2-libiberty ] || \
- mkdir stage2-libiberty; \
- mv stage2-libiberty libiberty; \
- mv stage1-libiberty prev-libiberty || test -f stage1-lean
- @[ -d stage2-$(TARGET_SUBDIR) ] || \
- mkdir stage2-$(TARGET_SUBDIR); \
- mv stage2-$(TARGET_SUBDIR) $(TARGET_SUBDIR); \
- mv stage1-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage1-lean
-
-stage2-end::
- @if test -d $(HOST_SUBDIR)/bfd; then \
- cd $(HOST_SUBDIR); mv bfd stage2-bfd; \
- mv prev-bfd stage1-bfd; : ; \
- fi
- @if test -d $(HOST_SUBDIR)/binutils; then \
- cd $(HOST_SUBDIR); mv binutils stage2-binutils; \
- mv prev-binutils stage1-binutils; : ; \
- fi
- @if test -d $(HOST_SUBDIR)/libiberty; then \
- cd $(HOST_SUBDIR); mv libiberty stage2-libiberty; \
- mv prev-libiberty stage1-libiberty; : ; \
- fi
- @if test -d $(TARGET_SUBDIR); then \
- mv $(TARGET_SUBDIR) stage2-$(TARGET_SUBDIR); \
- mv prev-$(TARGET_SUBDIR) stage1-$(TARGET_SUBDIR); : ; \
- fi
- rm -f stage_current
-
-# Bubble a bug fix through all the stages up to stage 2. They are
-# remade, but not reconfigured. The next stage (if any) will not be
-# reconfigured either.
-.PHONY: stage2-bubble
-stage2-bubble:: stage1-bubble
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- if test -f stage2-lean || test -f stage1-lean ; then \
- echo Skipping rebuild of stage2; \
- else \
- $(MAKE) stage2-start; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stage2; \
- fi
-
-.PHONY: all-stage2 clean-stage2
-do-clean: clean-stage2
-
-# FIXME: Will not need to be conditional when toplevel bootstrap is the
-# only possibility, but now it conflicts with no-bootstrap rules
-
-
-.PHONY: stage3-start stage3-end
-
-stage3-start::
- @: $(MAKE); $(stage); \
- echo stage3 > stage_current; \
- echo stage3 > stage_last; \
- $(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
- @cd $(HOST_SUBDIR); [ -d stage3-bfd ] || \
- mkdir stage3-bfd; \
- mv stage3-bfd bfd; \
- mv stage2-bfd prev-bfd || test -f stage2-lean
- @cd $(HOST_SUBDIR); [ -d stage3-binutils ] || \
- mkdir stage3-binutils; \
- mv stage3-binutils binutils; \
- mv stage2-binutils prev-binutils || test -f stage2-lean
- @cd $(HOST_SUBDIR); [ -d stage3-libiberty ] || \
- mkdir stage3-libiberty; \
- mv stage3-libiberty libiberty; \
- mv stage2-libiberty prev-libiberty || test -f stage2-lean
- @[ -d stage3-$(TARGET_SUBDIR) ] || \
- mkdir stage3-$(TARGET_SUBDIR); \
- mv stage3-$(TARGET_SUBDIR) $(TARGET_SUBDIR); \
- mv stage2-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage2-lean
-
-stage3-end::
- @if test -d $(HOST_SUBDIR)/bfd; then \
- cd $(HOST_SUBDIR); mv bfd stage3-bfd; \
- mv prev-bfd stage2-bfd; : ; \
- fi
- @if test -d $(HOST_SUBDIR)/binutils; then \
- cd $(HOST_SUBDIR); mv binutils stage3-binutils; \
- mv prev-binutils stage2-binutils; : ; \
- fi
- @if test -d $(HOST_SUBDIR)/libiberty; then \
- cd $(HOST_SUBDIR); mv libiberty stage3-libiberty; \
- mv prev-libiberty stage2-libiberty; : ; \
- fi
- @if test -d $(TARGET_SUBDIR); then \
- mv $(TARGET_SUBDIR) stage3-$(TARGET_SUBDIR); \
- mv prev-$(TARGET_SUBDIR) stage2-$(TARGET_SUBDIR); : ; \
- fi
- rm -f stage_current
-
-# Bubble a bug fix through all the stages up to stage 3. They are
-# remade, but not reconfigured. The next stage (if any) will not be
-# reconfigured either.
-.PHONY: stage3-bubble
-stage3-bubble:: stage2-bubble
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- if test -f stage3-lean || test -f stage2-lean ; then \
- echo Skipping rebuild of stage3; \
- else \
- $(MAKE) stage3-start; \
- if $(LEAN); then \
- rm -rf stage1-*; \
- $(STAMP) stage1-lean; \
- fi; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stage3; \
- fi
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) compare
-
-.PHONY: all-stage3 clean-stage3
-do-clean: clean-stage3
-
-# FIXME: Will not need to be conditional when toplevel bootstrap is the
-# only possibility, but now it conflicts with no-bootstrap rules
-
-
-.PHONY: stage4-start stage4-end
-
-stage4-start::
- @: $(MAKE); $(stage); \
- echo stage4 > stage_current; \
- echo stage4 > stage_last; \
- $(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
- @cd $(HOST_SUBDIR); [ -d stage4-bfd ] || \
- mkdir stage4-bfd; \
- mv stage4-bfd bfd; \
- mv stage3-bfd prev-bfd || test -f stage3-lean
- @cd $(HOST_SUBDIR); [ -d stage4-binutils ] || \
- mkdir stage4-binutils; \
- mv stage4-binutils binutils; \
- mv stage3-binutils prev-binutils || test -f stage3-lean
- @cd $(HOST_SUBDIR); [ -d stage4-libiberty ] || \
- mkdir stage4-libiberty; \
- mv stage4-libiberty libiberty; \
- mv stage3-libiberty prev-libiberty || test -f stage3-lean
- @[ -d stage4-$(TARGET_SUBDIR) ] || \
- mkdir stage4-$(TARGET_SUBDIR); \
- mv stage4-$(TARGET_SUBDIR) $(TARGET_SUBDIR); \
- mv stage3-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage3-lean
-
-stage4-end::
- @if test -d $(HOST_SUBDIR)/bfd; then \
- cd $(HOST_SUBDIR); mv bfd stage4-bfd; \
- mv prev-bfd stage3-bfd; : ; \
- fi
- @if test -d $(HOST_SUBDIR)/binutils; then \
- cd $(HOST_SUBDIR); mv binutils stage4-binutils; \
- mv prev-binutils stage3-binutils; : ; \
- fi
- @if test -d $(HOST_SUBDIR)/libiberty; then \
- cd $(HOST_SUBDIR); mv libiberty stage4-libiberty; \
- mv prev-libiberty stage3-libiberty; : ; \
- fi
- @if test -d $(TARGET_SUBDIR); then \
- mv $(TARGET_SUBDIR) stage4-$(TARGET_SUBDIR); \
- mv prev-$(TARGET_SUBDIR) stage3-$(TARGET_SUBDIR); : ; \
- fi
- rm -f stage_current
-
-# Bubble a bug fix through all the stages up to stage 4. They are
-# remade, but not reconfigured. The next stage (if any) will not be
-# reconfigured either.
-.PHONY: stage4-bubble
-stage4-bubble:: stage3-bubble
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- if test -f stage4-lean || test -f stage3-lean ; then \
- echo Skipping rebuild of stage4; \
- else \
- $(MAKE) stage4-start; \
- if $(LEAN); then \
- rm -rf stage2-*; \
- $(STAMP) stage2-lean; \
- fi; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stage4; \
- fi
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) compare3
-
-.PHONY: all-stage4 clean-stage4
-do-clean: clean-stage4
-
-# FIXME: Will not need to be conditional when toplevel bootstrap is the
-# only possibility, but now it conflicts with no-bootstrap rules
-
-
-.PHONY: stageprofile-start stageprofile-end
-
-stageprofile-start::
- @: $(MAKE); $(stage); \
- echo stageprofile > stage_current; \
- echo stageprofile > stage_last; \
- $(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
- @cd $(HOST_SUBDIR); [ -d stageprofile-bfd ] || \
- mkdir stageprofile-bfd; \
- mv stageprofile-bfd bfd; \
- mv stage1-bfd prev-bfd || test -f stage1-lean
- @cd $(HOST_SUBDIR); [ -d stageprofile-binutils ] || \
- mkdir stageprofile-binutils; \
- mv stageprofile-binutils binutils; \
- mv stage1-binutils prev-binutils || test -f stage1-lean
- @cd $(HOST_SUBDIR); [ -d stageprofile-libiberty ] || \
- mkdir stageprofile-libiberty; \
- mv stageprofile-libiberty libiberty; \
- mv stage1-libiberty prev-libiberty || test -f stage1-lean
- @[ -d stageprofile-$(TARGET_SUBDIR) ] || \
- mkdir stageprofile-$(TARGET_SUBDIR); \
- mv stageprofile-$(TARGET_SUBDIR) $(TARGET_SUBDIR); \
- mv stage1-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage1-lean
-
-stageprofile-end::
- @if test -d $(HOST_SUBDIR)/bfd; then \
- cd $(HOST_SUBDIR); mv bfd stageprofile-bfd; \
- mv prev-bfd stage1-bfd; : ; \
- fi
- @if test -d $(HOST_SUBDIR)/binutils; then \
- cd $(HOST_SUBDIR); mv binutils stageprofile-binutils; \
- mv prev-binutils stage1-binutils; : ; \
- fi
- @if test -d $(HOST_SUBDIR)/libiberty; then \
- cd $(HOST_SUBDIR); mv libiberty stageprofile-libiberty; \
- mv prev-libiberty stage1-libiberty; : ; \
- fi
- @if test -d $(TARGET_SUBDIR); then \
- mv $(TARGET_SUBDIR) stageprofile-$(TARGET_SUBDIR); \
- mv prev-$(TARGET_SUBDIR) stage1-$(TARGET_SUBDIR); : ; \
- fi
- rm -f stage_current
-
-# Bubble a bug fix through all the stages up to stage profile. They are
-# remade, but not reconfigured. The next stage (if any) will not be
-# reconfigured either.
-.PHONY: stageprofile-bubble
-stageprofile-bubble:: stage1-bubble
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- if test -f stageprofile-lean || test -f stage1-lean ; then \
- echo Skipping rebuild of stageprofile; \
- else \
- $(MAKE) stageprofile-start; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stageprofile; \
- fi
-
-.PHONY: all-stageprofile clean-stageprofile
-do-clean: clean-stageprofile
-
-# FIXME: Will not need to be conditional when toplevel bootstrap is the
-# only possibility, but now it conflicts with no-bootstrap rules
-
-
-.PHONY: stagefeedback-start stagefeedback-end
-
-stagefeedback-start::
- @: $(MAKE); $(stage); \
- echo stagefeedback > stage_current; \
- echo stagefeedback > stage_last; \
- $(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
- @cd $(HOST_SUBDIR); [ -d stagefeedback-bfd ] || \
- mkdir stagefeedback-bfd; \
- mv stagefeedback-bfd bfd; \
- mv stageprofile-bfd prev-bfd || test -f stageprofile-lean
- @cd $(HOST_SUBDIR); [ -d stagefeedback-binutils ] || \
- mkdir stagefeedback-binutils; \
- mv stagefeedback-binutils binutils; \
- mv stageprofile-binutils prev-binutils || test -f stageprofile-lean
- @cd $(HOST_SUBDIR); [ -d stagefeedback-libiberty ] || \
- mkdir stagefeedback-libiberty; \
- mv stagefeedback-libiberty libiberty; \
- mv stageprofile-libiberty prev-libiberty || test -f stageprofile-lean
- @[ -d stagefeedback-$(TARGET_SUBDIR) ] || \
- mkdir stagefeedback-$(TARGET_SUBDIR); \
- mv stagefeedback-$(TARGET_SUBDIR) $(TARGET_SUBDIR); \
- mv stageprofile-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stageprofile-lean
-
-stagefeedback-end::
- @if test -d $(HOST_SUBDIR)/bfd; then \
- cd $(HOST_SUBDIR); mv bfd stagefeedback-bfd; \
- mv prev-bfd stageprofile-bfd; : ; \
- fi
- @if test -d $(HOST_SUBDIR)/binutils; then \
- cd $(HOST_SUBDIR); mv binutils stagefeedback-binutils; \
- mv prev-binutils stageprofile-binutils; : ; \
- fi
- @if test -d $(HOST_SUBDIR)/libiberty; then \
- cd $(HOST_SUBDIR); mv libiberty stagefeedback-libiberty; \
- mv prev-libiberty stageprofile-libiberty; : ; \
- fi
- @if test -d $(TARGET_SUBDIR); then \
- mv $(TARGET_SUBDIR) stagefeedback-$(TARGET_SUBDIR); \
- mv prev-$(TARGET_SUBDIR) stageprofile-$(TARGET_SUBDIR); : ; \
- fi
- rm -f stage_current
-
-# Bubble a bug fix through all the stages up to stage feedback. They are
-# remade, but not reconfigured. The next stage (if any) will not be
-# reconfigured either.
-.PHONY: stagefeedback-bubble
-stagefeedback-bubble:: stageprofile-bubble
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- if test -f stagefeedback-lean || test -f stageprofile-lean ; then \
- echo Skipping rebuild of stagefeedback; \
- else \
- $(MAKE) stagefeedback-start; \
- $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stagefeedback; \
- fi
-
-.PHONY: all-stagefeedback clean-stagefeedback
-do-clean: clean-stagefeedback
-
-# FIXME: Will not need to be conditional when toplevel bootstrap is the
-# only possibility, but now it conflicts with no-bootstrap rules
-
-
-
-stageprofile-end::
- $(MAKE) distclean-stagefeedback
-
-stagefeedback-start::
- @r=`${PWD_COMMAND}`; export r; \
- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
- for i in prev-*; do \
- j=`echo $$i | sed s/^prev-//`; \
- cd $$r/$$i && \
- { find . -type d | sort | sed 's,.*,$(SHELL) '"$$s"'/mkinstalldirs "../'$$j'/&",' | $(SHELL); } && \
- { find . -name '*.*da' | sed 's,.*,$(LN) -f "&" "../'$$j'/&",' | $(SHELL); }; \
- done
-
-
-# --------------------------------------
-# Dependencies between different modules
-# --------------------------------------
-
-# Generic dependencies for target modules on host stuff, especially gcc
-
-
-
-# There are two types of dependencies here: 'hard' dependencies, where one
-# module simply won't build without the other; and 'soft' dependencies, where
-# if the depended-on module is missing, the depending module will do without
-# or find a substitute somewhere (perhaps installed). Soft dependencies
-# are made here to depend on a 'maybe-' target. If you're not sure,
-# it's safer to use a soft dependency.
-
-
-
-
-
-
-# With all the machinery above in place, it is pretty easy to generate
-# dependencies. Host dependencies are a bit more complex because we have
-# to check for bootstrap/prebootstrap dependencies. To resolve
-# prebootstrap dependencies, prebootstrap modules are gathered in
-# a hash table.
-all-build-bison: maybe-all-build-texinfo
-all-build-flex: maybe-all-build-texinfo
-all-build-flex: maybe-all-build-bison
-all-build-flex: maybe-all-build-m4
-all-build-libiberty: maybe-all-build-texinfo
-all-build-m4: maybe-all-build-texinfo
-all-build-fixincludes: maybe-all-build-libiberty
-all-build-libcpp: maybe-all-build-libiberty
-configure-gcc: maybe-configure-intl
-
-configure-stage1-gcc: maybe-configure-stage1-intl
-configure-stage2-gcc: maybe-configure-stage2-intl
-configure-stage3-gcc: maybe-configure-stage3-intl
-configure-stage4-gcc: maybe-configure-stage4-intl
-configure-stageprofile-gcc: maybe-configure-stageprofile-intl
-configure-stagefeedback-gcc: maybe-configure-stagefeedback-intl
-configure-gcc: maybe-all-gmp
-
-configure-stage1-gcc: maybe-all-stage1-gmp
-configure-stage2-gcc: maybe-all-stage2-gmp
-configure-stage3-gcc: maybe-all-stage3-gmp
-configure-stage4-gcc: maybe-all-stage4-gmp
-configure-stageprofile-gcc: maybe-all-stageprofile-gmp
-configure-stagefeedback-gcc: maybe-all-stagefeedback-gmp
-configure-gcc: maybe-all-mpfr
-
-configure-stage1-gcc: maybe-all-stage1-mpfr
-configure-stage2-gcc: maybe-all-stage2-mpfr
-configure-stage3-gcc: maybe-all-stage3-mpfr
-configure-stage4-gcc: maybe-all-stage4-mpfr
-configure-stageprofile-gcc: maybe-all-stageprofile-mpfr
-configure-stagefeedback-gcc: maybe-all-stagefeedback-mpfr
-configure-gcc: maybe-all-mpc
-
-configure-stage1-gcc: maybe-all-stage1-mpc
-configure-stage2-gcc: maybe-all-stage2-mpc
-configure-stage3-gcc: maybe-all-stage3-mpc
-configure-stage4-gcc: maybe-all-stage4-mpc
-configure-stageprofile-gcc: maybe-all-stageprofile-mpc
-configure-stagefeedback-gcc: maybe-all-stagefeedback-mpc
-configure-gcc: maybe-all-isl
-
-configure-stage1-gcc: maybe-all-stage1-isl
-configure-stage2-gcc: maybe-all-stage2-isl
-configure-stage3-gcc: maybe-all-stage3-isl
-configure-stage4-gcc: maybe-all-stage4-isl
-configure-stageprofile-gcc: maybe-all-stageprofile-isl
-configure-stagefeedback-gcc: maybe-all-stagefeedback-isl
-configure-gcc: maybe-all-lto-plugin
-
-configure-stage1-gcc: maybe-all-stage1-lto-plugin
-configure-stage2-gcc: maybe-all-stage2-lto-plugin
-configure-stage3-gcc: maybe-all-stage3-lto-plugin
-configure-stage4-gcc: maybe-all-stage4-lto-plugin
-configure-stageprofile-gcc: maybe-all-stageprofile-lto-plugin
-configure-stagefeedback-gcc: maybe-all-stagefeedback-lto-plugin
-configure-gcc: maybe-all-binutils
-
-configure-stage1-gcc: maybe-all-stage1-binutils
-configure-stage2-gcc: maybe-all-stage2-binutils
-configure-stage3-gcc: maybe-all-stage3-binutils
-configure-stage4-gcc: maybe-all-stage4-binutils
-configure-stageprofile-gcc: maybe-all-stageprofile-binutils
-configure-stagefeedback-gcc: maybe-all-stagefeedback-binutils
-configure-gcc: maybe-all-gas
-
-configure-stage1-gcc: maybe-all-stage1-gas
-configure-stage2-gcc: maybe-all-stage2-gas
-configure-stage3-gcc: maybe-all-stage3-gas
-configure-stage4-gcc: maybe-all-stage4-gas
-configure-stageprofile-gcc: maybe-all-stageprofile-gas
-configure-stagefeedback-gcc: maybe-all-stagefeedback-gas
-configure-gcc: maybe-all-ld
-
-configure-stage1-gcc: maybe-all-stage1-ld
-configure-stage2-gcc: maybe-all-stage2-ld
-configure-stage3-gcc: maybe-all-stage3-ld
-configure-stage4-gcc: maybe-all-stage4-ld
-configure-stageprofile-gcc: maybe-all-stageprofile-ld
-configure-stagefeedback-gcc: maybe-all-stagefeedback-ld
-configure-gcc: maybe-all-gold
-
-configure-stage1-gcc: maybe-all-stage1-gold
-configure-stage2-gcc: maybe-all-stage2-gold
-configure-stage3-gcc: maybe-all-stage3-gold
-configure-stage4-gcc: maybe-all-stage4-gold
-configure-stageprofile-gcc: maybe-all-stageprofile-gold
-configure-stagefeedback-gcc: maybe-all-stagefeedback-gold
-configure-gcc: maybe-all-libelf
-
-configure-stage1-gcc: maybe-all-stage1-libelf
-configure-stage2-gcc: maybe-all-stage2-libelf
-configure-stage3-gcc: maybe-all-stage3-libelf
-configure-stage4-gcc: maybe-all-stage4-libelf
-configure-stageprofile-gcc: maybe-all-stageprofile-libelf
-configure-stagefeedback-gcc: maybe-all-stagefeedback-libelf
-configure-gcc: maybe-all-libiconv
-
-configure-stage1-gcc: maybe-all-stage1-libiconv
-configure-stage2-gcc: maybe-all-stage2-libiconv
-configure-stage3-gcc: maybe-all-stage3-libiconv
-configure-stage4-gcc: maybe-all-stage4-libiconv
-configure-stageprofile-gcc: maybe-all-stageprofile-libiconv
-configure-stagefeedback-gcc: maybe-all-stagefeedback-libiconv
-all-gcc: all-libiberty
-
-all-stage1-gcc: all-stage1-libiberty
-all-stage2-gcc: all-stage2-libiberty
-all-stage3-gcc: all-stage3-libiberty
-all-stage4-gcc: all-stage4-libiberty
-all-stageprofile-gcc: all-stageprofile-libiberty
-all-stagefeedback-gcc: all-stagefeedback-libiberty
-all-gcc: maybe-all-intl
-
-all-stage1-gcc: maybe-all-stage1-intl
-all-stage2-gcc: maybe-all-stage2-intl
-all-stage3-gcc: maybe-all-stage3-intl
-all-stage4-gcc: maybe-all-stage4-intl
-all-stageprofile-gcc: maybe-all-stageprofile-intl
-all-stagefeedback-gcc: maybe-all-stagefeedback-intl
-all-gcc: maybe-all-mpfr
-
-all-stage1-gcc: maybe-all-stage1-mpfr
-all-stage2-gcc: maybe-all-stage2-mpfr
-all-stage3-gcc: maybe-all-stage3-mpfr
-all-stage4-gcc: maybe-all-stage4-mpfr
-all-stageprofile-gcc: maybe-all-stageprofile-mpfr
-all-stagefeedback-gcc: maybe-all-stagefeedback-mpfr
-all-gcc: maybe-all-mpc
-
-all-stage1-gcc: maybe-all-stage1-mpc
-all-stage2-gcc: maybe-all-stage2-mpc
-all-stage3-gcc: maybe-all-stage3-mpc
-all-stage4-gcc: maybe-all-stage4-mpc
-all-stageprofile-gcc: maybe-all-stageprofile-mpc
-all-stagefeedback-gcc: maybe-all-stagefeedback-mpc
-all-gcc: maybe-all-isl
-
-all-stage1-gcc: maybe-all-stage1-isl
-all-stage2-gcc: maybe-all-stage2-isl
-all-stage3-gcc: maybe-all-stage3-isl
-all-stage4-gcc: maybe-all-stage4-isl
-all-stageprofile-gcc: maybe-all-stageprofile-isl
-all-stagefeedback-gcc: maybe-all-stagefeedback-isl
-all-gcc: maybe-all-build-texinfo
-
-all-stage1-gcc: maybe-all-build-texinfo
-all-stage2-gcc: maybe-all-build-texinfo
-all-stage3-gcc: maybe-all-build-texinfo
-all-stage4-gcc: maybe-all-build-texinfo
-all-stageprofile-gcc: maybe-all-build-texinfo
-all-stagefeedback-gcc: maybe-all-build-texinfo
-all-gcc: maybe-all-build-bison
-
-all-stage1-gcc: maybe-all-build-bison
-all-stage2-gcc: maybe-all-build-bison
-all-stage3-gcc: maybe-all-build-bison
-all-stage4-gcc: maybe-all-build-bison
-all-stageprofile-gcc: maybe-all-build-bison
-all-stagefeedback-gcc: maybe-all-build-bison
-all-gcc: maybe-all-build-flex
-
-all-stage1-gcc: maybe-all-build-flex
-all-stage2-gcc: maybe-all-build-flex
-all-stage3-gcc: maybe-all-build-flex
-all-stage4-gcc: maybe-all-build-flex
-all-stageprofile-gcc: maybe-all-build-flex
-all-stagefeedback-gcc: maybe-all-build-flex
-all-gcc: maybe-all-build-libiberty
-
-all-stage1-gcc: maybe-all-build-libiberty
-all-stage2-gcc: maybe-all-build-libiberty
-all-stage3-gcc: maybe-all-build-libiberty
-all-stage4-gcc: maybe-all-build-libiberty
-all-stageprofile-gcc: maybe-all-build-libiberty
-all-stagefeedback-gcc: maybe-all-build-libiberty
-all-gcc: maybe-all-build-fixincludes
-
-all-stage1-gcc: maybe-all-build-fixincludes
-all-stage2-gcc: maybe-all-build-fixincludes
-all-stage3-gcc: maybe-all-build-fixincludes
-all-stage4-gcc: maybe-all-build-fixincludes
-all-stageprofile-gcc: maybe-all-build-fixincludes
-all-stagefeedback-gcc: maybe-all-build-fixincludes
-all-gcc: maybe-all-build-libcpp
-
-all-stage1-gcc: maybe-all-build-libcpp
-all-stage2-gcc: maybe-all-build-libcpp
-all-stage3-gcc: maybe-all-build-libcpp
-all-stage4-gcc: maybe-all-build-libcpp
-all-stageprofile-gcc: maybe-all-build-libcpp
-all-stagefeedback-gcc: maybe-all-build-libcpp
-all-gcc: maybe-all-zlib
-
-all-stage1-gcc: maybe-all-stage1-zlib
-all-stage2-gcc: maybe-all-stage2-zlib
-all-stage3-gcc: maybe-all-stage3-zlib
-all-stage4-gcc: maybe-all-stage4-zlib
-all-stageprofile-gcc: maybe-all-stageprofile-zlib
-all-stagefeedback-gcc: maybe-all-stagefeedback-zlib
-all-gcc: all-libbacktrace
-
-all-stage1-gcc: all-stage1-libbacktrace
-all-stage2-gcc: all-stage2-libbacktrace
-all-stage3-gcc: all-stage3-libbacktrace
-all-stage4-gcc: all-stage4-libbacktrace
-all-stageprofile-gcc: all-stageprofile-libbacktrace
-all-stagefeedback-gcc: all-stagefeedback-libbacktrace
-all-gcc: all-libcpp
-
-all-stage1-gcc: all-stage1-libcpp
-all-stage2-gcc: all-stage2-libcpp
-all-stage3-gcc: all-stage3-libcpp
-all-stage4-gcc: all-stage4-libcpp
-all-stageprofile-gcc: all-stageprofile-libcpp
-all-stagefeedback-gcc: all-stagefeedback-libcpp
-all-gcc: all-libdecnumber
-
-all-stage1-gcc: all-stage1-libdecnumber
-all-stage2-gcc: all-stage2-libdecnumber
-all-stage3-gcc: all-stage3-libdecnumber
-all-stage4-gcc: all-stage4-libdecnumber
-all-stageprofile-gcc: all-stageprofile-libdecnumber
-all-stagefeedback-gcc: all-stagefeedback-libdecnumber
-all-gcc: maybe-all-libiberty
-
-all-stage1-gcc: maybe-all-stage1-libiberty
-all-stage2-gcc: maybe-all-stage2-libiberty
-all-stage3-gcc: maybe-all-stage3-libiberty
-all-stage4-gcc: maybe-all-stage4-libiberty
-all-stageprofile-gcc: maybe-all-stageprofile-libiberty
-all-stagefeedback-gcc: maybe-all-stagefeedback-libiberty
-all-gcc: maybe-all-fixincludes
-
-all-stage1-gcc: maybe-all-stage1-fixincludes
-all-stage2-gcc: maybe-all-stage2-fixincludes
-all-stage3-gcc: maybe-all-stage3-fixincludes
-all-stage4-gcc: maybe-all-stage4-fixincludes
-all-stageprofile-gcc: maybe-all-stageprofile-fixincludes
-all-stagefeedback-gcc: maybe-all-stagefeedback-fixincludes
-all-gcc: maybe-all-lto-plugin
-
-all-stage1-gcc: maybe-all-stage1-lto-plugin
-all-stage2-gcc: maybe-all-stage2-lto-plugin
-all-stage3-gcc: maybe-all-stage3-lto-plugin
-all-stage4-gcc: maybe-all-stage4-lto-plugin
-all-stageprofile-gcc: maybe-all-stageprofile-lto-plugin
-all-stagefeedback-gcc: maybe-all-stagefeedback-lto-plugin
-all-gcc: maybe-all-libiconv
-
-all-stage1-gcc: maybe-all-stage1-libiconv
-all-stage2-gcc: maybe-all-stage2-libiconv
-all-stage3-gcc: maybe-all-stage3-libiconv
-all-stage4-gcc: maybe-all-stage4-libiconv
-all-stageprofile-gcc: maybe-all-stageprofile-libiconv
-all-stagefeedback-gcc: maybe-all-stagefeedback-libiconv
-info-gcc: maybe-all-build-libiberty
-
-info-stage1-gcc: maybe-all-build-libiberty
-info-stage2-gcc: maybe-all-build-libiberty
-info-stage3-gcc: maybe-all-build-libiberty
-info-stage4-gcc: maybe-all-build-libiberty
-info-stageprofile-gcc: maybe-all-build-libiberty
-info-stagefeedback-gcc: maybe-all-build-libiberty
-dvi-gcc: maybe-all-build-libiberty
-
-dvi-stage1-gcc: maybe-all-build-libiberty
-dvi-stage2-gcc: maybe-all-build-libiberty
-dvi-stage3-gcc: maybe-all-build-libiberty
-dvi-stage4-gcc: maybe-all-build-libiberty
-dvi-stageprofile-gcc: maybe-all-build-libiberty
-dvi-stagefeedback-gcc: maybe-all-build-libiberty
-pdf-gcc: maybe-all-build-libiberty
-
-pdf-stage1-gcc: maybe-all-build-libiberty
-pdf-stage2-gcc: maybe-all-build-libiberty
-pdf-stage3-gcc: maybe-all-build-libiberty
-pdf-stage4-gcc: maybe-all-build-libiberty
-pdf-stageprofile-gcc: maybe-all-build-libiberty
-pdf-stagefeedback-gcc: maybe-all-build-libiberty
-html-gcc: maybe-all-build-libiberty
-
-html-stage1-gcc: maybe-all-build-libiberty
-html-stage2-gcc: maybe-all-build-libiberty
-html-stage3-gcc: maybe-all-build-libiberty
-html-stage4-gcc: maybe-all-build-libiberty
-html-stageprofile-gcc: maybe-all-build-libiberty
-html-stagefeedback-gcc: maybe-all-build-libiberty
-install-gcc: maybe-install-fixincludes
-install-gcc: maybe-install-lto-plugin
-install-strip-gcc: maybe-install-strip-fixincludes
-install-strip-gcc: maybe-install-strip-lto-plugin
-configure-libcpp: configure-libiberty
-
-configure-stage1-libcpp: configure-stage1-libiberty
-configure-stage2-libcpp: configure-stage2-libiberty
-configure-stage3-libcpp: configure-stage3-libiberty
-configure-stage4-libcpp: configure-stage4-libiberty
-configure-stageprofile-libcpp: configure-stageprofile-libiberty
-configure-stagefeedback-libcpp: configure-stagefeedback-libiberty
-configure-libcpp: maybe-configure-intl
-
-configure-stage1-libcpp: maybe-configure-stage1-intl
-configure-stage2-libcpp: maybe-configure-stage2-intl
-configure-stage3-libcpp: maybe-configure-stage3-intl
-configure-stage4-libcpp: maybe-configure-stage4-intl
-configure-stageprofile-libcpp: maybe-configure-stageprofile-intl
-configure-stagefeedback-libcpp: maybe-configure-stagefeedback-intl
-configure-libcpp: maybe-all-libiconv
-
-configure-stage1-libcpp: maybe-all-stage1-libiconv
-configure-stage2-libcpp: maybe-all-stage2-libiconv
-configure-stage3-libcpp: maybe-all-stage3-libiconv
-configure-stage4-libcpp: maybe-all-stage4-libiconv
-configure-stageprofile-libcpp: maybe-all-stageprofile-libiconv
-configure-stagefeedback-libcpp: maybe-all-stagefeedback-libiconv
-all-libcpp: all-libiberty
-
-all-stage1-libcpp: all-stage1-libiberty
-all-stage2-libcpp: all-stage2-libiberty
-all-stage3-libcpp: all-stage3-libiberty
-all-stage4-libcpp: all-stage4-libiberty
-all-stageprofile-libcpp: all-stageprofile-libiberty
-all-stagefeedback-libcpp: all-stagefeedback-libiberty
-all-libcpp: maybe-all-intl
-
-all-stage1-libcpp: maybe-all-stage1-intl
-all-stage2-libcpp: maybe-all-stage2-intl
-all-stage3-libcpp: maybe-all-stage3-intl
-all-stage4-libcpp: maybe-all-stage4-intl
-all-stageprofile-libcpp: maybe-all-stageprofile-intl
-all-stagefeedback-libcpp: maybe-all-stagefeedback-intl
-all-libcpp: maybe-all-libiconv
-
-all-stage1-libcpp: maybe-all-stage1-libiconv
-all-stage2-libcpp: maybe-all-stage2-libiconv
-all-stage3-libcpp: maybe-all-stage3-libiconv
-all-stage4-libcpp: maybe-all-stage4-libiconv
-all-stageprofile-libcpp: maybe-all-stageprofile-libiconv
-all-stagefeedback-libcpp: maybe-all-stagefeedback-libiconv
-all-fixincludes: maybe-all-libiberty
-
-all-stage1-fixincludes: maybe-all-stage1-libiberty
-all-stage2-fixincludes: maybe-all-stage2-libiberty
-all-stage3-fixincludes: maybe-all-stage3-libiberty
-all-stage4-fixincludes: maybe-all-stage4-libiberty
-all-stageprofile-fixincludes: maybe-all-stageprofile-libiberty
-all-stagefeedback-fixincludes: maybe-all-stagefeedback-libiberty
-all-gnattools: maybe-all-target-libada
-all-gnattools: maybe-all-target-libstdc++-v3
-all-lto-plugin: maybe-all-libiberty
-
-all-stage1-lto-plugin: maybe-all-stage1-libiberty
-all-stage2-lto-plugin: maybe-all-stage2-libiberty
-all-stage3-lto-plugin: maybe-all-stage3-libiberty
-all-stage4-lto-plugin: maybe-all-stage4-libiberty
-all-stageprofile-lto-plugin: maybe-all-stageprofile-libiberty
-all-stagefeedback-lto-plugin: maybe-all-stagefeedback-libiberty
-all-lto-plugin: maybe-all-libiberty-linker-plugin
-
-all-stage1-lto-plugin: maybe-all-stage1-libiberty-linker-plugin
-all-stage2-lto-plugin: maybe-all-stage2-libiberty-linker-plugin
-all-stage3-lto-plugin: maybe-all-stage3-libiberty-linker-plugin
-all-stage4-lto-plugin: maybe-all-stage4-libiberty-linker-plugin
-all-stageprofile-lto-plugin: maybe-all-stageprofile-libiberty-linker-plugin
-all-stagefeedback-lto-plugin: maybe-all-stagefeedback-libiberty-linker-plugin
-configure-libcc1: maybe-configure-gcc
-all-libcc1: maybe-all-gcc
-all-gotools: maybe-all-target-libgo
-all-utils: maybe-all-libiberty
-configure-intl: maybe-all-libiconv
-
-configure-stage1-intl: maybe-all-stage1-libiconv
-configure-stage2-intl: maybe-all-stage2-libiconv
-configure-stage3-intl: maybe-all-stage3-libiconv
-configure-stage4-intl: maybe-all-stage4-libiconv
-configure-stageprofile-intl: maybe-all-stageprofile-libiconv
-configure-stagefeedback-intl: maybe-all-stagefeedback-libiconv
-configure-mpfr: maybe-all-gmp
-
-configure-stage1-mpfr: maybe-all-stage1-gmp
-configure-stage2-mpfr: maybe-all-stage2-gmp
-configure-stage3-mpfr: maybe-all-stage3-gmp
-configure-stage4-mpfr: maybe-all-stage4-gmp
-configure-stageprofile-mpfr: maybe-all-stageprofile-gmp
-configure-stagefeedback-mpfr: maybe-all-stagefeedback-gmp
-configure-mpc: maybe-all-mpfr
-
-configure-stage1-mpc: maybe-all-stage1-mpfr
-configure-stage2-mpc: maybe-all-stage2-mpfr
-configure-stage3-mpc: maybe-all-stage3-mpfr
-configure-stage4-mpc: maybe-all-stage4-mpfr
-configure-stageprofile-mpc: maybe-all-stageprofile-mpfr
-configure-stagefeedback-mpc: maybe-all-stagefeedback-mpfr
-configure-isl: maybe-all-gmp
-
-configure-stage1-isl: maybe-all-stage1-gmp
-configure-stage2-isl: maybe-all-stage2-gmp
-configure-stage3-isl: maybe-all-stage3-gmp
-configure-stage4-isl: maybe-all-stage4-gmp
-configure-stageprofile-isl: maybe-all-stageprofile-gmp
-configure-stagefeedback-isl: maybe-all-stagefeedback-gmp
-all-intl: maybe-all-libiconv
-
-all-stage1-intl: maybe-all-stage1-libiconv
-all-stage2-intl: maybe-all-stage2-libiconv
-all-stage3-intl: maybe-all-stage3-libiconv
-all-stage4-intl: maybe-all-stage4-libiconv
-all-stageprofile-intl: maybe-all-stageprofile-libiconv
-all-stagefeedback-intl: maybe-all-stagefeedback-libiconv
-configure-gdb: maybe-all-intl
-configure-gdb: maybe-configure-sim
-configure-gdb: maybe-all-bfd
-configure-gdb: maybe-all-libiconv
-all-gdb: maybe-all-libiberty
-all-gdb: maybe-all-libiconv
-all-gdb: maybe-all-opcodes
-all-gdb: maybe-all-readline
-all-gdb: maybe-all-build-bison
-all-gdb: maybe-all-sim
-all-gdb: maybe-all-libdecnumber
-all-gdb: maybe-all-libtermcap
-configure-libgui: maybe-configure-tcl
-configure-libgui: maybe-configure-tk
-all-libgui: maybe-all-tcl
-all-libgui: maybe-all-tk
-all-libgui: maybe-all-itcl
-configure-bfd: configure-libiberty
-
-configure-stage1-bfd: configure-stage1-libiberty
-configure-stage2-bfd: configure-stage2-libiberty
-configure-stage3-bfd: configure-stage3-libiberty
-configure-stage4-bfd: configure-stage4-libiberty
-configure-stageprofile-bfd: configure-stageprofile-libiberty
-configure-stagefeedback-bfd: configure-stagefeedback-libiberty
-configure-bfd: maybe-configure-intl
-
-configure-stage1-bfd: maybe-configure-stage1-intl
-configure-stage2-bfd: maybe-configure-stage2-intl
-configure-stage3-bfd: maybe-configure-stage3-intl
-configure-stage4-bfd: maybe-configure-stage4-intl
-configure-stageprofile-bfd: maybe-configure-stageprofile-intl
-configure-stagefeedback-bfd: maybe-configure-stagefeedback-intl
-all-bfd: maybe-all-libiberty
-
-all-stage1-bfd: maybe-all-stage1-libiberty
-all-stage2-bfd: maybe-all-stage2-libiberty
-all-stage3-bfd: maybe-all-stage3-libiberty
-all-stage4-bfd: maybe-all-stage4-libiberty
-all-stageprofile-bfd: maybe-all-stageprofile-libiberty
-all-stagefeedback-bfd: maybe-all-stagefeedback-libiberty
-all-bfd: maybe-all-intl
-
-all-stage1-bfd: maybe-all-stage1-intl
-all-stage2-bfd: maybe-all-stage2-intl
-all-stage3-bfd: maybe-all-stage3-intl
-all-stage4-bfd: maybe-all-stage4-intl
-all-stageprofile-bfd: maybe-all-stageprofile-intl
-all-stagefeedback-bfd: maybe-all-stagefeedback-intl
-all-bfd: maybe-all-zlib
-
-all-stage1-bfd: maybe-all-stage1-zlib
-all-stage2-bfd: maybe-all-stage2-zlib
-all-stage3-bfd: maybe-all-stage3-zlib
-all-stage4-bfd: maybe-all-stage4-zlib
-all-stageprofile-bfd: maybe-all-stageprofile-zlib
-all-stagefeedback-bfd: maybe-all-stagefeedback-zlib
-configure-opcodes: configure-libiberty
-
-configure-stage1-opcodes: configure-stage1-libiberty
-configure-stage2-opcodes: configure-stage2-libiberty
-configure-stage3-opcodes: configure-stage3-libiberty
-configure-stage4-opcodes: configure-stage4-libiberty
-configure-stageprofile-opcodes: configure-stageprofile-libiberty
-configure-stagefeedback-opcodes: configure-stagefeedback-libiberty
-all-opcodes: maybe-all-libiberty
-
-all-stage1-opcodes: maybe-all-stage1-libiberty
-all-stage2-opcodes: maybe-all-stage2-libiberty
-all-stage3-opcodes: maybe-all-stage3-libiberty
-all-stage4-opcodes: maybe-all-stage4-libiberty
-all-stageprofile-opcodes: maybe-all-stageprofile-libiberty
-all-stagefeedback-opcodes: maybe-all-stagefeedback-libiberty
-configure-binutils: maybe-configure-intl
-
-configure-stage1-binutils: maybe-configure-stage1-intl
-configure-stage2-binutils: maybe-configure-stage2-intl
-configure-stage3-binutils: maybe-configure-stage3-intl
-configure-stage4-binutils: maybe-configure-stage4-intl
-configure-stageprofile-binutils: maybe-configure-stageprofile-intl
-configure-stagefeedback-binutils: maybe-configure-stagefeedback-intl
-all-binutils: maybe-all-libiberty
-
-all-stage1-binutils: maybe-all-stage1-libiberty
-all-stage2-binutils: maybe-all-stage2-libiberty
-all-stage3-binutils: maybe-all-stage3-libiberty
-all-stage4-binutils: maybe-all-stage4-libiberty
-all-stageprofile-binutils: maybe-all-stageprofile-libiberty
-all-stagefeedback-binutils: maybe-all-stagefeedback-libiberty
-all-binutils: maybe-all-opcodes
-
-all-stage1-binutils: maybe-all-stage1-opcodes
-all-stage2-binutils: maybe-all-stage2-opcodes
-all-stage3-binutils: maybe-all-stage3-opcodes
-all-stage4-binutils: maybe-all-stage4-opcodes
-all-stageprofile-binutils: maybe-all-stageprofile-opcodes
-all-stagefeedback-binutils: maybe-all-stagefeedback-opcodes
-all-binutils: maybe-all-bfd
-
-all-stage1-binutils: maybe-all-stage1-bfd
-all-stage2-binutils: maybe-all-stage2-bfd
-all-stage3-binutils: maybe-all-stage3-bfd
-all-stage4-binutils: maybe-all-stage4-bfd
-all-stageprofile-binutils: maybe-all-stageprofile-bfd
-all-stagefeedback-binutils: maybe-all-stagefeedback-bfd
-all-binutils: maybe-all-build-flex
-
-all-stage1-binutils: maybe-all-build-flex
-all-stage2-binutils: maybe-all-build-flex
-all-stage3-binutils: maybe-all-build-flex
-all-stage4-binutils: maybe-all-build-flex
-all-stageprofile-binutils: maybe-all-build-flex
-all-stagefeedback-binutils: maybe-all-build-flex
-all-binutils: maybe-all-build-bison
-
-all-stage1-binutils: maybe-all-build-bison
-all-stage2-binutils: maybe-all-build-bison
-all-stage3-binutils: maybe-all-build-bison
-all-stage4-binutils: maybe-all-build-bison
-all-stageprofile-binutils: maybe-all-build-bison
-all-stagefeedback-binutils: maybe-all-build-bison
-all-binutils: maybe-all-intl
-
-all-stage1-binutils: maybe-all-stage1-intl
-all-stage2-binutils: maybe-all-stage2-intl
-all-stage3-binutils: maybe-all-stage3-intl
-all-stage4-binutils: maybe-all-stage4-intl
-all-stageprofile-binutils: maybe-all-stageprofile-intl
-all-stagefeedback-binutils: maybe-all-stagefeedback-intl
-all-binutils: maybe-all-gas
-
-all-stage1-binutils: maybe-all-stage1-gas
-all-stage2-binutils: maybe-all-stage2-gas
-all-stage3-binutils: maybe-all-stage3-gas
-all-stage4-binutils: maybe-all-stage4-gas
-all-stageprofile-binutils: maybe-all-stageprofile-gas
-all-stagefeedback-binutils: maybe-all-stagefeedback-gas
-install-binutils: maybe-install-opcodes
-install-strip-binutils: maybe-install-strip-opcodes
-install-opcodes: maybe-install-bfd
-install-strip-opcodes: maybe-install-strip-bfd
-configure-gas: maybe-configure-intl
-
-configure-stage1-gas: maybe-configure-stage1-intl
-configure-stage2-gas: maybe-configure-stage2-intl
-configure-stage3-gas: maybe-configure-stage3-intl
-configure-stage4-gas: maybe-configure-stage4-intl
-configure-stageprofile-gas: maybe-configure-stageprofile-intl
-configure-stagefeedback-gas: maybe-configure-stagefeedback-intl
-all-gas: maybe-all-libiberty
-
-all-stage1-gas: maybe-all-stage1-libiberty
-all-stage2-gas: maybe-all-stage2-libiberty
-all-stage3-gas: maybe-all-stage3-libiberty
-all-stage4-gas: maybe-all-stage4-libiberty
-all-stageprofile-gas: maybe-all-stageprofile-libiberty
-all-stagefeedback-gas: maybe-all-stagefeedback-libiberty
-all-gas: maybe-all-opcodes
-
-all-stage1-gas: maybe-all-stage1-opcodes
-all-stage2-gas: maybe-all-stage2-opcodes
-all-stage3-gas: maybe-all-stage3-opcodes
-all-stage4-gas: maybe-all-stage4-opcodes
-all-stageprofile-gas: maybe-all-stageprofile-opcodes
-all-stagefeedback-gas: maybe-all-stagefeedback-opcodes
-all-gas: maybe-all-bfd
-
-all-stage1-gas: maybe-all-stage1-bfd
-all-stage2-gas: maybe-all-stage2-bfd
-all-stage3-gas: maybe-all-stage3-bfd
-all-stage4-gas: maybe-all-stage4-bfd
-all-stageprofile-gas: maybe-all-stageprofile-bfd
-all-stagefeedback-gas: maybe-all-stagefeedback-bfd
-all-gas: maybe-all-intl
-
-all-stage1-gas: maybe-all-stage1-intl
-all-stage2-gas: maybe-all-stage2-intl
-all-stage3-gas: maybe-all-stage3-intl
-all-stage4-gas: maybe-all-stage4-intl
-all-stageprofile-gas: maybe-all-stageprofile-intl
-all-stagefeedback-gas: maybe-all-stagefeedback-intl
-configure-gprof: maybe-configure-intl
-all-gprof: maybe-all-libiberty
-all-gprof: maybe-all-bfd
-all-gprof: maybe-all-opcodes
-all-gprof: maybe-all-intl
-all-gprof: maybe-all-gas
-configure-ld: maybe-configure-intl
-
-configure-stage1-ld: maybe-configure-stage1-intl
-configure-stage2-ld: maybe-configure-stage2-intl
-configure-stage3-ld: maybe-configure-stage3-intl
-configure-stage4-ld: maybe-configure-stage4-intl
-configure-stageprofile-ld: maybe-configure-stageprofile-intl
-configure-stagefeedback-ld: maybe-configure-stagefeedback-intl
-all-ld: maybe-all-libiberty
-
-all-stage1-ld: maybe-all-stage1-libiberty
-all-stage2-ld: maybe-all-stage2-libiberty
-all-stage3-ld: maybe-all-stage3-libiberty
-all-stage4-ld: maybe-all-stage4-libiberty
-all-stageprofile-ld: maybe-all-stageprofile-libiberty
-all-stagefeedback-ld: maybe-all-stagefeedback-libiberty
-all-ld: maybe-all-bfd
-
-all-stage1-ld: maybe-all-stage1-bfd
-all-stage2-ld: maybe-all-stage2-bfd
-all-stage3-ld: maybe-all-stage3-bfd
-all-stage4-ld: maybe-all-stage4-bfd
-all-stageprofile-ld: maybe-all-stageprofile-bfd
-all-stagefeedback-ld: maybe-all-stagefeedback-bfd
-all-ld: maybe-all-opcodes
-
-all-stage1-ld: maybe-all-stage1-opcodes
-all-stage2-ld: maybe-all-stage2-opcodes
-all-stage3-ld: maybe-all-stage3-opcodes
-all-stage4-ld: maybe-all-stage4-opcodes
-all-stageprofile-ld: maybe-all-stageprofile-opcodes
-all-stagefeedback-ld: maybe-all-stagefeedback-opcodes
-all-ld: maybe-all-build-bison
-
-all-stage1-ld: maybe-all-build-bison
-all-stage2-ld: maybe-all-build-bison
-all-stage3-ld: maybe-all-build-bison
-all-stage4-ld: maybe-all-build-bison
-all-stageprofile-ld: maybe-all-build-bison
-all-stagefeedback-ld: maybe-all-build-bison
-all-ld: maybe-all-build-flex
-
-all-stage1-ld: maybe-all-build-flex
-all-stage2-ld: maybe-all-build-flex
-all-stage3-ld: maybe-all-build-flex
-all-stage4-ld: maybe-all-build-flex
-all-stageprofile-ld: maybe-all-build-flex
-all-stagefeedback-ld: maybe-all-build-flex
-all-ld: maybe-all-intl
-
-all-stage1-ld: maybe-all-stage1-intl
-all-stage2-ld: maybe-all-stage2-intl
-all-stage3-ld: maybe-all-stage3-intl
-all-stage4-ld: maybe-all-stage4-intl
-all-stageprofile-ld: maybe-all-stageprofile-intl
-all-stagefeedback-ld: maybe-all-stagefeedback-intl
-all-ld: maybe-all-gas
-
-all-stage1-ld: maybe-all-stage1-gas
-all-stage2-ld: maybe-all-stage2-gas
-all-stage3-ld: maybe-all-stage3-gas
-all-stage4-ld: maybe-all-stage4-gas
-all-stageprofile-ld: maybe-all-stageprofile-gas
-all-stagefeedback-ld: maybe-all-stagefeedback-gas
-all-ld: maybe-all-binutils
-
-all-stage1-ld: maybe-all-stage1-binutils
-all-stage2-ld: maybe-all-stage2-binutils
-all-stage3-ld: maybe-all-stage3-binutils
-all-stage4-ld: maybe-all-stage4-binutils
-all-stageprofile-ld: maybe-all-stageprofile-binutils
-all-stagefeedback-ld: maybe-all-stagefeedback-binutils
-install-ld: maybe-install-gold
-install-strip-ld: maybe-install-strip-gold
-configure-gold: maybe-configure-intl
-
-configure-stage1-gold: maybe-configure-stage1-intl
-configure-stage2-gold: maybe-configure-stage2-intl
-configure-stage3-gold: maybe-configure-stage3-intl
-configure-stage4-gold: maybe-configure-stage4-intl
-configure-stageprofile-gold: maybe-configure-stageprofile-intl
-configure-stagefeedback-gold: maybe-configure-stagefeedback-intl
-all-gold: maybe-all-libiberty
-
-all-stage1-gold: maybe-all-stage1-libiberty
-all-stage2-gold: maybe-all-stage2-libiberty
-all-stage3-gold: maybe-all-stage3-libiberty
-all-stage4-gold: maybe-all-stage4-libiberty
-all-stageprofile-gold: maybe-all-stageprofile-libiberty
-all-stagefeedback-gold: maybe-all-stagefeedback-libiberty
-all-gold: maybe-all-intl
-
-all-stage1-gold: maybe-all-stage1-intl
-all-stage2-gold: maybe-all-stage2-intl
-all-stage3-gold: maybe-all-stage3-intl
-all-stage4-gold: maybe-all-stage4-intl
-all-stageprofile-gold: maybe-all-stageprofile-intl
-all-stagefeedback-gold: maybe-all-stagefeedback-intl
-all-gold: maybe-all-bfd
-
-all-stage1-gold: maybe-all-stage1-bfd
-all-stage2-gold: maybe-all-stage2-bfd
-all-stage3-gold: maybe-all-stage3-bfd
-all-stage4-gold: maybe-all-stage4-bfd
-all-stageprofile-gold: maybe-all-stageprofile-bfd
-all-stagefeedback-gold: maybe-all-stagefeedback-bfd
-all-gold: maybe-all-build-bison
-
-all-stage1-gold: maybe-all-build-bison
-all-stage2-gold: maybe-all-build-bison
-all-stage3-gold: maybe-all-build-bison
-all-stage4-gold: maybe-all-build-bison
-all-stageprofile-gold: maybe-all-build-bison
-all-stagefeedback-gold: maybe-all-build-bison
-all-gold: maybe-all-gas
-
-all-stage1-gold: maybe-all-stage1-gas
-all-stage2-gold: maybe-all-stage2-gas
-all-stage3-gold: maybe-all-stage3-gas
-all-stage4-gold: maybe-all-stage4-gas
-all-stageprofile-gold: maybe-all-stageprofile-gas
-all-stagefeedback-gold: maybe-all-stagefeedback-gas
-check-gold: maybe-all-binutils
-
-check-stage1-gold: maybe-all-stage1-binutils
-check-stage2-gold: maybe-all-stage2-binutils
-check-stage3-gold: maybe-all-stage3-binutils
-check-stage4-gold: maybe-all-stage4-binutils
-check-stageprofile-gold: maybe-all-stageprofile-binutils
-check-stagefeedback-gold: maybe-all-stagefeedback-binutils
-check-gold: maybe-all-gas
-
-check-stage1-gold: maybe-all-stage1-gas
-check-stage2-gold: maybe-all-stage2-gas
-check-stage3-gold: maybe-all-stage3-gas
-check-stage4-gold: maybe-all-stage4-gas
-check-stageprofile-gold: maybe-all-stageprofile-gas
-check-stagefeedback-gold: maybe-all-stagefeedback-gas
-configure-opcodes: maybe-configure-intl
-
-configure-stage1-opcodes: maybe-configure-stage1-intl
-configure-stage2-opcodes: maybe-configure-stage2-intl
-configure-stage3-opcodes: maybe-configure-stage3-intl
-configure-stage4-opcodes: maybe-configure-stage4-intl
-configure-stageprofile-opcodes: maybe-configure-stageprofile-intl
-configure-stagefeedback-opcodes: maybe-configure-stagefeedback-intl
-all-opcodes: maybe-all-bfd
-
-all-stage1-opcodes: maybe-all-stage1-bfd
-all-stage2-opcodes: maybe-all-stage2-bfd
-all-stage3-opcodes: maybe-all-stage3-bfd
-all-stage4-opcodes: maybe-all-stage4-bfd
-all-stageprofile-opcodes: maybe-all-stageprofile-bfd
-all-stagefeedback-opcodes: maybe-all-stagefeedback-bfd
-all-opcodes: maybe-all-libiberty
-
-all-stage1-opcodes: maybe-all-stage1-libiberty
-all-stage2-opcodes: maybe-all-stage2-libiberty
-all-stage3-opcodes: maybe-all-stage3-libiberty
-all-stage4-opcodes: maybe-all-stage4-libiberty
-all-stageprofile-opcodes: maybe-all-stageprofile-libiberty
-all-stagefeedback-opcodes: maybe-all-stagefeedback-libiberty
-all-opcodes: maybe-all-intl
-
-all-stage1-opcodes: maybe-all-stage1-intl
-all-stage2-opcodes: maybe-all-stage2-intl
-all-stage3-opcodes: maybe-all-stage3-intl
-all-stage4-opcodes: maybe-all-stage4-intl
-all-stageprofile-opcodes: maybe-all-stageprofile-intl
-all-stagefeedback-opcodes: maybe-all-stagefeedback-intl
-all-dejagnu: maybe-all-tcl
-all-dejagnu: maybe-all-expect
-all-dejagnu: maybe-all-tk
-configure-expect: maybe-configure-tcl
-configure-expect: maybe-configure-tk
-all-expect: maybe-all-tcl
-all-expect: maybe-all-tk
-configure-itcl: maybe-configure-tcl
-configure-itcl: maybe-configure-tk
-all-itcl: maybe-all-tcl
-all-itcl: maybe-all-tk
-install-itcl: maybe-install-tcl
-install-strip-itcl: maybe-install-strip-tcl
-configure-tk: maybe-configure-tcl
-all-tk: maybe-all-tcl
-all-sid: maybe-all-libiberty
-all-sid: maybe-all-bfd
-all-sid: maybe-all-opcodes
-all-sid: maybe-all-tcl
-all-sid: maybe-all-tk
-install-sid: maybe-install-tcl
-install-strip-sid: maybe-install-strip-tcl
-install-sid: maybe-install-tk
-install-strip-sid: maybe-install-strip-tk
-configure-sim: maybe-configure-intl
-all-sim: maybe-all-intl
-all-sim: maybe-all-libiberty
-all-sim: maybe-all-bfd
-all-sim: maybe-all-opcodes
-all-sim: maybe-all-readline
-all-sim: maybe-configure-gdb
-all-fastjar: maybe-all-zlib
-all-fastjar: maybe-all-build-texinfo
-all-fastjar: maybe-all-libiberty
-all-bison: maybe-all-intl
-all-bison: maybe-all-build-texinfo
-all-flex: maybe-all-build-bison
-all-flex: maybe-all-intl
-all-flex: maybe-all-m4
-all-flex: maybe-all-build-texinfo
-all-m4: maybe-all-intl
-all-m4: maybe-all-build-texinfo
-configure-target-fastjar: maybe-configure-target-zlib
-all-target-fastjar: maybe-all-target-zlib
-configure-target-libgo: maybe-configure-target-libffi
-configure-target-libgo: maybe-all-target-libstdc++-v3
-all-target-libgo: maybe-all-target-libbacktrace
-all-target-libgo: maybe-all-target-libffi
-all-target-libgo: maybe-all-target-libatomic
-configure-target-libstdc++-v3: maybe-configure-target-libgomp
-
-configure-stage1-target-libstdc++-v3: maybe-configure-stage1-target-libgomp
-configure-stage2-target-libstdc++-v3: maybe-configure-stage2-target-libgomp
-configure-stage3-target-libstdc++-v3: maybe-configure-stage3-target-libgomp
-configure-stage4-target-libstdc++-v3: maybe-configure-stage4-target-libgomp
-configure-stageprofile-target-libstdc++-v3: maybe-configure-stageprofile-target-libgomp
-configure-stagefeedback-target-libstdc++-v3: maybe-configure-stagefeedback-target-libgomp
-configure-target-liboffloadmic: maybe-configure-target-libgomp
-configure-target-libsanitizer: maybe-all-target-libstdc++-v3
-
-configure-stage1-target-libsanitizer: maybe-all-stage1-target-libstdc++-v3
-configure-stage2-target-libsanitizer: maybe-all-stage2-target-libstdc++-v3
-configure-stage3-target-libsanitizer: maybe-all-stage3-target-libstdc++-v3
-configure-stage4-target-libsanitizer: maybe-all-stage4-target-libstdc++-v3
-configure-stageprofile-target-libsanitizer: maybe-all-stageprofile-target-libstdc++-v3
-configure-stagefeedback-target-libsanitizer: maybe-all-stagefeedback-target-libstdc++-v3
-configure-target-libvtv: maybe-all-target-libstdc++-v3
-
-configure-stage1-target-libvtv: maybe-all-stage1-target-libstdc++-v3
-configure-stage2-target-libvtv: maybe-all-stage2-target-libstdc++-v3
-configure-stage3-target-libvtv: maybe-all-stage3-target-libstdc++-v3
-configure-stage4-target-libvtv: maybe-all-stage4-target-libstdc++-v3
-configure-stageprofile-target-libvtv: maybe-all-stageprofile-target-libstdc++-v3
-configure-stagefeedback-target-libvtv: maybe-all-stagefeedback-target-libstdc++-v3
-all-target-libstdc++-v3: maybe-configure-target-libgomp
-
-all-stage1-target-libstdc++-v3: maybe-configure-stage1-target-libgomp
-all-stage2-target-libstdc++-v3: maybe-configure-stage2-target-libgomp
-all-stage3-target-libstdc++-v3: maybe-configure-stage3-target-libgomp
-all-stage4-target-libstdc++-v3: maybe-configure-stage4-target-libgomp
-all-stageprofile-target-libstdc++-v3: maybe-configure-stageprofile-target-libgomp
-all-stagefeedback-target-libstdc++-v3: maybe-configure-stagefeedback-target-libgomp
-all-target-liboffloadmic: maybe-all-target-libgomp
-install-target-libgo: maybe-install-target-libatomic
-install-target-libgfortran: maybe-install-target-libquadmath
-install-target-libgfortran: maybe-install-target-libgcc
-install-target-libsanitizer: maybe-install-target-libstdc++-v3
-install-target-libsanitizer: maybe-install-target-libgcc
-install-target-libvtv: maybe-install-target-libstdc++-v3
-install-target-libvtv: maybe-install-target-libgcc
-install-target-libcilkrts: maybe-install-target-libstdc++-v3
-install-target-libcilkrts: maybe-install-target-libgcc
-install-target-liboffloadmic: maybe-install-target-libstdc++-v3
-install-target-liboffloadmic: maybe-install-target-libgcc
-install-target-libitm: maybe-install-target-libgcc
-install-target-libobjc: maybe-install-target-libgcc
-install-target-libstdc++-v3: maybe-install-target-libgcc
-all-target-libgloss: maybe-all-target-newlib
-all-target-winsup: maybe-all-target-libtermcap
-configure-target-newlib: maybe-all-binutils
-configure-target-newlib: maybe-all-ld
-configure-target-libgfortran: maybe-all-target-libquadmath
-configure-target-libgfortran: maybe-all-target-libbacktrace
-
-
-# Dependencies for target modules on other target modules are
-# described by lang_env_dependencies; the defaults apply to anything
-# not mentioned there.
-
-
-
-
-
-configure-target-libstdc++-v3: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-libsanitizer: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-libmpx: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-libvtv: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-libcilkrts: maybe-all-target-newlib maybe-all-target-libgloss
-configure-target-libcilkrts: maybe-all-target-libstdc++-v3
-
-configure-target-liboffloadmic: maybe-all-target-newlib maybe-all-target-libgloss
-configure-target-liboffloadmic: maybe-all-target-libstdc++-v3
-
-configure-target-libssp: maybe-all-target-newlib maybe-all-target-libgloss
-
-
-
-configure-target-libbacktrace: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-libquadmath: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-libgfortran: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-libobjc: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-libgo: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-libtermcap: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-winsup: maybe-all-target-newlib maybe-all-target-libgloss
-
-
-configure-target-libffi: maybe-all-target-newlib maybe-all-target-libgloss
-configure-target-libffi: maybe-all-target-libstdc++-v3
-
-configure-target-zlib: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-rda: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-libada: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-libgomp: maybe-all-target-newlib maybe-all-target-libgloss
-
-configure-target-libitm: maybe-all-target-newlib maybe-all-target-libgloss
-configure-target-libitm: maybe-all-target-libstdc++-v3
-
-configure-target-libatomic: maybe-all-target-newlib maybe-all-target-libgloss
-
-
-CONFIGURE_GDB_TK =
-GDB_TK =
-INSTALL_GDB_TK =
-configure-gdb: $(CONFIGURE_GDB_TK)
-all-gdb: $(gdbnlmrequirements) $(GDB_TK)
-install-gdb: $(INSTALL_GDB_TK)
-
-# Serialization dependencies. Host configures don't work well in parallel to
-# each other, due to contention over config.cache. Target configures and
-# build configures are similar.
-# serdep.tmp
-
-# --------------------------------
-# Regenerating top level configury
-# --------------------------------
-
-# Rebuilding Makefile.in, using autogen.
-AUTOGEN = autogen
-$(srcdir)/Makefile.in: # $(srcdir)/Makefile.tpl $(srcdir)/Makefile.def
- cd $(srcdir) && $(AUTOGEN) Makefile.def
-
-# Rebuilding Makefile.
-Makefile: $(srcdir)/Makefile.in config.status
- CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
-
-config.status: configure
- CONFIG_SHELL="$(SHELL)" $(SHELL) ./config.status --recheck
-
-# Rebuilding configure.
-AUTOCONF = autoconf
-$(srcdir)/configure: # $(srcdir)/configure.ac $(srcdir)/config/acx.m4 \
- $(srcdir)/config/override.m4 $(srcdir)/config/proginstall.m4 \
- $(srcdir)/config/elf.m4 $(srcdir)/config/isl.m4 \
- $(srcdir)/libtool.m4 $(srcdir)/ltoptions.m4 $(srcdir)/ltsugar.m4 \
- $(srcdir)/ltversion.m4 $(srcdir)/lt~obsolete.m4
- cd $(srcdir) && $(AUTOCONF)
-
-# ------------------------------
-# Special directives to GNU Make
-# ------------------------------
-
-# Don't pass command-line variables to submakes.
-.NOEXPORT:
-MAKEOVERRIDES=
-
-# end of Makefile.in
diff --git a/support/sdbinutils/bfd/config.log b/support/sdbinutils/bfd/config.log
deleted file mode 100644
index 50aff7d..0000000
--- a/support/sdbinutils/bfd/config.log
+++ /dev/null
@@ -1,2012 +0,0 @@
-This file contains any messages produced by compilers while
-running configure, to aid debugging if configure makes a mistake.
-
-It was created by bfd configure 2.30, which was
-generated by GNU Autoconf 2.64. Invocation command line was
-
- $ /home/xavier/sdcc_gas/support/sdbinutils/bfd/configure --srcdir=.././bfd --cache-file=./config.cache --with-system-zlib --disable-option-checking --prefix=/usr/local --disable-mcs51-port --disable-z80-port --disable-z180-port --disable-r2k-port --disable-r3ka-port --disable-gbz80-port --disable-tlcs90-port --disable-ez80_z80-port --disable-ds390-port --disable-ds400-port --disable-pic14-port --disable-pic16-port --disable-hc08-port --disable-s08-port --disable-pdk13-port --disable-pdk14-port --disable-pdk15-port --enable-pdk16-port --disable-ucsim --disable-device-lib --disable-packihx --disable-pdk16-port --cache-file=/dev/null --program-transform-name=s,y,y, --disable-option-checking --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --target=x86_64-pc-linux-gnu
-
-## --------- ##
-## Platform. ##
-## --------- ##
-
-hostname = xavier-asus
-uname -m = x86_64
-uname -r = 4.15.0-65-generic
-uname -s = Linux
-uname -v = #74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019
-
-/usr/bin/uname -p = unknown
-/bin/uname -X = unknown
-
-/bin/arch = unknown
-/usr/bin/arch -k = unknown
-/usr/convex/getsysinfo = unknown
-/usr/bin/hostinfo = unknown
-/bin/machine = unknown
-/usr/bin/oslevel = unknown
-/bin/universe = unknown
-
-PATH: /home/xavier/.cargo/bin
-PATH: /home/xavier/.local/bin
-PATH: /usr/local/sbin
-PATH: /usr/local/bin
-PATH: /usr/sbin
-PATH: /usr/bin
-PATH: /sbin
-PATH: /bin
-PATH: /usr/games
-PATH: /usr/local/games
-PATH: /snap/bin
-PATH: /usr/local/xtensa-esp32-elf/bin
-
-
-## ----------- ##
-## Core tests. ##
-## ----------- ##
-
-configure:2570: checking build system type
-configure:2584: result: x86_64-pc-linux-gnu
-configure:2604: checking host system type
-configure:2617: result: x86_64-pc-linux-gnu
-configure:2637: checking target system type
-configure:2650: result: x86_64-pc-linux-gnu
-configure:2684: checking for x86_64-pc-linux-gnu-gcc
-configure:2711: result: gcc
-configure:2980: checking for C compiler version
-configure:2989: gcc --version >&5
-gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
-Copyright (C) 2017 Free Software Foundation, Inc.
-This is free software; see the source for copying conditions. There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-configure:3000: $? = 0
-configure:2989: gcc -v >&5
-Using built-in specs.
-COLLECT_GCC=gcc
-COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
-OFFLOAD_TARGET_NAMES=nvptx-none
-OFFLOAD_TARGET_DEFAULT=1
-Target: x86_64-linux-gnu
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
-Thread model: posix
-gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
-configure:3000: $? = 0
-configure:2989: gcc -V >&5
-gcc: error: unrecognized command line option '-V'
-gcc: fatal error: no input files
-compilation terminated.
-configure:3000: $? = 1
-configure:2989: gcc -qversion >&5
-gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
-gcc: fatal error: no input files
-compilation terminated.
-configure:3000: $? = 1
-configure:3020: checking for C compiler default output file name
-configure:3042: gcc -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:3046: $? = 0
-configure:3083: result: a.out
-configure:3099: checking whether the C compiler works
-configure:3108: ./a.out
-configure:3112: $? = 0
-configure:3127: result: yes
-configure:3134: checking whether we are cross compiling
-configure:3136: result: no
-configure:3139: checking for suffix of executables
-configure:3146: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:3150: $? = 0
-configure:3172: result:
-configure:3178: checking for suffix of object files
-configure:3200: gcc -c -g -O2 conftest.c >&5
-configure:3204: $? = 0
-configure:3225: result: o
-configure:3229: checking whether we are using the GNU C compiler
-configure:3248: gcc -c -g -O2 conftest.c >&5
-configure:3248: $? = 0
-configure:3257: result: yes
-configure:3266: checking whether gcc accepts -g
-configure:3286: gcc -c -g conftest.c >&5
-configure:3286: $? = 0
-configure:3327: result: yes
-configure:3344: checking for gcc option to accept ISO C89
-configure:3408: gcc -c -g -O2 conftest.c >&5
-configure:3408: $? = 0
-configure:3421: result: none needed
-configure:3442: checking for library containing strerror
-configure:3473: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:3473: $? = 0
-configure:3490: result: none required
-configure:3515: checking for a BSD-compatible install
-configure:3583: result: /usr/bin/install -c
-configure:3594: checking whether build environment is sane
-configure:3644: result: yes
-configure:3785: checking for a thread-safe mkdir -p
-configure:3824: result: /bin/mkdir -p
-configure:3837: checking for gawk
-configure:3864: result: gawk
-configure:3875: checking whether make sets $(MAKE)
-configure:3897: result: yes
-configure:3927: checking for style of include used by make
-configure:3955: result: GNU
-configure:4041: checking dependency style of gcc
-configure:4152: result: gcc3
-configure:4172: checking for x86_64-pc-linux-gnu-ar
-configure:4199: result: ar
-configure:4264: checking for x86_64-pc-linux-gnu-ranlib
-configure:4291: result: ranlib
-configure:4394: checking for x86_64-pc-linux-gnu-gcc
-configure:4421: result: gcc
-configure:4690: checking for C compiler version
-configure:4699: gcc --version >&5
-gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
-Copyright (C) 2017 Free Software Foundation, Inc.
-This is free software; see the source for copying conditions. There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-configure:4710: $? = 0
-configure:4699: gcc -v >&5
-Using built-in specs.
-COLLECT_GCC=gcc
-COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
-OFFLOAD_TARGET_NAMES=nvptx-none
-OFFLOAD_TARGET_DEFAULT=1
-Target: x86_64-linux-gnu
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
-Thread model: posix
-gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
-configure:4710: $? = 0
-configure:4699: gcc -V >&5
-gcc: error: unrecognized command line option '-V'
-gcc: fatal error: no input files
-compilation terminated.
-configure:4710: $? = 1
-configure:4699: gcc -qversion >&5
-gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
-gcc: fatal error: no input files
-compilation terminated.
-configure:4710: $? = 1
-configure:4714: checking whether we are using the GNU C compiler
-configure:4742: result: yes
-configure:4751: checking whether gcc accepts -g
-configure:4812: result: yes
-configure:4829: checking for gcc option to accept ISO C89
-configure:4906: result: none needed
-configure:4931: checking how to run the C preprocessor
-configure:4962: gcc -E conftest.c
-configure:4962: $? = 0
-configure:4976: gcc -E conftest.c
-conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:4976: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:5001: result: gcc -E
-configure:5021: gcc -E conftest.c
-configure:5021: $? = 0
-configure:5035: gcc -E conftest.c
-conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:5035: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:5064: checking for grep that handles long lines and -e
-configure:5122: result: /bin/grep
-configure:5127: checking for egrep
-configure:5189: result: /bin/grep -E
-configure:5194: checking for ANSI C header files
-configure:5214: gcc -c -g -O2 conftest.c >&5
-configure:5214: $? = 0
-configure:5287: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:5287: $? = 0
-configure:5287: ./conftest
-configure:5287: $? = 0
-configure:5298: result: yes
-configure:5311: checking for sys/types.h
-configure:5311: gcc -c -g -O2 conftest.c >&5
-configure:5311: $? = 0
-configure:5311: result: yes
-configure:5311: checking for sys/stat.h
-configure:5311: gcc -c -g -O2 conftest.c >&5
-configure:5311: $? = 0
-configure:5311: result: yes
-configure:5311: checking for stdlib.h
-configure:5311: gcc -c -g -O2 conftest.c >&5
-configure:5311: $? = 0
-configure:5311: result: yes
-configure:5311: checking for string.h
-configure:5311: gcc -c -g -O2 conftest.c >&5
-configure:5311: $? = 0
-configure:5311: result: yes
-configure:5311: checking for memory.h
-configure:5311: gcc -c -g -O2 conftest.c >&5
-configure:5311: $? = 0
-configure:5311: result: yes
-configure:5311: checking for strings.h
-configure:5311: gcc -c -g -O2 conftest.c >&5
-configure:5311: $? = 0
-configure:5311: result: yes
-configure:5311: checking for inttypes.h
-configure:5311: gcc -c -g -O2 conftest.c >&5
-configure:5311: $? = 0
-configure:5311: result: yes
-configure:5311: checking for stdint.h
-configure:5311: gcc -c -g -O2 conftest.c >&5
-configure:5311: $? = 0
-configure:5311: result: yes
-configure:5311: checking for unistd.h
-configure:5311: gcc -c -g -O2 conftest.c >&5
-configure:5311: $? = 0
-configure:5311: result: yes
-configure:5325: checking minix/config.h usability
-configure:5325: gcc -c -g -O2 conftest.c >&5
-conftest.c:54:10: fatal error: minix/config.h: No such file or directory
- #include <minix/config.h>
- ^~~~~~~~~~~~~~~~
-compilation terminated.
-configure:5325: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| #include <minix/config.h>
-configure:5325: result: no
-configure:5325: checking minix/config.h presence
-configure:5325: gcc -E conftest.c
-conftest.c:21:10: fatal error: minix/config.h: No such file or directory
- #include <minix/config.h>
- ^~~~~~~~~~~~~~~~
-compilation terminated.
-configure:5325: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| /* end confdefs.h. */
-| #include <minix/config.h>
-configure:5325: result: no
-configure:5325: checking for minix/config.h
-configure:5325: result: no
-configure:5346: checking whether it is safe to define __EXTENSIONS__
-configure:5364: gcc -c -g -O2 conftest.c >&5
-configure:5364: $? = 0
-configure:5371: result: yes
-configure:5434: checking how to print strings
-configure:5461: result: printf
-configure:5482: checking for a sed that does not truncate output
-configure:5546: result: /bin/sed
-configure:5564: checking for fgrep
-configure:5626: result: /bin/grep -F
-configure:5661: checking for ld used by gcc
-configure:5728: result: ld
-configure:5735: checking if the linker (ld) is GNU ld
-configure:5750: result: yes
-configure:5762: checking for BSD- or MS-compatible name lister (nm)
-configure:5811: result: nm
-configure:5941: checking the name lister (nm) interface
-configure:5948: gcc -c -g -O2 conftest.c >&5
-configure:5951: nm "conftest.o"
-configure:5954: output
-0000000000000000 B some_variable
-configure:5961: result: BSD nm
-configure:5964: checking whether ln -s works
-configure:5968: result: yes
-configure:5976: checking the maximum length of command line arguments
-configure:6101: result: 1572864
-configure:6118: checking whether the shell understands some XSI constructs
-configure:6128: result: yes
-configure:6132: checking whether the shell understands "+="
-configure:6138: result: yes
-configure:6173: checking for ld option to reload object files
-configure:6180: result: -r
-configure:6209: checking for x86_64-pc-linux-gnu-objdump
-configure:6236: result: objdump
-configure:6308: checking how to recognize dependent libraries
-configure:6509: result: pass_all
-configure:6529: checking for x86_64-pc-linux-gnu-ar
-configure:6556: result: ar
-configure:6634: checking for x86_64-pc-linux-gnu-strip
-configure:6664: result: no
-configure:6674: checking for strip
-configure:6690: found /usr/bin/strip
-configure:6701: result: strip
-configure:6733: checking for x86_64-pc-linux-gnu-ranlib
-configure:6760: result: ranlib
-configure:6902: checking command to parse nm output from gcc object
-configure:7020: gcc -c -g -O2 conftest.c >&5
-configure:7023: $? = 0
-configure:7027: nm conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
-configure:7030: $? = 0
-configure:7084: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c conftstm.o >&5
-configure:7087: $? = 0
-configure:7125: result: ok
-configure:7220: gcc -c -g -O2 conftest.c >&5
-configure:7223: $? = 0
-configure:7973: checking for dlfcn.h
-configure:7973: gcc -c -g -O2 conftest.c >&5
-configure:7973: $? = 0
-configure:7973: result: yes
-configure:8129: checking for objdir
-configure:8144: result: .libs
-configure:8415: checking if gcc supports -fno-rtti -fno-exceptions
-configure:8433: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
-cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C
-configure:8437: $? = 0
-configure:8450: result: no
-configure:8470: checking for gcc option to produce PIC
-configure:8756: result: -fPIC -DPIC
-configure:8768: checking if gcc PIC flag -fPIC -DPIC works
-configure:8786: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5
-configure:8790: $? = 0
-configure:8803: result: yes
-configure:8827: checking if gcc static flag -static works
-configure:8855: result: yes
-configure:8870: checking if gcc supports -c -o file.o
-configure:8891: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
-configure:8895: $? = 0
-configure:8917: result: yes
-configure:8925: checking if gcc supports -c -o file.o
-configure:8972: result: yes
-configure:9005: checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries
-configure:10076: result: yes
-configure:10321: checking dynamic linker characteristics
-configure:10772: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc -Wl,-rpath -Wl,/foo conftest.c >&5
-configure:10772: $? = 0
-configure:10994: result: GNU/Linux ld.so
-configure:11101: checking how to hardcode library paths into programs
-configure:11126: result: immediate
-configure:11220: checking for shl_load
-configure:11220: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/cchpnxbQ.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/bfd/conftest.c:62: undefined reference to `shl_load'
-collect2: error: ld returned 1 exit status
-configure:11220: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| /* end confdefs.h. */
-| /* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define shl_load innocuous_shl_load
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char shl_load (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef shl_load
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char shl_load ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_shl_load || defined __stub___shl_load
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return shl_load ();
-| ;
-| return 0;
-| }
-configure:11220: result: no
-configure:11224: checking for shl_load in -ldld
-configure:11249: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldld >&5
-/usr/bin/ld: cannot find -ldld
-collect2: error: ld returned 1 exit status
-configure:11249: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| /* end confdefs.h. */
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char shl_load ();
-| int
-| main ()
-| {
-| return shl_load ();
-| ;
-| return 0;
-| }
-configure:11258: result: no
-configure:11263: checking for dlopen
-configure:11263: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/ccTBAFPX.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/bfd/conftest.c:62: undefined reference to `dlopen'
-collect2: error: ld returned 1 exit status
-configure:11263: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| /* end confdefs.h. */
-| /* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define dlopen innocuous_dlopen
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char dlopen (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef dlopen
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char dlopen ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_dlopen || defined __stub___dlopen
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return dlopen ();
-| ;
-| return 0;
-| }
-configure:11263: result: no
-configure:11267: checking for dlopen in -ldl
-configure:11292: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:11292: $? = 0
-configure:11301: result: yes
-configure:11420: checking whether a program can dlopen itself
-configure:11500: gcc -o conftest -g -O2 -DHAVE_DLFCN_H -static-libstdc++ -static-libgcc -Wl,--export-dynamic conftest.c -ldl >&5
-configure:11503: $? = 0
-configure:11521: result: yes
-configure:11526: checking whether a statically linked program can dlopen itself
-configure:11606: gcc -o conftest -g -O2 -DHAVE_DLFCN_H -static-libstdc++ -static-libgcc -Wl,--export-dynamic -static conftest.c -ldl >&5
-/tmp/ccyYkXQb.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/bfd/configure:11586: warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
-configure:11609: $? = 0
-conftest: undefined symbol: _fnord
-configure:11627: result: no
-configure:11666: checking whether stripping libraries is possible
-configure:11671: result: yes
-configure:11706: checking if libtool supports shared libraries
-configure:11708: result: yes
-configure:11711: checking whether to build shared libraries
-configure:11732: result: no
-configure:11735: checking whether to build static libraries
-configure:11739: result: yes
-configure:11789: checking for dlfcn.h
-configure:11789: result: yes
-configure:11802: checking for windows.h
-configure:11802: gcc -c -g -O2 conftest.c >&5
-conftest.c:63:10: fatal error: windows.h: No such file or directory
- #include <windows.h>
- ^~~~~~~~~~~
-compilation terminated.
-configure:11802: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-|
-| #include <windows.h>
-configure:11802: result: no
-configure:11829: checking for library containing dlopen
-configure:11860: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/cc3GX9Db.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/bfd/conftest.c:40: undefined reference to `dlopen'
-collect2: error: ld returned 1 exit status
-configure:11860: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| /* end confdefs.h. */
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char dlopen ();
-| int
-| main ()
-| {
-| return dlopen ();
-| ;
-| return 0;
-| }
-configure:11860: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:11860: $? = 0
-configure:11877: result: -ldl
-configure:11908: checking for special C compiler options needed for large files
-configure:11953: result: no
-configure:11959: checking for _FILE_OFFSET_BITS value needed for large files
-configure:11984: gcc -c -g -O2 conftest.c >&5
-configure:11984: $? = 0
-configure:12016: result: no
-configure:12405: checking whether to enable maintainer-specific portions of Makefiles
-configure:12414: result: no
-configure:12450: checking whether to install libbfd
-configure:12463: result: no
-configure:12513: checking whether NLS is requested
-configure:12516: result: no
-configure:12584: checking whether NLS is requested
-configure:12593: result: yes
-configure:12631: checking for msgfmt
-configure:12662: result: /usr/bin/msgfmt
-configure:12671: checking for gmsgfmt
-configure:12702: result: /usr/bin/msgfmt
-configure:12742: checking for xgettext
-configure:12773: result: /usr/bin/xgettext
-configure:12813: checking for msgmerge
-configure:12843: result: /usr/bin/msgmerge
-configure:12893: checking for long double
-configure:12925: result: yes
-configure:12933: checking for long long
-configure:12933: gcc -c -g -O2 conftest.c >&5
-configure:12933: $? = 0
-configure:12933: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:67:24: error: expected expression before ')' token
- if (sizeof ((long long)))
- ^
-configure:12933: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| #define USE_SECUREPLT 1
-| #define HAVE_LONG_DOUBLE 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| int
-| main ()
-| {
-| if (sizeof ((long long)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:12933: result: yes
-configure:12944: checking size of long long
-configure:12949: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:12949: $? = 0
-configure:12949: ./conftest
-configure:12949: $? = 0
-configure:12964: result: 8
-configure:12980: checking size of void *
-configure:12985: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:12985: $? = 0
-configure:12985: ./conftest
-configure:12985: $? = 0
-configure:13000: result: 8
-configure:13014: checking size of long
-configure:13019: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13019: $? = 0
-configure:13019: ./conftest
-configure:13019: $? = 0
-configure:13034: result: 8
-configure:13116: checking alloca.h usability
-configure:13116: gcc -c -g -O2 conftest.c >&5
-configure:13116: $? = 0
-configure:13116: result: yes
-configure:13116: checking alloca.h presence
-configure:13116: gcc -E conftest.c
-configure:13116: $? = 0
-configure:13116: result: yes
-configure:13116: checking for alloca.h
-configure:13116: result: yes
-configure:13116: checking stddef.h usability
-configure:13116: gcc -c -g -O2 conftest.c >&5
-configure:13116: $? = 0
-configure:13116: result: yes
-configure:13116: checking stddef.h presence
-configure:13116: gcc -E conftest.c
-configure:13116: $? = 0
-configure:13116: result: yes
-configure:13116: checking for stddef.h
-configure:13116: result: yes
-configure:13116: checking for string.h
-configure:13116: result: yes
-configure:13116: checking for strings.h
-configure:13116: result: yes
-configure:13116: checking for stdlib.h
-configure:13116: result: yes
-configure:13116: checking time.h usability
-configure:13116: gcc -c -g -O2 conftest.c >&5
-configure:13116: $? = 0
-configure:13116: result: yes
-configure:13116: checking time.h presence
-configure:13116: gcc -E conftest.c
-configure:13116: $? = 0
-configure:13116: result: yes
-configure:13116: checking for time.h
-configure:13116: result: yes
-configure:13116: checking for unistd.h
-configure:13116: result: yes
-configure:13116: checking wchar.h usability
-configure:13116: gcc -c -g -O2 conftest.c >&5
-configure:13116: $? = 0
-configure:13116: result: yes
-configure:13116: checking wchar.h presence
-configure:13116: gcc -E conftest.c
-configure:13116: $? = 0
-configure:13116: result: yes
-configure:13116: checking for wchar.h
-configure:13116: result: yes
-configure:13116: checking wctype.h usability
-configure:13116: gcc -c -g -O2 conftest.c >&5
-configure:13116: $? = 0
-configure:13116: result: yes
-configure:13116: checking wctype.h presence
-configure:13116: gcc -E conftest.c
-configure:13116: $? = 0
-configure:13116: result: yes
-configure:13116: checking for wctype.h
-configure:13116: result: yes
-configure:13130: checking fcntl.h usability
-configure:13130: gcc -c -g -O2 conftest.c >&5
-configure:13130: $? = 0
-configure:13130: result: yes
-configure:13130: checking fcntl.h presence
-configure:13130: gcc -E conftest.c
-configure:13130: $? = 0
-configure:13130: result: yes
-configure:13130: checking for fcntl.h
-configure:13130: result: yes
-configure:13130: checking sys/file.h usability
-configure:13130: gcc -c -g -O2 conftest.c >&5
-configure:13130: $? = 0
-configure:13130: result: yes
-configure:13130: checking sys/file.h presence
-configure:13130: gcc -E conftest.c
-configure:13130: $? = 0
-configure:13130: result: yes
-configure:13130: checking for sys/file.h
-configure:13130: result: yes
-configure:13130: checking sys/time.h usability
-configure:13130: gcc -c -g -O2 conftest.c >&5
-configure:13130: $? = 0
-configure:13130: result: yes
-configure:13130: checking sys/time.h presence
-configure:13130: gcc -E conftest.c
-configure:13130: $? = 0
-configure:13130: result: yes
-configure:13130: checking for sys/time.h
-configure:13130: result: yes
-configure:13130: checking for sys/stat.h
-configure:13130: result: yes
-configure:13130: checking sys/resource.h usability
-configure:13130: gcc -c -g -O2 conftest.c >&5
-configure:13130: $? = 0
-configure:13130: result: yes
-configure:13130: checking sys/resource.h presence
-configure:13130: gcc -E conftest.c
-configure:13130: $? = 0
-configure:13130: result: yes
-configure:13130: checking for sys/resource.h
-configure:13130: result: yes
-configure:13154: checking for uintmax_t
-configure:13154: gcc -c -g -O2 conftest.c >&5
-configure:13154: $? = 0
-configure:13154: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:55:24: error: expected expression before ')' token
- if (sizeof ((uintmax_t)))
- ^
-configure:13154: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| #define USE_SECUREPLT 1
-| #define HAVE_LONG_DOUBLE 1
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define SIZEOF_VOID_P 8
-| #define SIZEOF_LONG 8
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_WCHAR_H 1
-| #define HAVE_WCTYPE_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| /* end confdefs.h. */
-| #include <sys/types.h>
-| #include <stdint.h>
-|
-| int
-| main ()
-| {
-| if (sizeof ((uintmax_t)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:13154: result: yes
-configure:13163: checking for uintptr_t
-configure:13163: gcc -c -g -O2 conftest.c >&5
-configure:13163: $? = 0
-configure:13163: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:55:24: error: expected expression before ')' token
- if (sizeof ((uintptr_t)))
- ^
-configure:13163: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| #define USE_SECUREPLT 1
-| #define HAVE_LONG_DOUBLE 1
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define SIZEOF_VOID_P 8
-| #define SIZEOF_LONG 8
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_WCHAR_H 1
-| #define HAVE_WCTYPE_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| /* end confdefs.h. */
-| #include <sys/types.h>
-| #include <stdint.h>
-|
-| int
-| main ()
-| {
-| if (sizeof ((uintptr_t)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:13163: result: yes
-configure:13172: checking for int_least32_t
-configure:13172: gcc -c -g -O2 conftest.c >&5
-configure:13172: $? = 0
-configure:13172: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:55:28: error: expected expression before ')' token
- if (sizeof ((int_least32_t)))
- ^
-configure:13172: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| #define USE_SECUREPLT 1
-| #define HAVE_LONG_DOUBLE 1
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define SIZEOF_VOID_P 8
-| #define SIZEOF_LONG 8
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_WCHAR_H 1
-| #define HAVE_WCTYPE_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| /* end confdefs.h. */
-| #include <sys/types.h>
-| #include <stdint.h>
-|
-| int
-| main ()
-| {
-| if (sizeof ((int_least32_t)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:13172: result: yes
-configure:13181: checking for int_fast32_t
-configure:13181: gcc -c -g -O2 conftest.c >&5
-configure:13181: $? = 0
-configure:13181: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:55:27: error: expected expression before ')' token
- if (sizeof ((int_fast32_t)))
- ^
-configure:13181: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| #define USE_SECUREPLT 1
-| #define HAVE_LONG_DOUBLE 1
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define SIZEOF_VOID_P 8
-| #define SIZEOF_LONG 8
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_WCHAR_H 1
-| #define HAVE_WCTYPE_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| /* end confdefs.h. */
-| #include <sys/types.h>
-| #include <stdint.h>
-|
-| int
-| main ()
-| {
-| if (sizeof ((int_fast32_t)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:13181: result: yes
-configure:13190: checking for uint64_t
-configure:13190: gcc -c -g -O2 conftest.c >&5
-configure:13190: $? = 0
-configure:13190: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:55:23: error: expected expression before ')' token
- if (sizeof ((uint64_t)))
- ^
-configure:13190: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "bfd"
-| #define PACKAGE_TARNAME "bfd"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "bfd 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "bfd"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| #define USE_SECUREPLT 1
-| #define HAVE_LONG_DOUBLE 1
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define SIZEOF_VOID_P 8
-| #define SIZEOF_LONG 8
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_STDDEF_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_WCHAR_H 1
-| #define HAVE_WCTYPE_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| /* end confdefs.h. */
-| #include <sys/types.h>
-| #include <stdint.h>
-|
-| int
-| main ()
-| {
-| if (sizeof ((uint64_t)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:13190: result: yes
-configure:13271: checking what to include in bfd_stdint.h
-configure:13299: result: stdint.h (already complete)
-configure:13547: checking whether time.h and sys/time.h may both be included
-configure:13567: gcc -c -g -O2 conftest.c >&5
-configure:13567: $? = 0
-configure:13574: result: yes
-configure:13585: checking for dirent.h that defines DIR
-configure:13604: gcc -c -g -O2 conftest.c >&5
-configure:13604: $? = 0
-configure:13612: result: yes
-configure:13626: checking for library containing opendir
-configure:13657: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13657: $? = 0
-configure:13674: result: none required
-configure:13742: checking whether string.h and strings.h may both be included
-configure:13759: gcc -c -g -O2 conftest.c >&5
-configure:13759: $? = 0
-configure:13766: result: yes
-configure:13777: checking for fcntl
-configure:13777: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13777: $? = 0
-configure:13777: result: yes
-configure:13777: checking for getpagesize
-configure:13777: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13777: $? = 0
-configure:13777: result: yes
-configure:13777: checking for setitimer
-configure:13777: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13777: $? = 0
-configure:13777: result: yes
-configure:13777: checking for sysconf
-configure:13777: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13777: $? = 0
-configure:13777: result: yes
-configure:13777: checking for fdopen
-configure:13777: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13777: $? = 0
-configure:13777: result: yes
-configure:13777: checking for getuid
-configure:13777: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13777: $? = 0
-configure:13777: result: yes
-configure:13777: checking for getgid
-configure:13777: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13777: $? = 0
-configure:13777: result: yes
-configure:13777: checking for fileno
-configure:13777: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13777: $? = 0
-configure:13777: result: yes
-configure:13790: checking for strtoull
-configure:13790: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13790: $? = 0
-configure:13790: result: yes
-configure:13790: checking for getrlimit
-configure:13790: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13790: $? = 0
-configure:13790: result: yes
-configure:13801: checking whether basename is declared
-configure:13801: gcc -c -g -O2 conftest.c >&5
-configure:13801: $? = 0
-configure:13801: result: yes
-configure:13812: checking whether ftello is declared
-configure:13812: gcc -c -g -O2 conftest.c >&5
-configure:13812: $? = 0
-configure:13812: result: yes
-configure:13823: checking whether ftello64 is declared
-configure:13823: gcc -c -g -O2 conftest.c >&5
-configure:13823: $? = 0
-configure:13823: result: yes
-configure:13834: checking whether fseeko is declared
-configure:13834: gcc -c -g -O2 conftest.c >&5
-configure:13834: $? = 0
-configure:13834: result: yes
-configure:13845: checking whether fseeko64 is declared
-configure:13845: gcc -c -g -O2 conftest.c >&5
-configure:13845: $? = 0
-configure:13845: result: yes
-configure:13865: checking whether ffs is declared
-configure:13865: gcc -c -g -O2 conftest.c >&5
-configure:13865: $? = 0
-configure:13865: result: yes
-configure:13876: checking whether free is declared
-configure:13876: gcc -c -g -O2 conftest.c >&5
-configure:13876: $? = 0
-configure:13876: result: yes
-configure:13887: checking whether getenv is declared
-configure:13887: gcc -c -g -O2 conftest.c >&5
-configure:13887: $? = 0
-configure:13887: result: yes
-configure:13898: checking whether malloc is declared
-configure:13898: gcc -c -g -O2 conftest.c >&5
-configure:13898: $? = 0
-configure:13898: result: yes
-configure:13909: checking whether realloc is declared
-configure:13909: gcc -c -g -O2 conftest.c >&5
-configure:13909: $? = 0
-configure:13909: result: yes
-configure:13920: checking whether stpcpy is declared
-configure:13920: gcc -c -g -O2 conftest.c >&5
-configure:13920: $? = 0
-configure:13920: result: yes
-configure:13931: checking whether strstr is declared
-configure:13931: gcc -c -g -O2 conftest.c >&5
-configure:13931: $? = 0
-configure:13931: result: yes
-configure:13942: checking whether asprintf is declared
-configure:13942: gcc -c -g -O2 conftest.c >&5
-configure:13942: $? = 0
-configure:13942: result: yes
-configure:13953: checking whether vasprintf is declared
-configure:13953: gcc -c -g -O2 conftest.c >&5
-configure:13953: $? = 0
-configure:13953: result: yes
-configure:13964: checking whether snprintf is declared
-configure:13964: gcc -c -g -O2 conftest.c >&5
-configure:13964: $? = 0
-configure:13964: result: yes
-configure:13975: checking whether vsnprintf is declared
-configure:13975: gcc -c -g -O2 conftest.c >&5
-configure:13975: $? = 0
-configure:13975: result: yes
-configure:13986: checking whether strnlen is declared
-configure:13986: gcc -c -g -O2 conftest.c >&5
-configure:13986: $? = 0
-configure:13986: result: yes
-configure:14019: checking linker --as-needed support
-configure:14030: result: yes
-configure:14121: checking for cos in -lm
-configure:14146: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -lm -ldl >&5
-conftest.c:86:6: warning: conflicting types for built-in function 'cos' [-Wbuiltin-declaration-mismatch]
- char cos ();
- ^~~
-configure:14146: $? = 0
-configure:14155: result: yes
-configure:15863: checking for ftello
-configure:15863: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:15863: $? = 0
-configure:15863: result: yes
-configure:15863: checking for ftello64
-configure:15863: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:15863: $? = 0
-configure:15863: result: yes
-configure:15863: checking for fseeko
-configure:15863: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:15863: $? = 0
-configure:15863: result: yes
-configure:15863: checking for fseeko64
-configure:15863: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:15863: $? = 0
-configure:15863: result: yes
-configure:15863: checking for fopen64
-configure:15863: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:15863: $? = 0
-configure:15863: result: yes
-configure:15878: checking size of off_t
-configure:15883: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:15883: $? = 0
-configure:15883: ./conftest
-configure:15883: $? = 0
-configure:15898: result: 8
-configure:15909: checking file_ptr type
-configure:15918: result: BFD_HOST_64_BIT
-configure:15926: checking for stdlib.h
-configure:15926: result: yes
-configure:15926: checking for unistd.h
-configure:15926: result: yes
-configure:15939: checking for getpagesize
-configure:15939: result: yes
-configure:15948: checking for working mmap
-configure:16085: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:16085: $? = 0
-configure:16085: ./conftest
-configure:16085: $? = 0
-configure:16095: result: yes
-configure:16107: checking for madvise
-configure:16107: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:16107: $? = 0
-configure:16107: result: yes
-configure:16107: checking for mprotect
-configure:16107: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:16107: $? = 0
-configure:16107: result: yes
-configure:16269: creating ./config.status
-
-## ---------------------- ##
-## Running config.status. ##
-## ---------------------- ##
-
-This file was extended by bfd config.status 2.30, which was
-generated by GNU Autoconf 2.64. Invocation command line was
-
- CONFIG_FILES =
- CONFIG_HEADERS =
- CONFIG_LINKS =
- CONFIG_COMMANDS =
- $ ./config.status
-
-on xavier-asus
-
-config.status:1231: creating Makefile
-config.status:1231: creating doc/Makefile
-config.status:1231: creating bfd-in3.h
-config.status:1231: creating po/Makefile.in
-config.status:1231: creating config.h
-config.status:1403: config.h is unchanged
-config.status:1451: executing depfiles commands
-config.status:1451: executing libtool commands
-config.status:1451: executing default-1 commands
-config.status:1451: executing bfd_stdint.h commands
-config.status:1451: executing default commands
-
-## ---------------- ##
-## Cache variables. ##
-## ---------------- ##
-
-ac_cv_build=x86_64-pc-linux-gnu
-ac_cv_c_compiler_gnu=yes
-ac_cv_env_CC_set=set
-ac_cv_env_CC_value=gcc
-ac_cv_env_CFLAGS_set=set
-ac_cv_env_CFLAGS_value='-g -O2'
-ac_cv_env_CPPFLAGS_set=
-ac_cv_env_CPPFLAGS_value=
-ac_cv_env_CPP_set=
-ac_cv_env_CPP_value=
-ac_cv_env_LDFLAGS_set=set
-ac_cv_env_LDFLAGS_value='-static-libstdc++ -static-libgcc '
-ac_cv_env_LIBS_set=
-ac_cv_env_LIBS_value=
-ac_cv_env_build_alias_set=set
-ac_cv_env_build_alias_value=x86_64-pc-linux-gnu
-ac_cv_env_host_alias_set=set
-ac_cv_env_host_alias_value=x86_64-pc-linux-gnu
-ac_cv_env_target_alias_set=set
-ac_cv_env_target_alias_value=x86_64-pc-linux-gnu
-ac_cv_func_dlopen=no
-ac_cv_func_fcntl=yes
-ac_cv_func_fdopen=yes
-ac_cv_func_fileno=yes
-ac_cv_func_fopen64=yes
-ac_cv_func_fseeko64=yes
-ac_cv_func_fseeko=yes
-ac_cv_func_ftello64=yes
-ac_cv_func_ftello=yes
-ac_cv_func_getgid=yes
-ac_cv_func_getpagesize=yes
-ac_cv_func_getrlimit=yes
-ac_cv_func_getuid=yes
-ac_cv_func_madvise=yes
-ac_cv_func_mmap_fixed_mapped=yes
-ac_cv_func_mprotect=yes
-ac_cv_func_setitimer=yes
-ac_cv_func_shl_load=no
-ac_cv_func_strtoull=yes
-ac_cv_func_sysconf=yes
-ac_cv_have_decl_asprintf=yes
-ac_cv_have_decl_basename=yes
-ac_cv_have_decl_ffs=yes
-ac_cv_have_decl_free=yes
-ac_cv_have_decl_fseeko64=yes
-ac_cv_have_decl_fseeko=yes
-ac_cv_have_decl_ftello64=yes
-ac_cv_have_decl_ftello=yes
-ac_cv_have_decl_getenv=yes
-ac_cv_have_decl_malloc=yes
-ac_cv_have_decl_realloc=yes
-ac_cv_have_decl_snprintf=yes
-ac_cv_have_decl_stpcpy=yes
-ac_cv_have_decl_strnlen=yes
-ac_cv_have_decl_strstr=yes
-ac_cv_have_decl_vasprintf=yes
-ac_cv_have_decl_vsnprintf=yes
-ac_cv_header_alloca_h=yes
-ac_cv_header_dirent_dirent_h=yes
-ac_cv_header_dlfcn_h=yes
-ac_cv_header_fcntl_h=yes
-ac_cv_header_inttypes_h=yes
-ac_cv_header_memory_h=yes
-ac_cv_header_minix_config_h=no
-ac_cv_header_stdc=yes
-ac_cv_header_stddef_h=yes
-ac_cv_header_stdint_h=yes
-ac_cv_header_stdlib_h=yes
-ac_cv_header_string_h=yes
-ac_cv_header_strings_h=yes
-ac_cv_header_sys_file_h=yes
-ac_cv_header_sys_resource_h=yes
-ac_cv_header_sys_stat_h=yes
-ac_cv_header_sys_time_h=yes
-ac_cv_header_sys_types_h=yes
-ac_cv_header_time=yes
-ac_cv_header_time_h=yes
-ac_cv_header_unistd_h=yes
-ac_cv_header_wchar_h=yes
-ac_cv_header_wctype_h=yes
-ac_cv_header_windows_h=no
-ac_cv_host=x86_64-pc-linux-gnu
-ac_cv_lib_dl_dlopen=yes
-ac_cv_lib_dld_shl_load=no
-ac_cv_lib_m_cos=yes
-ac_cv_objext=o
-ac_cv_path_EGREP='/bin/grep -E'
-ac_cv_path_FGREP='/bin/grep -F'
-ac_cv_path_GMSGFMT=/usr/bin/msgfmt
-ac_cv_path_GREP=/bin/grep
-ac_cv_path_MSGFMT=/usr/bin/msgfmt
-ac_cv_path_MSGMERGE=/usr/bin/msgmerge
-ac_cv_path_SED=/bin/sed
-ac_cv_path_XGETTEXT=/usr/bin/xgettext
-ac_cv_path_mkdir=/bin/mkdir
-ac_cv_prog_AR=ar
-ac_cv_prog_AWK=gawk
-ac_cv_prog_CC=gcc
-ac_cv_prog_CPP='gcc -E'
-ac_cv_prog_OBJDUMP=objdump
-ac_cv_prog_RANLIB=ranlib
-ac_cv_prog_ac_ct_STRIP=strip
-ac_cv_prog_cc_c89=
-ac_cv_prog_cc_g=yes
-ac_cv_prog_make_make_set=yes
-ac_cv_safe_to_define___extensions__=yes
-ac_cv_search_dlopen=-ldl
-ac_cv_search_opendir='none required'
-ac_cv_search_strerror='none required'
-ac_cv_sizeof_long=8
-ac_cv_sizeof_long_long=8
-ac_cv_sizeof_off_t=8
-ac_cv_sizeof_void_p=8
-ac_cv_sys_file_offset_bits=no
-ac_cv_sys_largefile_CC=no
-ac_cv_target=x86_64-pc-linux-gnu
-ac_cv_type_int_fast32_t=yes
-ac_cv_type_int_least32_t=yes
-ac_cv_type_long_double=yes
-ac_cv_type_long_long=yes
-ac_cv_type_u_int64_t=no
-ac_cv_type_uint64_t=yes
-ac_cv_type_uintmax_t=yes
-ac_cv_type_uintptr_t=yes
-acx_cv_header_stdint=stdint.h
-acx_cv_header_stdint_kind='(already complete)'
-am_cv_CC_dependencies_compiler_type=gcc3
-bfd_cv_ld_as_needed=yes
-gcc_cv_header_string=yes
-lt_cv_deplibs_check_method=pass_all
-lt_cv_dlopen=dlopen
-lt_cv_dlopen_libs=-ldl
-lt_cv_dlopen_self=yes
-lt_cv_dlopen_self_static=no
-lt_cv_file_magic_cmd='$MAGIC_CMD'
-lt_cv_file_magic_test_file=
-lt_cv_ld_reload_flag=-r
-lt_cv_nm_interface='BSD nm'
-lt_cv_objdir=.libs
-lt_cv_path_LD=ld
-lt_cv_path_NM=nm
-lt_cv_prog_compiler_c_o=yes
-lt_cv_prog_compiler_pic_works=yes
-lt_cv_prog_compiler_rtti_exceptions=no
-lt_cv_prog_compiler_static_works=yes
-lt_cv_prog_gnu_ld=yes
-lt_cv_shlibpath_overrides_runpath=yes
-lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
-lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
-lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
-lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
-lt_cv_sys_max_cmd_len=1572864
-
-## ----------------- ##
-## Output variables. ##
-## ----------------- ##
-
-ACLOCAL='${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run aclocal-1.11'
-AMDEPBACKSLASH='\'
-AMDEP_FALSE='#'
-AMDEP_TRUE=''
-AMTAR='$${TAR-tar}'
-AR='ar'
-AUTOCONF='${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run autoconf'
-AUTOHEADER='${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run autoheader'
-AUTOMAKE='${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run automake-1.11'
-AWK='gawk'
-BFD_HOSTPTR_T='unsigned long'
-BFD_HOST_64BIT_LONG='1'
-BFD_HOST_64BIT_LONG_LONG='0'
-BFD_HOST_64_BIT='long'
-BFD_HOST_64_BIT_DEFINED='1'
-BFD_HOST_U_64_BIT='unsigned long'
-CATALOGS=''
-CATOBJEXT=''
-CC='gcc'
-CCDEPMODE='depmode=gcc3'
-CC_FOR_BUILD='gcc'
-CFLAGS='-g -O2'
-COREFILE=''
-COREFLAG=''
-CPP='gcc -E'
-CPPFLAGS=''
-CYGPATH_W='echo'
-DATADIRNAME=''
-DEBUGDIR='${exec_prefix}/lib/debug'
-DEFS='-DHAVE_CONFIG_H'
-DEPDIR='.deps'
-DSYMUTIL=''
-DUMPBIN=''
-ECHO_C=''
-ECHO_N='-n'
-ECHO_T=''
-EGREP='/bin/grep -E'
-EXEEXT=''
-EXEEXT_FOR_BUILD='$(EXEEXT)'
-FGREP='/bin/grep -F'
-GENCAT=''
-GENINSRC_NEVER_FALSE=''
-GENINSRC_NEVER_TRUE='#'
-GMSGFMT='/usr/bin/msgfmt'
-GREP='/bin/grep'
-HDEFINES=''
-INCINTL=''
-INSTALL_DATA='/usr/bin/install -c -m 644'
-INSTALL_LIBBFD_FALSE=''
-INSTALL_LIBBFD_TRUE='#'
-INSTALL_PROGRAM='/usr/bin/install -c'
-INSTALL_SCRIPT='/usr/bin/install -c'
-INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
-INSTOBJEXT=''
-LD='ld -m elf_x86_64'
-LDFLAGS='-static-libstdc++ -static-libgcc '
-LIBINTL=''
-LIBINTL_DEP=''
-LIBM='-lm'
-LIBOBJS=''
-LIBS='-ldl '
-LIBTOOL='$(SHELL) $(top_builddir)/libtool'
-LIPO=''
-LN_S='ln -s'
-LTLIBOBJS=''
-MAINT='#'
-MAINTAINER_MODE_FALSE=''
-MAINTAINER_MODE_TRUE='#'
-MAKEINFO='makeinfo --split-size=5000000'
-MKDIR_P='/bin/mkdir -p'
-MKINSTALLDIRS='$(top_builddir)/./../mkinstalldirs'
-MSGFMT='/usr/bin/msgfmt'
-MSGMERGE='/usr/bin/msgmerge'
-NM='nm'
-NMEDIT=''
-NO_WERROR=''
-OBJDUMP='objdump'
-OBJEXT='o'
-OTOOL64=''
-OTOOL=''
-PACKAGE='bfd'
-PACKAGE_BUGREPORT=''
-PACKAGE_NAME='bfd'
-PACKAGE_STRING='bfd 2.30'
-PACKAGE_TARNAME='bfd'
-PACKAGE_URL=''
-PACKAGE_VERSION='2.30'
-PATH_SEPARATOR=':'
-PKGVERSION='(sdbinutils derived from GNU Binutils) '
-PLUGINS_FALSE='#'
-PLUGINS_TRUE=''
-POSUB=''
-RANLIB='ranlib'
-REPORT_BUGS_TEXI='@uref{https://sourceforge.net/p/sdcc/bugs/}'
-REPORT_BUGS_TO='<https://sourceforge.net/p/sdcc/bugs/>'
-SED='/bin/sed'
-SET_MAKE=''
-SHARED_LDFLAGS=''
-SHARED_LIBADD=''
-SHELL='/bin/bash'
-STRIP='strip'
-TDEFINES=' '
-USE_NLS='yes'
-VERSION='2.30'
-WARN_CFLAGS='-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144'
-WARN_CFLAGS_FOR_BUILD='-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144'
-WARN_WRITE_STRINGS='-Wwrite-strings'
-XGETTEXT='/usr/bin/xgettext'
-ac_ct_CC=''
-ac_ct_DUMPBIN=''
-all_backends='$(BFD32_BACKENDS)'
-am__EXEEXT_FALSE=''
-am__EXEEXT_TRUE='#'
-am__fastdepCC_FALSE='#'
-am__fastdepCC_TRUE=''
-am__include='include'
-am__isrc=''
-am__leading_dot='.'
-am__nodep='_no'
-am__quote=''
-am__tar='$${TAR-tar} chof - "$$tardir"'
-am__untar='$${TAR-tar} xf -'
-bfd64_libs=''
-bfd_backends=' asxxxx.lo plugin.lo'
-bfd_default_target_size='32'
-bfd_file_ptr='BFD_HOST_64_BIT'
-bfd_machines=' cpu-z80.lo cpu-plugin.lo'
-bfd_ufile_ptr='BFD_HOST_U_64_BIT'
-bfdincludedir='$(exec_prefix)/$(host_noncanonical)/$(target_noncanonical)/include'
-bfdlibdir='$(exec_prefix)/$(host_noncanonical)/$(target_noncanonical)/lib'
-bindir='${exec_prefix}/bin'
-build='x86_64-pc-linux-gnu'
-build_alias='x86_64-pc-linux-gnu'
-build_cpu='x86_64'
-build_os='linux-gnu'
-build_vendor='pc'
-datadir='${datarootdir}'
-datarootdir='${prefix}/share'
-docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
-dvidir='${docdir}'
-exec_prefix='${prefix}'
-havevecs='-DHAVE_asxxxx_vec -DHAVE_plugin_vec'
-host='x86_64-pc-linux-gnu'
-host_alias='x86_64-pc-linux-gnu'
-host_cpu='x86_64'
-host_noncanonical='x86_64-pc-linux-gnu'
-host_os='linux-gnu'
-host_vendor='pc'
-htmldir='${docdir}'
-includedir='${prefix}/include'
-infodir='${datarootdir}/info'
-install_sh='${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/install-sh'
-libdir='${exec_prefix}/lib'
-libexecdir='${exec_prefix}/libexec'
-localedir='${datarootdir}/locale'
-localstatedir='${prefix}/var'
-lt_cv_dlopen_libs='-ldl'
-mandir='${datarootdir}/man'
-mkdir_p='/bin/mkdir -p'
-oldincludedir='/usr/include'
-pdfdir='${docdir}'
-prefix='/usr/local'
-program_transform_name='s,y,y,'
-psdir='${docdir}'
-sbindir='${exec_prefix}/sbin'
-sharedstatedir='${prefix}/com'
-supports_plugins='1'
-sysconfdir='${prefix}/etc'
-target='asxxxx-unknown-unknown'
-target_alias='x86_64-pc-linux-gnu'
-target_cpu='x86_64'
-target_noncanonical='x86_64-pc-linux-gnu'
-target_os='linux-gnu'
-target_vendor='pc'
-tdefaults=' -DDEFAULT_VECTOR=asxxxx_vec -DSELECT_VECS='\''&asxxxx_vec,&plugin_vec'\'' -DSELECT_ARCHITECTURES='\''&bfd_z80_arch,&bfd_plugin_arch'\'''
-wordsize='32'
-zlibdir=''
-zlibinc=''
-
-## ----------- ##
-## confdefs.h. ##
-## ----------- ##
-
-/* confdefs.h */
-#define PACKAGE_NAME "bfd"
-#define PACKAGE_TARNAME "bfd"
-#define PACKAGE_VERSION "2.30"
-#define PACKAGE_STRING "bfd 2.30"
-#define PACKAGE_BUGREPORT ""
-#define PACKAGE_URL ""
-#define PACKAGE "bfd"
-#define VERSION "2.30"
-#define STDC_HEADERS 1
-#define HAVE_SYS_TYPES_H 1
-#define HAVE_SYS_STAT_H 1
-#define HAVE_STDLIB_H 1
-#define HAVE_STRING_H 1
-#define HAVE_MEMORY_H 1
-#define HAVE_STRINGS_H 1
-#define HAVE_INTTYPES_H 1
-#define HAVE_STDINT_H 1
-#define HAVE_UNISTD_H 1
-#define __EXTENSIONS__ 1
-#define _ALL_SOURCE 1
-#define _GNU_SOURCE 1
-#define _POSIX_PTHREAD_SEMANTICS 1
-#define _TANDEM_SOURCE 1
-#define HAVE_DLFCN_H 1
-#define LT_OBJDIR ".libs/"
-#define HAVE_DLFCN_H 1
-#define USE_SECUREPLT 1
-#define HAVE_LONG_DOUBLE 1
-#define HAVE_LONG_LONG 1
-#define SIZEOF_LONG_LONG 8
-#define SIZEOF_VOID_P 8
-#define SIZEOF_LONG 8
-#define HAVE_ALLOCA_H 1
-#define HAVE_STDDEF_H 1
-#define HAVE_STRING_H 1
-#define HAVE_STRINGS_H 1
-#define HAVE_STDLIB_H 1
-#define HAVE_TIME_H 1
-#define HAVE_UNISTD_H 1
-#define HAVE_WCHAR_H 1
-#define HAVE_WCTYPE_H 1
-#define HAVE_FCNTL_H 1
-#define HAVE_SYS_FILE_H 1
-#define HAVE_SYS_TIME_H 1
-#define HAVE_SYS_STAT_H 1
-#define HAVE_SYS_RESOURCE_H 1
-#define TIME_WITH_SYS_TIME 1
-#define HAVE_DIRENT_H 1
-#define STRING_WITH_STRINGS 1
-#define HAVE_FCNTL 1
-#define HAVE_GETPAGESIZE 1
-#define HAVE_SETITIMER 1
-#define HAVE_SYSCONF 1
-#define HAVE_FDOPEN 1
-#define HAVE_GETUID 1
-#define HAVE_GETGID 1
-#define HAVE_FILENO 1
-#define HAVE_STRTOULL 1
-#define HAVE_GETRLIMIT 1
-#define HAVE_DECL_BASENAME 1
-#define HAVE_DECL_FTELLO 1
-#define HAVE_DECL_FTELLO64 1
-#define HAVE_DECL_FSEEKO 1
-#define HAVE_DECL_FSEEKO64 1
-#define HAVE_DECL_FFS 1
-#define HAVE_DECL_FREE 1
-#define HAVE_DECL_GETENV 1
-#define HAVE_DECL_MALLOC 1
-#define HAVE_DECL_REALLOC 1
-#define HAVE_DECL_STPCPY 1
-#define HAVE_DECL_STRSTR 1
-#define HAVE_DECL_ASPRINTF 1
-#define HAVE_DECL_VASPRINTF 1
-#define HAVE_DECL_SNPRINTF 1
-#define HAVE_DECL_VSNPRINTF 1
-#define HAVE_DECL_STRNLEN 1
-#define HAVE_FTELLO 1
-#define HAVE_FTELLO64 1
-#define HAVE_FSEEKO 1
-#define HAVE_FSEEKO64 1
-#define HAVE_FOPEN64 1
-#define SIZEOF_OFF_T 8
-#define HAVE_STDLIB_H 1
-#define HAVE_UNISTD_H 1
-#define HAVE_GETPAGESIZE 1
-#define HAVE_MMAP 1
-#define HAVE_MADVISE 1
-#define HAVE_MPROTECT 1
-
-configure: exit 0
diff --git a/support/sdbinutils/bfd/config.status b/support/sdbinutils/bfd/config.status
deleted file mode 100755
index 06ac3f9..0000000
--- a/support/sdbinutils/bfd/config.status
+++ /dev/null
@@ -1,2688 +0,0 @@
-#! /bin/bash
-# Generated by configure.
-# Run this file to recreate the current configuration.
-# Compiler output produced by configure, useful for debugging
-# configure, is in config.log if it exists.
-
-debug=false
-ac_cs_recheck=false
-ac_cs_silent=false
-
-SHELL=${CONFIG_SHELL-/bin/bash}
-export SHELL
-## -------------------- ##
-## M4sh Initialization. ##
-## -------------------- ##
-
-# Be more Bourne compatible
-DUALCASE=1; export DUALCASE # for MKS sh
-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
- emulate sh
- NULLCMD=:
- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
- # is contrary to our usage. Disable this feature.
- alias -g '${1+"$@"}'='"$@"'
- setopt NO_GLOB_SUBST
-else
- case `(set -o) 2>/dev/null` in #(
- *posix*) :
- set -o posix ;; #(
- *) :
- ;;
-esac
-fi
-
-
-as_nl='
-'
-export as_nl
-# Printing a long string crashes Solaris 7 /usr/bin/printf.
-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
-# Prefer a ksh shell builtin over an external printf program on Solaris,
-# but without wasting forks for bash or zsh.
-if test -z "$BASH_VERSION$ZSH_VERSION" \
- && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='print -r --'
- as_echo_n='print -rn --'
-elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='printf %s\n'
- as_echo_n='printf %s'
-else
- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
- as_echo_n='/usr/ucb/echo -n'
- else
- as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
- as_echo_n_body='eval
- arg=$1;
- case $arg in #(
- *"$as_nl"*)
- expr "X$arg" : "X\\(.*\\)$as_nl";
- arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
- esac;
- expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
- '
- export as_echo_n_body
- as_echo_n='sh -c $as_echo_n_body as_echo'
- fi
- export as_echo_body
- as_echo='sh -c $as_echo_body as_echo'
-fi
-
-# The user is always right.
-if test "${PATH_SEPARATOR+set}" != set; then
- PATH_SEPARATOR=:
- (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
- (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
- PATH_SEPARATOR=';'
- }
-fi
-
-
-# IFS
-# We need space, tab and new line, in precisely that order. Quoting is
-# there to prevent editors from complaining about space-tab.
-# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-# splitting by setting IFS to empty value.)
-IFS=" "" $as_nl"
-
-# Find who we are. Look in the path if we contain no directory separator.
-case $0 in #((
- *[\\/]* ) as_myself=$0 ;;
- *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- done
-IFS=$as_save_IFS
-
- ;;
-esac
-# We did not find ourselves, most probably we were run as `sh COMMAND'
-# in which case we are not to be found in the path.
-if test "x$as_myself" = x; then
- as_myself=$0
-fi
-if test ! -f "$as_myself"; then
- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
- exit 1
-fi
-
-# Unset variables that we do not need and which cause bugs (e.g. in
-# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
-# suppresses any "Segmentation fault" message there. '((' could
-# trigger a bug in pdksh 5.2.14.
-for as_var in BASH_ENV ENV MAIL MAILPATH
-do eval test x\${$as_var+set} = xset \
- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
-done
-PS1='$ '
-PS2='> '
-PS4='+ '
-
-# NLS nuisances.
-LC_ALL=C
-export LC_ALL
-LANGUAGE=C
-export LANGUAGE
-
-# CDPATH.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-
-# as_fn_error ERROR [LINENO LOG_FD]
-# ---------------------------------
-# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with status $?, using 1 if that was 0.
-as_fn_error ()
-{
- as_status=$?; test $as_status -eq 0 && as_status=1
- if test "$3"; then
- as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
- fi
- $as_echo "$as_me: error: $1" >&2
- as_fn_exit $as_status
-} # as_fn_error
-
-
-# as_fn_set_status STATUS
-# -----------------------
-# Set $? to STATUS, without forking.
-as_fn_set_status ()
-{
- return $1
-} # as_fn_set_status
-
-# as_fn_exit STATUS
-# -----------------
-# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
-as_fn_exit ()
-{
- set +e
- as_fn_set_status $1
- exit $1
-} # as_fn_exit
-
-# as_fn_unset VAR
-# ---------------
-# Portably unset VAR.
-as_fn_unset ()
-{
- { eval $1=; unset $1;}
-}
-as_unset=as_fn_unset
-# as_fn_append VAR VALUE
-# ----------------------
-# Append the text in VALUE to the end of the definition contained in VAR. Take
-# advantage of any shell optimizations that allow amortized linear growth over
-# repeated appends, instead of the typical quadratic growth present in naive
-# implementations.
-if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
- eval 'as_fn_append ()
- {
- eval $1+=\$2
- }'
-else
- as_fn_append ()
- {
- eval $1=\$$1\$2
- }
-fi # as_fn_append
-
-# as_fn_arith ARG...
-# ------------------
-# Perform arithmetic evaluation on the ARGs, and store the result in the
-# global $as_val. Take advantage of shells that can avoid forks. The arguments
-# must be portable across $(()) and expr.
-if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
- eval 'as_fn_arith ()
- {
- as_val=$(( $* ))
- }'
-else
- as_fn_arith ()
- {
- as_val=`expr "$@" || test $? -eq 1`
- }
-fi # as_fn_arith
-
-
-if expr a : '\(a\)' >/dev/null 2>&1 &&
- test "X`expr 00001 : '.*\(...\)'`" = X001; then
- as_expr=expr
-else
- as_expr=false
-fi
-
-if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
- as_basename=basename
-else
- as_basename=false
-fi
-
-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
- as_dirname=dirname
-else
- as_dirname=false
-fi
-
-as_me=`$as_basename -- "$0" ||
-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
- X"$0" : 'X\(//\)$' \| \
- X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X/"$0" |
- sed '/^.*\/\([^/][^/]*\)\/*$/{
- s//\1/
- q
- }
- /^X\/\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\/\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
-
-# Avoid depending upon Character Ranges.
-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-as_cr_digits='0123456789'
-as_cr_alnum=$as_cr_Letters$as_cr_digits
-
-ECHO_C= ECHO_N= ECHO_T=
-case `echo -n x` in #(((((
--n*)
- case `echo 'xy\c'` in
- *c*) ECHO_T=' ';; # ECHO_T is single tab character.
- xy) ECHO_C='\c';;
- *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
- ECHO_T=' ';;
- esac;;
-*)
- ECHO_N='-n';;
-esac
-
-rm -f conf$$ conf$$.exe conf$$.file
-if test -d conf$$.dir; then
- rm -f conf$$.dir/conf$$.file
-else
- rm -f conf$$.dir
- mkdir conf$$.dir 2>/dev/null
-fi
-if (echo >conf$$.file) 2>/dev/null; then
- if ln -s conf$$.file conf$$ 2>/dev/null; then
- as_ln_s='ln -s'
- # ... but there are two gotchas:
- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
- # In both cases, we have to default to `cp -p'.
- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
- as_ln_s='cp -p'
- elif ln conf$$.file conf$$ 2>/dev/null; then
- as_ln_s=ln
- else
- as_ln_s='cp -p'
- fi
-else
- as_ln_s='cp -p'
-fi
-rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-rmdir conf$$.dir 2>/dev/null
-
-
-# as_fn_mkdir_p
-# -------------
-# Create "$as_dir" as a directory, including parents if necessary.
-as_fn_mkdir_p ()
-{
-
- case $as_dir in #(
- -*) as_dir=./$as_dir;;
- esac
- test -d "$as_dir" || eval $as_mkdir_p || {
- as_dirs=
- while :; do
- case $as_dir in #(
- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
- *) as_qdir=$as_dir;;
- esac
- as_dirs="'$as_qdir' $as_dirs"
- as_dir=`$as_dirname -- "$as_dir" ||
-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$as_dir" : 'X\(//\)[^/]' \| \
- X"$as_dir" : 'X\(//\)$' \| \
- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$as_dir" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- test -d "$as_dir" && break
- done
- test -z "$as_dirs" || eval "mkdir $as_dirs"
- } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
-
-
-} # as_fn_mkdir_p
-if mkdir -p . 2>/dev/null; then
- as_mkdir_p='mkdir -p "$as_dir"'
-else
- test -d ./-p && rmdir ./-p
- as_mkdir_p=false
-fi
-
-if test -x / >/dev/null 2>&1; then
- as_test_x='test -x'
-else
- if ls -dL / >/dev/null 2>&1; then
- as_ls_L_option=L
- else
- as_ls_L_option=
- fi
- as_test_x='
- eval sh -c '\''
- if test -d "$1"; then
- test -d "$1/.";
- else
- case $1 in #(
- -*)set "./$1";;
- esac;
- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
- ???[sx]*):;;*)false;;esac;fi
- '\'' sh
- '
-fi
-as_executable_p=$as_test_x
-
-# Sed expression to map a string onto a valid CPP name.
-as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-
-# Sed expression to map a string onto a valid variable name.
-as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-
-
-exec 6>&1
-## ----------------------------------- ##
-## Main body of $CONFIG_STATUS script. ##
-## ----------------------------------- ##
-# Save the log message, to keep $0 and so on meaningful, and to
-# report actual input values of CONFIG_FILES etc. instead of their
-# values after options handling.
-ac_log="
-This file was extended by bfd $as_me 2.30, which was
-generated by GNU Autoconf 2.64. Invocation command line was
-
- CONFIG_FILES = $CONFIG_FILES
- CONFIG_HEADERS = $CONFIG_HEADERS
- CONFIG_LINKS = $CONFIG_LINKS
- CONFIG_COMMANDS = $CONFIG_COMMANDS
- $ $0 $@
-
-on `(hostname || uname -n) 2>/dev/null | sed 1q`
-"
-
-# Files that config.status was made for.
-config_files=" Makefile doc/Makefile bfd-in3.h:bfd-in2.h po/Makefile.in:po/Make-in"
-config_headers=" config.h:config.in"
-config_commands=" depfiles libtool default-1 bfd_stdint.h default"
-
-ac_cs_usage="\
-\`$as_me' instantiates files and other configuration actions
-from templates according to the current configuration. Unless the files
-and actions are specified as TAGs, all are instantiated by default.
-
-Usage: $0 [OPTION]... [TAG]...
-
- -h, --help print this help, then exit
- -V, --version print version number and configuration settings, then exit
- -q, --quiet, --silent
- do not print progress messages
- -d, --debug don't remove temporary files
- --recheck update $as_me by reconfiguring in the same conditions
- --file=FILE[:TEMPLATE]
- instantiate the configuration file FILE
- --header=FILE[:TEMPLATE]
- instantiate the configuration header FILE
-
-Configuration files:
-$config_files
-
-Configuration headers:
-$config_headers
-
-Configuration commands:
-$config_commands
-
-Report bugs to the package provider."
-
-ac_cs_version="\
-bfd config.status 2.30
-configured by /home/xavier/sdcc_gas/support/sdbinutils/bfd/configure, generated by GNU Autoconf 2.64,
- with options \"'--srcdir=.././bfd' '--cache-file=./config.cache' '--with-system-zlib' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '--cache-file=/dev/null' '--program-transform-name=s,y,y,' '--disable-option-checking' '--build=x86_64-pc-linux-gnu' '--host=x86_64-pc-linux-gnu' '--target=x86_64-pc-linux-gnu' 'build_alias=x86_64-pc-linux-gnu' 'host_alias=x86_64-pc-linux-gnu' 'target_alias=x86_64-pc-linux-gnu' 'CC=gcc' 'CFLAGS=-g -O2' 'LDFLAGS=-static-libstdc++ -static-libgcc '\"
-
-Copyright (C) 2009 Free Software Foundation, Inc.
-This config.status script is free software; the Free Software Foundation
-gives unlimited permission to copy, distribute and modify it."
-
-ac_pwd='/home/xavier/sdcc_gas/support/sdbinutils/bfd'
-srcdir='.'
-INSTALL='/usr/bin/install -c'
-MKDIR_P='/bin/mkdir -p'
-AWK='gawk'
-test -n "$AWK" || AWK=awk
-# The default lists apply if the user does not specify any file.
-ac_need_defaults=:
-while test $# != 0
-do
- case $1 in
- --*=*)
- ac_option=`expr "X$1" : 'X\([^=]*\)='`
- ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
- ac_shift=:
- ;;
- *)
- ac_option=$1
- ac_optarg=$2
- ac_shift=shift
- ;;
- esac
-
- case $ac_option in
- # Handling of the options.
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
- ac_cs_recheck=: ;;
- --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
- $as_echo "$ac_cs_version"; exit ;;
- --debug | --debu | --deb | --de | --d | -d )
- debug=: ;;
- --file | --fil | --fi | --f )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- esac
- as_fn_append CONFIG_FILES " '$ac_optarg'"
- ac_need_defaults=false;;
- --header | --heade | --head | --hea )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- esac
- as_fn_append CONFIG_HEADERS " '$ac_optarg'"
- ac_need_defaults=false;;
- --he | --h)
- # Conflict between --help and --header
- as_fn_error "ambiguous option: \`$1'
-Try \`$0 --help' for more information.";;
- --help | --hel | -h )
- $as_echo "$ac_cs_usage"; exit ;;
- -q | -quiet | --quiet | --quie | --qui | --qu | --q \
- | -silent | --silent | --silen | --sile | --sil | --si | --s)
- ac_cs_silent=: ;;
-
- # This is an error.
- -*) as_fn_error "unrecognized option: \`$1'
-Try \`$0 --help' for more information." ;;
-
- *) as_fn_append ac_config_targets " $1"
- ac_need_defaults=false ;;
-
- esac
- shift
-done
-
-ac_configure_extra_args=
-
-if $ac_cs_silent; then
- exec 6>/dev/null
- ac_configure_extra_args="$ac_configure_extra_args --silent"
-fi
-
-if $ac_cs_recheck; then
- set X '/bin/bash' '/home/xavier/sdcc_gas/support/sdbinutils/bfd/configure' '--srcdir=.././bfd' '--cache-file=./config.cache' '--with-system-zlib' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '--cache-file=/dev/null' '--program-transform-name=s,y,y,' '--disable-option-checking' '--build=x86_64-pc-linux-gnu' '--host=x86_64-pc-linux-gnu' '--target=x86_64-pc-linux-gnu' 'build_alias=x86_64-pc-linux-gnu' 'host_alias=x86_64-pc-linux-gnu' 'target_alias=x86_64-pc-linux-gnu' 'CC=gcc' 'CFLAGS=-g -O2' 'LDFLAGS=-static-libstdc++ -static-libgcc ' $ac_configure_extra_args --no-create --no-recursion
- shift
- $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
- CONFIG_SHELL='/bin/bash'
- export CONFIG_SHELL
- exec "$@"
-fi
-
-exec 5>>config.log
-{
- echo
- sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
-## Running $as_me. ##
-_ASBOX
- $as_echo "$ac_log"
-} >&5
-
-#
-# INIT-COMMANDS
-#
-AMDEP_TRUE="" ac_aux_dir="./.."
-
-
-# The HP-UX ksh and POSIX shell print the target directory to stdout
-# if CDPATH is set.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
-double_quote_subst='s/\(["`\\]\)/\\\1/g'
-delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
-enable_shared='no'
-macro_version='2.2.7a'
-macro_revision='1.3134'
-enable_static='yes'
-pic_mode='default'
-enable_fast_install='needless'
-SHELL='/bin/bash'
-ECHO='printf %s\n'
-host_alias='x86_64-pc-linux-gnu'
-host='x86_64-pc-linux-gnu'
-host_os='linux-gnu'
-build_alias='x86_64-pc-linux-gnu'
-build='x86_64-pc-linux-gnu'
-build_os='linux-gnu'
-SED='/bin/sed'
-Xsed='/bin/sed -e 1s/^X//'
-GREP='/bin/grep'
-EGREP='/bin/grep -E'
-FGREP='/bin/grep -F'
-LD='ld -m elf_x86_64'
-NM='nm'
-LN_S='ln -s'
-max_cmd_len='1572864'
-ac_objext='o'
-exeext=''
-lt_unset='unset'
-lt_SP2NL='tr \040 \012'
-lt_NL2SP='tr \015\012 \040\040'
-reload_flag=' -r'
-reload_cmds='$LD$reload_flag -o $output$reload_objs'
-OBJDUMP='objdump'
-deplibs_check_method='pass_all'
-file_magic_cmd='$MAGIC_CMD'
-AR='ar'
-AR_FLAGS='rc'
-STRIP='strip'
-RANLIB='ranlib'
-old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $oldlib'
-old_postuninstall_cmds=''
-old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $oldlib'
-lock_old_archive_extraction='no'
-CC='gcc'
-CFLAGS='-g -O2'
-compiler='gcc'
-GCC='yes'
-lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
-lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
-lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
-lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
-objdir='.libs'
-MAGIC_CMD='file'
-lt_prog_compiler_no_builtin_flag=' -fno-builtin'
-lt_prog_compiler_wl='-Wl,'
-lt_prog_compiler_pic=' -fPIC -DPIC'
-lt_prog_compiler_static='-static'
-lt_cv_prog_compiler_c_o='yes'
-need_locks='no'
-DSYMUTIL=''
-NMEDIT=''
-LIPO=''
-OTOOL=''
-OTOOL64=''
-libext='a'
-shrext_cmds='.so'
-extract_expsyms_cmds=''
-archive_cmds_need_lc='yes'
-enable_shared_with_static_runtimes='no'
-export_dynamic_flag_spec='${wl}--export-dynamic'
-whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
-compiler_needs_object='no'
-old_archive_from_new_cmds=''
-old_archive_from_expsyms_cmds=''
-archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
- cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
- echo "local: *; };" >> $output_objdir/$libname.ver~
- $CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
-module_cmds=''
-module_expsym_cmds=''
-with_gnu_ld='yes'
-allow_undefined_flag=''
-no_undefined_flag=''
-hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
-hardcode_libdir_flag_spec_ld=''
-hardcode_libdir_separator=''
-hardcode_direct='no'
-hardcode_direct_absolute='no'
-hardcode_minus_L='no'
-hardcode_shlibpath_var='unsupported'
-hardcode_automatic='no'
-inherit_rpath='no'
-link_all_deplibs='unknown'
-fix_srcfile_path=''
-always_export_symbols='no'
-export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
-exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
-include_expsyms=''
-prelink_cmds=''
-file_list_spec=''
-variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'
-need_lib_prefix='no'
-need_version='no'
-version_type='linux'
-runpath_var='LD_RUN_PATH'
-shlibpath_var='LD_LIBRARY_PATH'
-shlibpath_overrides_runpath='yes'
-libname_spec='lib$name'
-library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-soname_spec='${libname}${release}${shared_ext}$major'
-install_override_mode=''
-postinstall_cmds=''
-postuninstall_cmds=''
-finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
-finish_eval=''
-hardcode_into_libs='yes'
-sys_lib_search_path_spec='/usr/lib/gcc/x86_64-linux-gnu/7 /usr/lib/x86_64-linux-gnu /usr/lib /lib/x86_64-linux-gnu /lib '
-sys_lib_dlsearch_path_spec='/lib /usr/lib /usr/lib/x86_64-linux-gnu/libfakeroot /usr/local/lib/i386-linux-gnu /lib/i386-linux-gnu /usr/lib/i386-linux-gnu /usr/local/lib/i686-linux-gnu /lib/i686-linux-gnu /usr/lib/i686-linux-gnu /usr/local/lib /usr/local/lib/x86_64-linux-gnu /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu /lib32 /usr/lib32 '
-hardcode_action='immediate'
-enable_dlopen='yes'
-enable_dlopen_self='yes'
-enable_dlopen_self_static='no'
-old_striplib='strip --strip-debug'
-striplib='strip --strip-unneeded'
-
-LTCC='gcc'
-LTCFLAGS='-g -O2'
-compiler='gcc'
-
-# A function that is used when there is no print builtin or printf.
-func_fallback_echo ()
-{
- eval 'cat <<_LTECHO_EOF
-$1
-_LTECHO_EOF'
-}
-
-# Quote evaled strings.
-for var in SHELL ECHO SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd AR AR_FLAGS STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_prog_compiler_no_builtin_flag lt_prog_compiler_wl lt_prog_compiler_pic lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_flag_spec_ld hardcode_libdir_separator fix_srcfile_path exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib; do
- case `eval \\$ECHO \\""\\$$var"\\"` in
- *[\\\`\"\$]*)
- eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\""
- ;;
- *)
- eval "lt_$var=\\\"\$$var\\\""
- ;;
- esac
-done
-
-# Double-quote double-evaled strings.
-for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec sys_lib_dlsearch_path_spec; do
- case `eval \\$ECHO \\""\\$$var"\\"` in
- *[\\\`\"\$]*)
- eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
- ;;
- *)
- eval "lt_$var=\\\"\$$var\\\""
- ;;
- esac
-done
-
-ac_aux_dir='./..'
-xsi_shell='yes'
-lt_shell_append='yes'
-
-# See if we are running on zsh, and set the options which allow our
-# commands through without removal of \ escapes INIT.
-if test -n "${ZSH_VERSION+set}" ; then
- setopt NO_GLOB_SUBST
-fi
-
-
- PACKAGE='bfd'
- VERSION='2.30'
- TIMESTAMP=''
- RM='rm -f'
- ofile='libtool'
-
-
-
-# Capture the value of obsolete ALL_LINGUAS because we need it to compute
- # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it
- # from automake.
- eval 'OBSOLETE_ALL_LINGUAS''="da es fi fr hr id ja ro ru rw sr sv tr uk vi zh_CN"'
- # Capture the value of LINGUAS because we need it to compute CATALOGS.
- LINGUAS="%UNSET%"
-
-
-GCC="yes"
-CC="gcc"
-acx_cv_header_stdint="stdint.h"
-acx_cv_type_int8_t=""
-acx_cv_type_int16_t=""
-acx_cv_type_int32_t=""
-acx_cv_type_int64_t=""
-acx_cv_type_intptr_t=""
-ac_cv_type_uintmax_t="yes"
-ac_cv_type_uintptr_t="yes"
-ac_cv_type_uint64_t="yes"
-ac_cv_type_u_int64_t="no"
-ac_cv_type_u_int32_t=""
-ac_cv_type_int_least32_t="yes"
-ac_cv_type_int_fast32_t="yes"
-ac_cv_sizeof_void_p="8"
-
-
-
-
-# Handling of arguments.
-for ac_config_target in $ac_config_targets
-do
- case $ac_config_target in
- "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
- "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
- "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;;
- "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
- "bfd_stdint.h") CONFIG_COMMANDS="$CONFIG_COMMANDS bfd_stdint.h" ;;
- "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
- "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
- "bfd-in3.h") CONFIG_FILES="$CONFIG_FILES bfd-in3.h:bfd-in2.h" ;;
- "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in:po/Make-in" ;;
- "default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
-
- *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
- esac
-done
-
-
-# If the user did not use the arguments to specify the items to instantiate,
-# then the envvar interface is used. Set only those that are not.
-# We use the long form for the default assignment because of an extremely
-# bizarre bug on SunOS 4.1.3.
-if $ac_need_defaults; then
- test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
- test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
- test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
-fi
-
-# Have a temporary directory for convenience. Make it in the build tree
-# simply because there is no reason against having it here, and in addition,
-# creating and moving files from /tmp can sometimes cause problems.
-# Hook for its removal unless debugging.
-# Note that there is a small window in which the directory will not be cleaned:
-# after its creation but before its name has been assigned to `$tmp'.
-$debug ||
-{
- tmp=
- trap 'exit_status=$?
- { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
-' 0
- trap 'as_fn_exit 1' 1 2 13 15
-}
-# Create a (secure) tmp directory for tmp files.
-
-{
- tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
- test -n "$tmp" && test -d "$tmp"
-} ||
-{
- tmp=./conf$$-$RANDOM
- (umask 077 && mkdir "$tmp")
-} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
-
-# Set up the scripts for CONFIG_FILES section.
-# No need to generate them if there are no CONFIG_FILES.
-# This happens for instance with `./config.status config.h'.
-if test -n "$CONFIG_FILES"; then
-
-
-ac_cr=`echo X | tr X '\015'`
-# On cygwin, bash can eat \r inside `` if the user requested igncr.
-# But we know of no other shell where ac_cr would be empty at this
-# point, so we can use a bashism as a fallback.
-if test "x$ac_cr" = x; then
- eval ac_cr=\$\'\\r\'
-fi
-ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
- ac_cs_awk_cr='\r'
-else
- ac_cs_awk_cr=$ac_cr
-fi
-
-echo 'BEGIN {' >"$tmp/subs1.awk" &&
-cat >>"$tmp/subs1.awk" <<\_ACAWK &&
-S["am__EXEEXT_FALSE"]=""
-S["am__EXEEXT_TRUE"]="#"
-S["LTLIBOBJS"]=""
-S["LIBOBJS"]=""
-S["bfd_ufile_ptr"]="BFD_HOST_U_64_BIT"
-S["bfd_file_ptr"]="BFD_HOST_64_BIT"
-S["lt_cv_dlopen_libs"]="-ldl"
-S["supports_plugins"]="1"
-S["COREFLAG"]=""
-S["COREFILE"]=""
-S["havevecs"]="-DHAVE_asxxxx_vec -DHAVE_plugin_vec"
-S["tdefaults"]=" -DDEFAULT_VECTOR=asxxxx_vec -DSELECT_VECS='&asxxxx_vec,&plugin_vec' -DSELECT_ARCHITECTURES='&bfd_z80_arch,&bfd_plugin_arch'"
-S["bfd_default_target_size"]="32"
-S["bfd_machines"]=" cpu-z80.lo cpu-plugin.lo"
-S["bfd_backends"]=" asxxxx.lo plugin.lo"
-S["all_backends"]="$(BFD32_BACKENDS)"
-S["bfd64_libs"]=""
-S["wordsize"]="32"
-S["TDEFINES"]=" "
-S["SHARED_LIBADD"]=""
-S["SHARED_LDFLAGS"]=""
-S["LIBM"]="-lm"
-S["zlibinc"]=""
-S["zlibdir"]=""
-S["EXEEXT_FOR_BUILD"]="$(EXEEXT)"
-S["CC_FOR_BUILD"]="gcc"
-S["BFD_HOSTPTR_T"]="unsigned long"
-S["BFD_HOST_U_64_BIT"]="unsigned long"
-S["BFD_HOST_64_BIT"]="long"
-S["BFD_HOST_64_BIT_DEFINED"]="1"
-S["BFD_HOST_64BIT_LONG_LONG"]="0"
-S["BFD_HOST_64BIT_LONG"]="1"
-S["HDEFINES"]=""
-S["MSGMERGE"]="/usr/bin/msgmerge"
-S["MSGFMT"]="/usr/bin/msgfmt"
-S["MKINSTALLDIRS"]="$(top_builddir)/./../mkinstalldirs"
-S["CATOBJEXT"]=""
-S["GENCAT"]=""
-S["INSTOBJEXT"]=""
-S["DATADIRNAME"]=""
-S["CATALOGS"]=""
-S["POSUB"]=""
-S["GMSGFMT"]="/usr/bin/msgfmt"
-S["XGETTEXT"]="/usr/bin/xgettext"
-S["INCINTL"]=""
-S["LIBINTL_DEP"]=""
-S["LIBINTL"]=""
-S["USE_NLS"]="yes"
-S["bfdincludedir"]="$(exec_prefix)/$(host_noncanonical)/$(target_noncanonical)/include"
-S["bfdlibdir"]="$(exec_prefix)/$(host_noncanonical)/$(target_noncanonical)/lib"
-S["target_noncanonical"]="x86_64-pc-linux-gnu"
-S["host_noncanonical"]="x86_64-pc-linux-gnu"
-S["INSTALL_LIBBFD_FALSE"]=""
-S["INSTALL_LIBBFD_TRUE"]="#"
-S["GENINSRC_NEVER_FALSE"]=""
-S["GENINSRC_NEVER_TRUE"]="#"
-S["MAINT"]="#"
-S["MAINTAINER_MODE_FALSE"]=""
-S["MAINTAINER_MODE_TRUE"]="#"
-S["WARN_WRITE_STRINGS"]="-Wwrite-strings"
-S["NO_WERROR"]=""
-S["WARN_CFLAGS_FOR_BUILD"]="-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144"
-S["WARN_CFLAGS"]="-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144"
-S["REPORT_BUGS_TEXI"]="@uref{https://sourceforge.net/p/sdcc/bugs/}"
-S["REPORT_BUGS_TO"]="<https://sourceforge.net/p/sdcc/bugs/>"
-S["PKGVERSION"]="(sdbinutils derived from GNU Binutils) "
-S["DEBUGDIR"]="${exec_prefix}/lib/debug"
-S["PLUGINS_FALSE"]="#"
-S["PLUGINS_TRUE"]=""
-S["OTOOL64"]=""
-S["OTOOL"]=""
-S["LIPO"]=""
-S["NMEDIT"]=""
-S["DSYMUTIL"]=""
-S["OBJDUMP"]="objdump"
-S["LN_S"]="ln -s"
-S["NM"]="nm"
-S["ac_ct_DUMPBIN"]=""
-S["DUMPBIN"]=""
-S["LD"]="ld -m elf_x86_64"
-S["FGREP"]="/bin/grep -F"
-S["SED"]="/bin/sed"
-S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
-S["EGREP"]="/bin/grep -E"
-S["GREP"]="/bin/grep"
-S["CPP"]="gcc -E"
-S["RANLIB"]="ranlib"
-S["AR"]="ar"
-S["am__fastdepCC_FALSE"]="#"
-S["am__fastdepCC_TRUE"]=""
-S["CCDEPMODE"]="depmode=gcc3"
-S["am__nodep"]="_no"
-S["AMDEPBACKSLASH"]="\\"
-S["AMDEP_FALSE"]="#"
-S["AMDEP_TRUE"]=""
-S["am__quote"]=""
-S["am__include"]="include"
-S["DEPDIR"]=".deps"
-S["am__untar"]="$${TAR-tar} xf -"
-S["am__tar"]="$${TAR-tar} chof - \"$$tardir\""
-S["AMTAR"]="$${TAR-tar}"
-S["am__leading_dot"]="."
-S["SET_MAKE"]=""
-S["AWK"]="gawk"
-S["mkdir_p"]="/bin/mkdir -p"
-S["MKDIR_P"]="/bin/mkdir -p"
-S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
-S["STRIP"]="strip"
-S["install_sh"]="${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/install-sh"
-S["MAKEINFO"]="makeinfo --split-size=5000000"
-S["AUTOHEADER"]="${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run autoheader"
-S["AUTOMAKE"]="${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run automake-1.11"
-S["AUTOCONF"]="${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run autoconf"
-S["ACLOCAL"]="${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run aclocal-1.11"
-S["VERSION"]="2.30"
-S["PACKAGE"]="bfd"
-S["CYGPATH_W"]="echo"
-S["am__isrc"]=""
-S["INSTALL_DATA"]="/usr/bin/install -c -m 644"
-S["INSTALL_SCRIPT"]="/usr/bin/install -c"
-S["INSTALL_PROGRAM"]="/usr/bin/install -c"
-S["OBJEXT"]="o"
-S["EXEEXT"]=""
-S["ac_ct_CC"]=""
-S["CPPFLAGS"]=""
-S["LDFLAGS"]="-static-libstdc++ -static-libgcc "
-S["CFLAGS"]="-g -O2"
-S["CC"]="gcc"
-S["target_os"]="linux-gnu"
-S["target_vendor"]="pc"
-S["target_cpu"]="x86_64"
-S["target"]="asxxxx-unknown-unknown"
-S["host_os"]="linux-gnu"
-S["host_vendor"]="pc"
-S["host_cpu"]="x86_64"
-S["host"]="x86_64-pc-linux-gnu"
-S["build_os"]="linux-gnu"
-S["build_vendor"]="pc"
-S["build_cpu"]="x86_64"
-S["build"]="x86_64-pc-linux-gnu"
-S["target_alias"]="x86_64-pc-linux-gnu"
-S["host_alias"]="x86_64-pc-linux-gnu"
-S["build_alias"]="x86_64-pc-linux-gnu"
-S["LIBS"]="-ldl "
-S["ECHO_T"]=""
-S["ECHO_N"]="-n"
-S["ECHO_C"]=""
-S["DEFS"]="-DHAVE_CONFIG_H"
-S["mandir"]="${datarootdir}/man"
-S["localedir"]="${datarootdir}/locale"
-S["libdir"]="${exec_prefix}/lib"
-S["psdir"]="${docdir}"
-S["pdfdir"]="${docdir}"
-S["dvidir"]="${docdir}"
-S["htmldir"]="${docdir}"
-S["infodir"]="${datarootdir}/info"
-S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
-S["oldincludedir"]="/usr/include"
-S["includedir"]="${prefix}/include"
-S["localstatedir"]="${prefix}/var"
-S["sharedstatedir"]="${prefix}/com"
-S["sysconfdir"]="${prefix}/etc"
-S["datadir"]="${datarootdir}"
-S["datarootdir"]="${prefix}/share"
-S["libexecdir"]="${exec_prefix}/libexec"
-S["sbindir"]="${exec_prefix}/sbin"
-S["bindir"]="${exec_prefix}/bin"
-S["program_transform_name"]="s,y,y,"
-S["prefix"]="/usr/local"
-S["exec_prefix"]="${prefix}"
-S["PACKAGE_URL"]=""
-S["PACKAGE_BUGREPORT"]=""
-S["PACKAGE_STRING"]="bfd 2.30"
-S["PACKAGE_VERSION"]="2.30"
-S["PACKAGE_TARNAME"]="bfd"
-S["PACKAGE_NAME"]="bfd"
-S["PATH_SEPARATOR"]=":"
-S["SHELL"]="/bin/bash"
-_ACAWK
-cat >>"$tmp/subs1.awk" <<_ACAWK &&
- for (key in S) S_is_set[key] = 1
- FS = ""
-
-}
-{
- line = $ 0
- nfields = split(line, field, "@")
- substed = 0
- len = length(field[1])
- for (i = 2; i < nfields; i++) {
- key = field[i]
- keylen = length(key)
- if (S_is_set[key]) {
- value = S[key]
- line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
- len += length(value) + length(field[++i])
- substed = 1
- } else
- len += 1 + keylen
- }
-
- print line
-}
-
-_ACAWK
-if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
- sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
-else
- cat
-fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
- || as_fn_error "could not setup config files machinery" "$LINENO" 5
-fi # test -n "$CONFIG_FILES"
-
-# Set up the scripts for CONFIG_HEADERS section.
-# No need to generate them if there are no CONFIG_HEADERS.
-# This happens for instance with `./config.status Makefile'.
-if test -n "$CONFIG_HEADERS"; then
-cat >"$tmp/defines.awk" <<\_ACAWK ||
-BEGIN {
-D["PACKAGE_NAME"]=" \"bfd\""
-D["PACKAGE_TARNAME"]=" \"bfd\""
-D["PACKAGE_VERSION"]=" \"2.30\""
-D["PACKAGE_STRING"]=" \"bfd 2.30\""
-D["PACKAGE_BUGREPORT"]=" \"\""
-D["PACKAGE_URL"]=" \"\""
-D["PACKAGE"]=" \"bfd\""
-D["VERSION"]=" \"2.30\""
-D["STDC_HEADERS"]=" 1"
-D["HAVE_SYS_TYPES_H"]=" 1"
-D["HAVE_SYS_STAT_H"]=" 1"
-D["HAVE_STDLIB_H"]=" 1"
-D["HAVE_STRING_H"]=" 1"
-D["HAVE_MEMORY_H"]=" 1"
-D["HAVE_STRINGS_H"]=" 1"
-D["HAVE_INTTYPES_H"]=" 1"
-D["HAVE_STDINT_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["__EXTENSIONS__"]=" 1"
-D["_ALL_SOURCE"]=" 1"
-D["_GNU_SOURCE"]=" 1"
-D["_POSIX_PTHREAD_SEMANTICS"]=" 1"
-D["_TANDEM_SOURCE"]=" 1"
-D["HAVE_DLFCN_H"]=" 1"
-D["LT_OBJDIR"]=" \".libs/\""
-D["HAVE_DLFCN_H"]=" 1"
-D["USE_SECUREPLT"]=" 1"
-D["HAVE_LONG_DOUBLE"]=" 1"
-D["HAVE_LONG_LONG"]=" 1"
-D["SIZEOF_LONG_LONG"]=" 8"
-D["SIZEOF_VOID_P"]=" 8"
-D["SIZEOF_LONG"]=" 8"
-D["HAVE_ALLOCA_H"]=" 1"
-D["HAVE_STDDEF_H"]=" 1"
-D["HAVE_STRING_H"]=" 1"
-D["HAVE_STRINGS_H"]=" 1"
-D["HAVE_STDLIB_H"]=" 1"
-D["HAVE_TIME_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["HAVE_WCHAR_H"]=" 1"
-D["HAVE_WCTYPE_H"]=" 1"
-D["HAVE_FCNTL_H"]=" 1"
-D["HAVE_SYS_FILE_H"]=" 1"
-D["HAVE_SYS_TIME_H"]=" 1"
-D["HAVE_SYS_STAT_H"]=" 1"
-D["HAVE_SYS_RESOURCE_H"]=" 1"
-D["TIME_WITH_SYS_TIME"]=" 1"
-D["HAVE_DIRENT_H"]=" 1"
-D["STRING_WITH_STRINGS"]=" 1"
-D["HAVE_FCNTL"]=" 1"
-D["HAVE_GETPAGESIZE"]=" 1"
-D["HAVE_SETITIMER"]=" 1"
-D["HAVE_SYSCONF"]=" 1"
-D["HAVE_FDOPEN"]=" 1"
-D["HAVE_GETUID"]=" 1"
-D["HAVE_GETGID"]=" 1"
-D["HAVE_FILENO"]=" 1"
-D["HAVE_STRTOULL"]=" 1"
-D["HAVE_GETRLIMIT"]=" 1"
-D["HAVE_DECL_BASENAME"]=" 1"
-D["HAVE_DECL_FTELLO"]=" 1"
-D["HAVE_DECL_FTELLO64"]=" 1"
-D["HAVE_DECL_FSEEKO"]=" 1"
-D["HAVE_DECL_FSEEKO64"]=" 1"
-D["HAVE_DECL_FFS"]=" 1"
-D["HAVE_DECL_FREE"]=" 1"
-D["HAVE_DECL_GETENV"]=" 1"
-D["HAVE_DECL_MALLOC"]=" 1"
-D["HAVE_DECL_REALLOC"]=" 1"
-D["HAVE_DECL_STPCPY"]=" 1"
-D["HAVE_DECL_STRSTR"]=" 1"
-D["HAVE_DECL_ASPRINTF"]=" 1"
-D["HAVE_DECL_VASPRINTF"]=" 1"
-D["HAVE_DECL_SNPRINTF"]=" 1"
-D["HAVE_DECL_VSNPRINTF"]=" 1"
-D["HAVE_DECL_STRNLEN"]=" 1"
-D["HAVE_FTELLO"]=" 1"
-D["HAVE_FTELLO64"]=" 1"
-D["HAVE_FSEEKO"]=" 1"
-D["HAVE_FSEEKO64"]=" 1"
-D["HAVE_FOPEN64"]=" 1"
-D["SIZEOF_OFF_T"]=" 8"
-D["HAVE_STDLIB_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["HAVE_GETPAGESIZE"]=" 1"
-D["HAVE_MMAP"]=" 1"
-D["HAVE_MADVISE"]=" 1"
-D["HAVE_MPROTECT"]=" 1"
- for (key in D) D_is_set[key] = 1
- FS = ""
-}
-/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
- line = $ 0
- split(line, arg, " ")
- if (arg[1] == "#") {
- defundef = arg[2]
- mac1 = arg[3]
- } else {
- defundef = substr(arg[1], 2)
- mac1 = arg[2]
- }
- split(mac1, mac2, "(") #)
- macro = mac2[1]
- prefix = substr(line, 1, index(line, defundef) - 1)
- if (D_is_set[macro]) {
- # Preserve the white space surrounding the "#".
- print prefix "define", macro P[macro] D[macro]
- next
- } else {
- # Replace #undef with comments. This is necessary, for example,
- # in the case of _POSIX_SOURCE, which is predefined and required
- # on some systems where configure will not decide to define it.
- if (defundef == "undef") {
- print "/*", prefix defundef, macro, "*/"
- next
- }
- }
-}
-{ print }
-_ACAWK
- as_fn_error "could not setup config headers machinery" "$LINENO" 5
-fi # test -n "$CONFIG_HEADERS"
-
-
-eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
-shift
-for ac_tag
-do
- case $ac_tag in
- :[FHLC]) ac_mode=$ac_tag; continue;;
- esac
- case $ac_mode$ac_tag in
- :[FHL]*:*);;
- :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
- :[FH]-) ac_tag=-:-;;
- :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
- esac
- ac_save_IFS=$IFS
- IFS=:
- set x $ac_tag
- IFS=$ac_save_IFS
- shift
- ac_file=$1
- shift
-
- case $ac_mode in
- :L) ac_source=$1;;
- :[FH])
- ac_file_inputs=
- for ac_f
- do
- case $ac_f in
- -) ac_f="$tmp/stdin";;
- *) # Look for the file first in the build tree, then in the source tree
- # (if the path is not absolute). The absolute path cannot be DOS-style,
- # because $ac_f cannot contain `:'.
- test -f "$ac_f" ||
- case $ac_f in
- [\\/$]*) false;;
- *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
- esac ||
- as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
- esac
- case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
- as_fn_append ac_file_inputs " '$ac_f'"
- done
-
- # Let's still pretend it is `configure' which instantiates (i.e., don't
- # use $as_me), people would be surprised to read:
- # /* config.h. Generated by config.status. */
- configure_input='Generated from '`
- $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
- `' by configure.'
- if test x"$ac_file" != x-; then
- configure_input="$ac_file. $configure_input"
- { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
-$as_echo "$as_me: creating $ac_file" >&6;}
- fi
- # Neutralize special characters interpreted by sed in replacement strings.
- case $configure_input in #(
- *\&* | *\|* | *\\* )
- ac_sed_conf_input=`$as_echo "$configure_input" |
- sed 's/[\\\\&|]/\\\\&/g'`;; #(
- *) ac_sed_conf_input=$configure_input;;
- esac
-
- case $ac_tag in
- *:-:* | *:-) cat >"$tmp/stdin" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
- esac
- ;;
- esac
-
- ac_dir=`$as_dirname -- "$ac_file" ||
-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$ac_file" : 'X\(//\)[^/]' \| \
- X"$ac_file" : 'X\(//\)$' \| \
- X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$ac_file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- as_dir="$ac_dir"; as_fn_mkdir_p
- ac_builddir=.
-
-case "$ac_dir" in
-.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-*)
- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
- # A ".." for each directory in $ac_dir_suffix.
- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
- case $ac_top_builddir_sub in
- "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
- *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
- esac ;;
-esac
-ac_abs_top_builddir=$ac_pwd
-ac_abs_builddir=$ac_pwd$ac_dir_suffix
-# for backward compatibility:
-ac_top_builddir=$ac_top_build_prefix
-
-case $srcdir in
- .) # We are building in place.
- ac_srcdir=.
- ac_top_srcdir=$ac_top_builddir_sub
- ac_abs_top_srcdir=$ac_pwd ;;
- [\\/]* | ?:[\\/]* ) # Absolute name.
- ac_srcdir=$srcdir$ac_dir_suffix;
- ac_top_srcdir=$srcdir
- ac_abs_top_srcdir=$srcdir ;;
- *) # Relative name.
- ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
- ac_top_srcdir=$ac_top_build_prefix$srcdir
- ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-esac
-ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-
-
- case $ac_mode in
- :F)
- #
- # CONFIG_FILE
- #
-
- case $INSTALL in
- [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
- *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
- esac
- ac_MKDIR_P=$MKDIR_P
- case $MKDIR_P in
- [\\/$]* | ?:[\\/]* ) ;;
- */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
- esac
-# If the template does not know about datarootdir, expand it.
-# FIXME: This hack should be removed a few years after 2.60.
-ac_datarootdir_hack=; ac_datarootdir_seen=
-ac_sed_dataroot='
-/datarootdir/ {
- p
- q
-}
-/@datadir@/p
-/@docdir@/p
-/@infodir@/p
-/@localedir@/p
-/@mandir@/p'
-case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
-*datarootdir*) ac_datarootdir_seen=yes;;
-*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
-$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
- ac_datarootdir_hack='
- s&@datadir@&${datarootdir}&g
- s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
- s&@infodir@&${datarootdir}/info&g
- s&@localedir@&${datarootdir}/locale&g
- s&@mandir@&${datarootdir}/man&g
- s&\${datarootdir}&${prefix}/share&g' ;;
-esac
-ac_sed_extra="/^[ ]*VPATH[ ]*=/{
-s/:*\$(srcdir):*/:/
-s/:*\${srcdir}:*/:/
-s/:*@srcdir@:*/:/
-s/^\([^=]*=[ ]*\):*/\1/
-s/:*$//
-s/^[^=]*=[ ]*$//
-}
-
-:t
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-s|@configure_input@|$ac_sed_conf_input|;t t
-s&@top_builddir@&$ac_top_builddir_sub&;t t
-s&@top_build_prefix@&$ac_top_build_prefix&;t t
-s&@srcdir@&$ac_srcdir&;t t
-s&@abs_srcdir@&$ac_abs_srcdir&;t t
-s&@top_srcdir@&$ac_top_srcdir&;t t
-s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
-s&@builddir@&$ac_builddir&;t t
-s&@abs_builddir@&$ac_abs_builddir&;t t
-s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
-s&@INSTALL@&$ac_INSTALL&;t t
-s&@MKDIR_P@&$ac_MKDIR_P&;t t
-$ac_datarootdir_hack
-"
-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
-
-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
- { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined." >&5
-$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined." >&2;}
-
- rm -f "$tmp/stdin"
- case $ac_file in
- -) cat "$tmp/out" && rm -f "$tmp/out";;
- *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
- esac \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
- ;;
- :H)
- #
- # CONFIG_HEADER
- #
- if test x"$ac_file" != x-; then
- {
- $as_echo "/* $configure_input */" \
- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
- } >"$tmp/config.h" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
- if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
-$as_echo "$as_me: $ac_file is unchanged" >&6;}
- else
- rm -f "$ac_file"
- mv "$tmp/config.h" "$ac_file" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
- fi
- else
- $as_echo "/* $configure_input */" \
- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
- || as_fn_error "could not create -" "$LINENO" 5
- fi
-# Compute "$ac_file"'s index in $config_headers.
-_am_arg="$ac_file"
-_am_stamp_count=1
-for _am_header in $config_headers :; do
- case $_am_header in
- $_am_arg | $_am_arg:* )
- break ;;
- * )
- _am_stamp_count=`expr $_am_stamp_count + 1` ;;
- esac
-done
-echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
-$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$_am_arg" : 'X\(//\)[^/]' \| \
- X"$_am_arg" : 'X\(//\)$' \| \
- X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$_am_arg" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`/stamp-h$_am_stamp_count
- ;;
-
- :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
-$as_echo "$as_me: executing $ac_file commands" >&6;}
- ;;
- esac
-
-
- case $ac_file$ac_mode in
- "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
- # Autoconf 2.62 quotes --file arguments for eval, but not when files
- # are listed without --file. Let's play safe and only enable the eval
- # if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
- shift
- for mf
- do
- # Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named `Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
- # limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`$as_dirname -- "$mf" ||
-$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$mf" : 'X\(//\)[^/]' \| \
- X"$mf" : 'X\(//\)$' \| \
- X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$mf" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running `make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # When using ansi2knr, U may be empty or an underscore; expand it
- U=`sed -n 's/^U = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`$as_dirname -- "$file" ||
-$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$file" : 'X\(//\)[^/]' \| \
- X"$file" : 'X\(//\)$' \| \
- X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- as_dir=$dirpart/$fdir; as_fn_mkdir_p
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
- done
-}
- ;;
- "libtool":C)
-
- # See if we are running on zsh, and set the options which allow our
- # commands through without removal of \ escapes.
- if test -n "${ZSH_VERSION+set}" ; then
- setopt NO_GLOB_SUBST
- fi
-
- cfgfile="${ofile}T"
- trap "$RM \"$cfgfile\"; exit 1" 1 2 15
- $RM "$cfgfile"
-
- cat <<_LT_EOF >> "$cfgfile"
-#! $SHELL
-
-# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
-# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
-# NOTE: Changes made to this file will be lost: look at ltmain.sh.
-#
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-# 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-# Written by Gordon Matzigkeit, 1996
-#
-# This file is part of GNU Libtool.
-#
-# GNU Libtool 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 2 of
-# the License, or (at your option) any later version.
-#
-# As a special exception to the GNU General Public License,
-# if you distribute this file as part of a program or library that
-# is built using GNU Libtool, you may include this file under the
-# same distribution terms that you use for the rest of that program.
-#
-# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy
-# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
-# obtained by writing to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-# The names of the tagged configurations supported by this script.
-available_tags=""
-
-# ### BEGIN LIBTOOL CONFIG
-
-# Whether or not to build shared libraries.
-build_libtool_libs=$enable_shared
-
-# Which release of libtool.m4 was used?
-macro_version=$macro_version
-macro_revision=$macro_revision
-
-# Whether or not to build static libraries.
-build_old_libs=$enable_static
-
-# What type of objects to build.
-pic_mode=$pic_mode
-
-# Whether or not to optimize for fast installation.
-fast_install=$enable_fast_install
-
-# Shell to use when invoking shell scripts.
-SHELL=$lt_SHELL
-
-# An echo program that protects backslashes.
-ECHO=$lt_ECHO
-
-# The host system.
-host_alias=$host_alias
-host=$host
-host_os=$host_os
-
-# The build system.
-build_alias=$build_alias
-build=$build
-build_os=$build_os
-
-# A sed program that does not truncate output.
-SED=$lt_SED
-
-# Sed that helps us avoid accidentally triggering echo(1) options like -n.
-Xsed="\$SED -e 1s/^X//"
-
-# A grep program that handles long lines.
-GREP=$lt_GREP
-
-# An ERE matcher.
-EGREP=$lt_EGREP
-
-# A literal string matcher.
-FGREP=$lt_FGREP
-
-# A BSD- or MS-compatible name lister.
-NM=$lt_NM
-
-# Whether we need soft or hard links.
-LN_S=$lt_LN_S
-
-# What is the maximum length of a command?
-max_cmd_len=$max_cmd_len
-
-# Object file suffix (normally "o").
-objext=$ac_objext
-
-# Executable file suffix (normally "").
-exeext=$exeext
-
-# whether the shell understands "unset".
-lt_unset=$lt_unset
-
-# turn spaces into newlines.
-SP2NL=$lt_lt_SP2NL
-
-# turn newlines into spaces.
-NL2SP=$lt_lt_NL2SP
-
-# An object symbol dumper.
-OBJDUMP=$lt_OBJDUMP
-
-# Method to check whether dependent libraries are shared objects.
-deplibs_check_method=$lt_deplibs_check_method
-
-# Command to use when deplibs_check_method == "file_magic".
-file_magic_cmd=$lt_file_magic_cmd
-
-# The archiver.
-AR=$lt_AR
-AR_FLAGS=$lt_AR_FLAGS
-
-# A symbol stripping program.
-STRIP=$lt_STRIP
-
-# Commands used to install an old-style archive.
-RANLIB=$lt_RANLIB
-old_postinstall_cmds=$lt_old_postinstall_cmds
-old_postuninstall_cmds=$lt_old_postuninstall_cmds
-
-# Whether to use a lock for old archive extraction.
-lock_old_archive_extraction=$lock_old_archive_extraction
-
-# A C compiler.
-LTCC=$lt_CC
-
-# LTCC compiler flags.
-LTCFLAGS=$lt_CFLAGS
-
-# Take the output of nm and produce a listing of raw symbols and C names.
-global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
-
-# Transform the output of nm in a proper C declaration.
-global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
-
-# Transform the output of nm in a C name address pair.
-global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
-
-# Transform the output of nm in a C name address pair when lib prefix is needed.
-global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
-
-# The name of the directory that contains temporary libtool files.
-objdir=$objdir
-
-# Used to examine libraries when file_magic_cmd begins with "file".
-MAGIC_CMD=$MAGIC_CMD
-
-# Must we lock files when doing compilation?
-need_locks=$lt_need_locks
-
-# Tool to manipulate archived DWARF debug symbol files on Mac OS X.
-DSYMUTIL=$lt_DSYMUTIL
-
-# Tool to change global to local symbols on Mac OS X.
-NMEDIT=$lt_NMEDIT
-
-# Tool to manipulate fat objects and archives on Mac OS X.
-LIPO=$lt_LIPO
-
-# ldd/readelf like tool for Mach-O binaries on Mac OS X.
-OTOOL=$lt_OTOOL
-
-# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
-OTOOL64=$lt_OTOOL64
-
-# Old archive suffix (normally "a").
-libext=$libext
-
-# Shared library suffix (normally ".so").
-shrext_cmds=$lt_shrext_cmds
-
-# The commands to extract the exported symbol list from a shared archive.
-extract_expsyms_cmds=$lt_extract_expsyms_cmds
-
-# Variables whose values should be saved in libtool wrapper scripts and
-# restored at link time.
-variables_saved_for_relink=$lt_variables_saved_for_relink
-
-# Do we need the "lib" prefix for modules?
-need_lib_prefix=$need_lib_prefix
-
-# Do we need a version for libraries?
-need_version=$need_version
-
-# Library versioning type.
-version_type=$version_type
-
-# Shared library runtime path variable.
-runpath_var=$runpath_var
-
-# Shared library path variable.
-shlibpath_var=$shlibpath_var
-
-# Is shlibpath searched before the hard-coded library search path?
-shlibpath_overrides_runpath=$shlibpath_overrides_runpath
-
-# Format of library name prefix.
-libname_spec=$lt_libname_spec
-
-# List of archive names. First name is the real one, the rest are links.
-# The last name is the one that the linker finds with -lNAME
-library_names_spec=$lt_library_names_spec
-
-# The coded name of the library, if different from the real name.
-soname_spec=$lt_soname_spec
-
-# Permission mode override for installation of shared libraries.
-install_override_mode=$lt_install_override_mode
-
-# Command to use after installation of a shared archive.
-postinstall_cmds=$lt_postinstall_cmds
-
-# Command to use after uninstallation of a shared archive.
-postuninstall_cmds=$lt_postuninstall_cmds
-
-# Commands used to finish a libtool library installation in a directory.
-finish_cmds=$lt_finish_cmds
-
-# As "finish_cmds", except a single script fragment to be evaled but
-# not shown.
-finish_eval=$lt_finish_eval
-
-# Whether we should hardcode library paths into libraries.
-hardcode_into_libs=$hardcode_into_libs
-
-# Compile-time system search path for libraries.
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
-
-# Run-time system search path for libraries.
-sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
-
-# Whether dlopen is supported.
-dlopen_support=$enable_dlopen
-
-# Whether dlopen of programs is supported.
-dlopen_self=$enable_dlopen_self
-
-# Whether dlopen of statically linked programs is supported.
-dlopen_self_static=$enable_dlopen_self_static
-
-# Commands to strip libraries.
-old_striplib=$lt_old_striplib
-striplib=$lt_striplib
-
-
-# The linker used to build libraries.
-LD=$lt_LD
-
-# How to create reloadable object files.
-reload_flag=$lt_reload_flag
-reload_cmds=$lt_reload_cmds
-
-# Commands used to build an old-style archive.
-old_archive_cmds=$lt_old_archive_cmds
-
-# A language specific compiler.
-CC=$lt_compiler
-
-# Is the compiler the GNU compiler?
-with_gcc=$GCC
-
-# Compiler flag to turn off builtin functions.
-no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
-
-# How to pass a linker flag through the compiler.
-wl=$lt_lt_prog_compiler_wl
-
-# Additional compiler flags for building library objects.
-pic_flag=$lt_lt_prog_compiler_pic
-
-# Compiler flag to prevent dynamic linking.
-link_static_flag=$lt_lt_prog_compiler_static
-
-# Does compiler simultaneously support -c and -o options?
-compiler_c_o=$lt_lt_cv_prog_compiler_c_o
-
-# Whether or not to add -lc for building shared libraries.
-build_libtool_need_lc=$archive_cmds_need_lc
-
-# Whether or not to disallow shared libs when runtime libs are static.
-allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
-
-# Compiler flag to allow reflexive dlopens.
-export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
-
-# Compiler flag to generate shared objects directly from archives.
-whole_archive_flag_spec=$lt_whole_archive_flag_spec
-
-# Whether the compiler copes with passing no objects directly.
-compiler_needs_object=$lt_compiler_needs_object
-
-# Create an old-style archive from a shared archive.
-old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
-
-# Create a temporary old-style archive to link instead of a shared archive.
-old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
-
-# Commands used to build a shared archive.
-archive_cmds=$lt_archive_cmds
-archive_expsym_cmds=$lt_archive_expsym_cmds
-
-# Commands used to build a loadable module if different from building
-# a shared archive.
-module_cmds=$lt_module_cmds
-module_expsym_cmds=$lt_module_expsym_cmds
-
-# Whether we are building with GNU ld or not.
-with_gnu_ld=$lt_with_gnu_ld
-
-# Flag that allows shared libraries with undefined symbols to be built.
-allow_undefined_flag=$lt_allow_undefined_flag
-
-# Flag that enforces no undefined symbols.
-no_undefined_flag=$lt_no_undefined_flag
-
-# Flag to hardcode \$libdir into a binary during linking.
-# This must work even if \$libdir does not exist
-hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
-
-# If ld is used when linking, flag to hardcode \$libdir into a binary
-# during linking. This must work even if \$libdir does not exist.
-hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
-
-# Whether we need a single "-rpath" flag with a separated argument.
-hardcode_libdir_separator=$lt_hardcode_libdir_separator
-
-# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
-# DIR into the resulting binary.
-hardcode_direct=$hardcode_direct
-
-# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
-# DIR into the resulting binary and the resulting library dependency is
-# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
-# library is relocated.
-hardcode_direct_absolute=$hardcode_direct_absolute
-
-# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
-# into the resulting binary.
-hardcode_minus_L=$hardcode_minus_L
-
-# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
-# into the resulting binary.
-hardcode_shlibpath_var=$hardcode_shlibpath_var
-
-# Set to "yes" if building a shared library automatically hardcodes DIR
-# into the library and all subsequent libraries and executables linked
-# against it.
-hardcode_automatic=$hardcode_automatic
-
-# Set to yes if linker adds runtime paths of dependent libraries
-# to runtime path list.
-inherit_rpath=$inherit_rpath
-
-# Whether libtool must link a program against all its dependency libraries.
-link_all_deplibs=$link_all_deplibs
-
-# Fix the shell variable \$srcfile for the compiler.
-fix_srcfile_path=$lt_fix_srcfile_path
-
-# Set to "yes" if exported symbols are required.
-always_export_symbols=$always_export_symbols
-
-# The commands to list exported symbols.
-export_symbols_cmds=$lt_export_symbols_cmds
-
-# Symbols that should not be listed in the preloaded symbols.
-exclude_expsyms=$lt_exclude_expsyms
-
-# Symbols that must always be exported.
-include_expsyms=$lt_include_expsyms
-
-# Commands necessary for linking programs (against libraries) with templates.
-prelink_cmds=$lt_prelink_cmds
-
-# Specify filename containing input files.
-file_list_spec=$lt_file_list_spec
-
-# How to hardcode a shared library path into an executable.
-hardcode_action=$hardcode_action
-
-# ### END LIBTOOL CONFIG
-
-_LT_EOF
-
- case $host_os in
- aix3*)
- cat <<\_LT_EOF >> "$cfgfile"
-# AIX sometimes has problems with the GCC collect2 program. For some
-# reason, if we set the COLLECT_NAMES environment variable, the problems
-# vanish in a puff of smoke.
-if test "X${COLLECT_NAMES+set}" != Xset; then
- COLLECT_NAMES=
- export COLLECT_NAMES
-fi
-_LT_EOF
- ;;
- esac
-
-
-ltmain="$ac_aux_dir/ltmain.sh"
-
-
- # We use sed instead of cat because bash on DJGPP gets confused if
- # if finds mixed CR/LF and LF-only lines. Since sed operates in
- # text mode, it properly converts lines to CR/LF. This bash problem
- # is reportedly fixed, but why not run on old versions too?
- sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \
- || (rm -f "$cfgfile"; exit 1)
-
- case $xsi_shell in
- yes)
- cat << \_LT_EOF >> "$cfgfile"
-
-# func_dirname file append nondir_replacement
-# Compute the dirname of FILE. If nonempty, add APPEND to the result,
-# otherwise set result to NONDIR_REPLACEMENT.
-func_dirname ()
-{
- case ${1} in
- */*) func_dirname_result="${1%/*}${2}" ;;
- * ) func_dirname_result="${3}" ;;
- esac
-}
-
-# func_basename file
-func_basename ()
-{
- func_basename_result="${1##*/}"
-}
-
-# func_dirname_and_basename file append nondir_replacement
-# perform func_basename and func_dirname in a single function
-# call:
-# dirname: Compute the dirname of FILE. If nonempty,
-# add APPEND to the result, otherwise set result
-# to NONDIR_REPLACEMENT.
-# value returned in "$func_dirname_result"
-# basename: Compute filename of FILE.
-# value retuned in "$func_basename_result"
-# Implementation must be kept synchronized with func_dirname
-# and func_basename. For efficiency, we do not delegate to
-# those functions but instead duplicate the functionality here.
-func_dirname_and_basename ()
-{
- case ${1} in
- */*) func_dirname_result="${1%/*}${2}" ;;
- * ) func_dirname_result="${3}" ;;
- esac
- func_basename_result="${1##*/}"
-}
-
-# func_stripname prefix suffix name
-# strip PREFIX and SUFFIX off of NAME.
-# PREFIX and SUFFIX must not contain globbing or regex special
-# characters, hashes, percent signs, but SUFFIX may contain a leading
-# dot (in which case that matches only a dot).
-func_stripname ()
-{
- # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
- # positional parameters, so assign one to ordinary parameter first.
- func_stripname_result=${3}
- func_stripname_result=${func_stripname_result#"${1}"}
- func_stripname_result=${func_stripname_result%"${2}"}
-}
-
-# func_opt_split
-func_opt_split ()
-{
- func_opt_split_opt=${1%%=*}
- func_opt_split_arg=${1#*=}
-}
-
-# func_lo2o object
-func_lo2o ()
-{
- case ${1} in
- *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
- *) func_lo2o_result=${1} ;;
- esac
-}
-
-# func_xform libobj-or-source
-func_xform ()
-{
- func_xform_result=${1%.*}.lo
-}
-
-# func_arith arithmetic-term...
-func_arith ()
-{
- func_arith_result=$(( $* ))
-}
-
-# func_len string
-# STRING may not start with a hyphen.
-func_len ()
-{
- func_len_result=${#1}
-}
-
-_LT_EOF
- ;;
- *) # Bourne compatible functions.
- cat << \_LT_EOF >> "$cfgfile"
-
-# func_dirname file append nondir_replacement
-# Compute the dirname of FILE. If nonempty, add APPEND to the result,
-# otherwise set result to NONDIR_REPLACEMENT.
-func_dirname ()
-{
- # Extract subdirectory from the argument.
- func_dirname_result=`$ECHO "${1}" | $SED "$dirname"`
- if test "X$func_dirname_result" = "X${1}"; then
- func_dirname_result="${3}"
- else
- func_dirname_result="$func_dirname_result${2}"
- fi
-}
-
-# func_basename file
-func_basename ()
-{
- func_basename_result=`$ECHO "${1}" | $SED "$basename"`
-}
-
-
-# func_stripname prefix suffix name
-# strip PREFIX and SUFFIX off of NAME.
-# PREFIX and SUFFIX must not contain globbing or regex special
-# characters, hashes, percent signs, but SUFFIX may contain a leading
-# dot (in which case that matches only a dot).
-# func_strip_suffix prefix name
-func_stripname ()
-{
- case ${2} in
- .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
- *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
- esac
-}
-
-# sed scripts:
-my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q'
-my_sed_long_arg='1s/^-[^=]*=//'
-
-# func_opt_split
-func_opt_split ()
-{
- func_opt_split_opt=`$ECHO "${1}" | $SED "$my_sed_long_opt"`
- func_opt_split_arg=`$ECHO "${1}" | $SED "$my_sed_long_arg"`
-}
-
-# func_lo2o object
-func_lo2o ()
-{
- func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"`
-}
-
-# func_xform libobj-or-source
-func_xform ()
-{
- func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'`
-}
-
-# func_arith arithmetic-term...
-func_arith ()
-{
- func_arith_result=`expr "$@"`
-}
-
-# func_len string
-# STRING may not start with a hyphen.
-func_len ()
-{
- func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
-}
-
-_LT_EOF
-esac
-
-case $lt_shell_append in
- yes)
- cat << \_LT_EOF >> "$cfgfile"
-
-# func_append var value
-# Append VALUE to the end of shell variable VAR.
-func_append ()
-{
- eval "$1+=\$2"
-}
-_LT_EOF
- ;;
- *)
- cat << \_LT_EOF >> "$cfgfile"
-
-# func_append var value
-# Append VALUE to the end of shell variable VAR.
-func_append ()
-{
- eval "$1=\$$1\$2"
-}
-
-_LT_EOF
- ;;
- esac
-
-
- sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \
- || (rm -f "$cfgfile"; exit 1)
-
- mv -f "$cfgfile" "$ofile" ||
- (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
- chmod +x "$ofile"
-
- ;;
- "default-1":C)
- for ac_file in $CONFIG_FILES; do
- # Support "outfile[:infile[:infile...]]"
- case "$ac_file" in
- *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
- esac
- # PO directories have a Makefile.in generated from Makefile.in.in.
- case "$ac_file" in */Makefile.in)
- # Adjust a relative srcdir.
- ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
- ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'`
- ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
- # In autoconf-2.13 it is called $ac_given_srcdir.
- # In autoconf-2.50 it is called $srcdir.
- test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
- case "$ac_given_srcdir" in
- .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
- /*) top_srcdir="$ac_given_srcdir" ;;
- *) top_srcdir="$ac_dots$ac_given_srcdir" ;;
- esac
- if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
- rm -f "$ac_dir/POTFILES"
- test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
- cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
- POMAKEFILEDEPS="POTFILES.in"
- # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend
- # on $ac_dir but don't depend on user-specified configuration
- # parameters.
- if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
- # The LINGUAS file contains the set of available languages.
- if test -n "$OBSOLETE_ALL_LINGUAS"; then
- test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.ac is obsolete" || echo "setting ALL_LINGUAS in configure.ac is obsolete"
- fi
- ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"`
- # Hide the ALL_LINGUAS assigment from automake.
- eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
- POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
- else
- # The set of available languages was given in configure.ac.
- eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'
- fi
- case "$ac_given_srcdir" in
- .) srcdirpre= ;;
- *) srcdirpre='$(srcdir)/' ;;
- esac
- POFILES=
- GMOFILES=
- UPDATEPOFILES=
- DUMMYPOFILES=
- for lang in $ALL_LINGUAS; do
- POFILES="$POFILES $srcdirpre$lang.po"
- GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
- UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
- DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
- done
- # CATALOGS depends on both $ac_dir and the user's LINGUAS
- # environment variable.
- INST_LINGUAS=
- if test -n "$ALL_LINGUAS"; then
- for presentlang in $ALL_LINGUAS; do
- useit=no
- if test "%UNSET%" != "$LINGUAS"; then
- desiredlanguages="$LINGUAS"
- else
- desiredlanguages="$ALL_LINGUAS"
- fi
- for desiredlang in $desiredlanguages; do
- # Use the presentlang catalog if desiredlang is
- # a. equal to presentlang, or
- # b. a variant of presentlang (because in this case,
- # presentlang can be used as a fallback for messages
- # which are not translated in the desiredlang catalog).
- case "$desiredlang" in
- "$presentlang"*) useit=yes;;
- esac
- done
- if test $useit = yes; then
- INST_LINGUAS="$INST_LINGUAS $presentlang"
- fi
- done
- fi
- CATALOGS=
- if test -n "$INST_LINGUAS"; then
- for lang in $INST_LINGUAS; do
- CATALOGS="$CATALOGS $lang.gmo"
- done
- fi
- test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
- sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
- for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
- if test -f "$f"; then
- case "$f" in
- *.orig | *.bak | *~) ;;
- *) cat "$f" >> "$ac_dir/Makefile" ;;
- esac
- fi
- done
- fi
- ;;
- esac
- done ;;
- "bfd_stdint.h":C)
-if test "$GCC" = yes; then
- echo "/* generated for " `$CC --version | sed 1q` "*/" > tmp-stdint.h
-else
- echo "/* generated for $CC */" > tmp-stdint.h
-fi
-
-sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- #ifndef GCC_GENERATED_STDINT_H
- #define GCC_GENERATED_STDINT_H 1
-
- #include <sys/types.h>
-EOF
-
-if test "$acx_cv_header_stdint" != stdint.h; then
- echo "#include <stddef.h>" >> tmp-stdint.h
-fi
-if test "$acx_cv_header_stdint" != stddef.h; then
- echo "#include <$acx_cv_header_stdint>" >> tmp-stdint.h
-fi
-
-sed 's/^ *//' >> tmp-stdint.h <<EOF
- /* glibc uses these symbols as guards to prevent redefinitions. */
- #ifdef __int8_t_defined
- #define _INT8_T
- #define _INT16_T
- #define _INT32_T
- #endif
- #ifdef __uint32_t_defined
- #define _UINT32_T
- #endif
-
-EOF
-
-# ----------------- done header, emit basic int types -------------
-if test "$acx_cv_header_stdint" = stddef.h; then
- sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- #ifndef _UINT8_T
- #define _UINT8_T
- #ifndef __uint8_t_defined
- #define __uint8_t_defined
- #ifndef uint8_t
- typedef unsigned $acx_cv_type_int8_t uint8_t;
- #endif
- #endif
- #endif
-
- #ifndef _UINT16_T
- #define _UINT16_T
- #ifndef __uint16_t_defined
- #define __uint16_t_defined
- #ifndef uint16_t
- typedef unsigned $acx_cv_type_int16_t uint16_t;
- #endif
- #endif
- #endif
-
- #ifndef _UINT32_T
- #define _UINT32_T
- #ifndef __uint32_t_defined
- #define __uint32_t_defined
- #ifndef uint32_t
- typedef unsigned $acx_cv_type_int32_t uint32_t;
- #endif
- #endif
- #endif
-
- #ifndef _INT8_T
- #define _INT8_T
- #ifndef __int8_t_defined
- #define __int8_t_defined
- #ifndef int8_t
- typedef $acx_cv_type_int8_t int8_t;
- #endif
- #endif
- #endif
-
- #ifndef _INT16_T
- #define _INT16_T
- #ifndef __int16_t_defined
- #define __int16_t_defined
- #ifndef int16_t
- typedef $acx_cv_type_int16_t int16_t;
- #endif
- #endif
- #endif
-
- #ifndef _INT32_T
- #define _INT32_T
- #ifndef __int32_t_defined
- #define __int32_t_defined
- #ifndef int32_t
- typedef $acx_cv_type_int32_t int32_t;
- #endif
- #endif
- #endif
-EOF
-elif test "$ac_cv_type_u_int32_t" = yes; then
- sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- /* int8_t int16_t int32_t defined by inet code, we do the u_intXX types */
- #ifndef _INT8_T
- #define _INT8_T
- #endif
- #ifndef _INT16_T
- #define _INT16_T
- #endif
- #ifndef _INT32_T
- #define _INT32_T
- #endif
-
- #ifndef _UINT8_T
- #define _UINT8_T
- #ifndef __uint8_t_defined
- #define __uint8_t_defined
- #ifndef uint8_t
- typedef u_int8_t uint8_t;
- #endif
- #endif
- #endif
-
- #ifndef _UINT16_T
- #define _UINT16_T
- #ifndef __uint16_t_defined
- #define __uint16_t_defined
- #ifndef uint16_t
- typedef u_int16_t uint16_t;
- #endif
- #endif
- #endif
-
- #ifndef _UINT32_T
- #define _UINT32_T
- #ifndef __uint32_t_defined
- #define __uint32_t_defined
- #ifndef uint32_t
- typedef u_int32_t uint32_t;
- #endif
- #endif
- #endif
-EOF
-else
- sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- /* Some systems have guard macros to prevent redefinitions, define them. */
- #ifndef _INT8_T
- #define _INT8_T
- #endif
- #ifndef _INT16_T
- #define _INT16_T
- #endif
- #ifndef _INT32_T
- #define _INT32_T
- #endif
- #ifndef _UINT8_T
- #define _UINT8_T
- #endif
- #ifndef _UINT16_T
- #define _UINT16_T
- #endif
- #ifndef _UINT32_T
- #define _UINT32_T
- #endif
-EOF
-fi
-
-# ------------- done basic int types, emit int64_t types ------------
-if test "$ac_cv_type_uint64_t" = yes; then
- sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- /* system headers have good uint64_t and int64_t */
- #ifndef _INT64_T
- #define _INT64_T
- #endif
- #ifndef _UINT64_T
- #define _UINT64_T
- #endif
-EOF
-elif test "$ac_cv_type_u_int64_t" = yes; then
- sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- /* system headers have an u_int64_t (and int64_t) */
- #ifndef _INT64_T
- #define _INT64_T
- #endif
- #ifndef _UINT64_T
- #define _UINT64_T
- #ifndef __uint64_t_defined
- #define __uint64_t_defined
- #ifndef uint64_t
- typedef u_int64_t uint64_t;
- #endif
- #endif
- #endif
-EOF
-elif test -n "$acx_cv_type_int64_t"; then
- sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- /* architecture has a 64-bit type, $acx_cv_type_int64_t */
- #ifndef _INT64_T
- #define _INT64_T
- #ifndef int64_t
- typedef $acx_cv_type_int64_t int64_t;
- #endif
- #endif
- #ifndef _UINT64_T
- #define _UINT64_T
- #ifndef __uint64_t_defined
- #define __uint64_t_defined
- #ifndef uint64_t
- typedef unsigned $acx_cv_type_int64_t uint64_t;
- #endif
- #endif
- #endif
-EOF
-else
- sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- /* some common heuristics for int64_t, using compiler-specific tests */
- #if defined __STDC_VERSION__ && (__STDC_VERSION__-0) >= 199901L
- #ifndef _INT64_T
- #define _INT64_T
- #ifndef __int64_t_defined
- #ifndef int64_t
- typedef long long int64_t;
- #endif
- #endif
- #endif
- #ifndef _UINT64_T
- #define _UINT64_T
- #ifndef uint64_t
- typedef unsigned long long uint64_t;
- #endif
- #endif
-
- #elif defined __GNUC__ && defined (__STDC__) && __STDC__-0
- /* NextStep 2.0 cc is really gcc 1.93 but it defines __GNUC__ = 2 and
- does not implement __extension__. But that compiler doesn't define
- __GNUC_MINOR__. */
- # if __GNUC__ < 2 || (__NeXT__ && !__GNUC_MINOR__)
- # define __extension__
- # endif
-
- # ifndef _INT64_T
- # define _INT64_T
- # ifndef int64_t
- __extension__ typedef long long int64_t;
- # endif
- # endif
- # ifndef _UINT64_T
- # define _UINT64_T
- # ifndef uint64_t
- __extension__ typedef unsigned long long uint64_t;
- # endif
- # endif
-
- #elif !defined __STRICT_ANSI__
- # if defined _MSC_VER || defined __WATCOMC__ || defined __BORLANDC__
-
- # ifndef _INT64_T
- # define _INT64_T
- # ifndef int64_t
- typedef __int64 int64_t;
- # endif
- # endif
- # ifndef _UINT64_T
- # define _UINT64_T
- # ifndef uint64_t
- typedef unsigned __int64 uint64_t;
- # endif
- # endif
- # endif /* compiler */
-
- #endif /* ANSI version */
-EOF
-fi
-
-# ------------- done int64_t types, emit intptr types ------------
-if test "$ac_cv_type_uintptr_t" != yes; then
- sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- /* Define intptr_t based on sizeof(void*) = $ac_cv_sizeof_void_p */
- #ifndef __uintptr_t_defined
- #ifndef uintptr_t
- typedef u$acx_cv_type_intptr_t uintptr_t;
- #endif
- #endif
- #ifndef __intptr_t_defined
- #ifndef intptr_t
- typedef $acx_cv_type_intptr_t intptr_t;
- #endif
- #endif
-EOF
-fi
-
-# ------------- done intptr types, emit int_least types ------------
-if test "$ac_cv_type_int_least32_t" != yes; then
- sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- /* Define int_least types */
- typedef int8_t int_least8_t;
- typedef int16_t int_least16_t;
- typedef int32_t int_least32_t;
- #ifdef _INT64_T
- typedef int64_t int_least64_t;
- #endif
-
- typedef uint8_t uint_least8_t;
- typedef uint16_t uint_least16_t;
- typedef uint32_t uint_least32_t;
- #ifdef _UINT64_T
- typedef uint64_t uint_least64_t;
- #endif
-EOF
-fi
-
-# ------------- done intptr types, emit int_fast types ------------
-if test "$ac_cv_type_int_fast32_t" != yes; then
- sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- /* Define int_fast types. short is often slow */
- typedef int8_t int_fast8_t;
- typedef int int_fast16_t;
- typedef int32_t int_fast32_t;
- #ifdef _INT64_T
- typedef int64_t int_fast64_t;
- #endif
-
- typedef uint8_t uint_fast8_t;
- typedef unsigned int uint_fast16_t;
- typedef uint32_t uint_fast32_t;
- #ifdef _UINT64_T
- typedef uint64_t uint_fast64_t;
- #endif
-EOF
-fi
-
-if test "$ac_cv_type_uintmax_t" != yes; then
- sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- /* Define intmax based on what we found */
- #ifndef intmax_t
- #ifdef _INT64_T
- typedef int64_t intmax_t;
- #else
- typedef long intmax_t;
- #endif
- #endif
- #ifndef uintmax_t
- #ifdef _UINT64_T
- typedef uint64_t uintmax_t;
- #else
- typedef unsigned long uintmax_t;
- #endif
- #endif
-EOF
-fi
-
-sed 's/^ *//' >> tmp-stdint.h <<EOF
-
- #endif /* GCC_GENERATED_STDINT_H */
-EOF
-
-if test -r bfd_stdint.h && cmp -s tmp-stdint.h bfd_stdint.h; then
- rm -f tmp-stdint.h
-else
- mv -f tmp-stdint.h bfd_stdint.h
-fi
-
- ;;
- "default":C)
-case "$srcdir" in
- .) srcdirpre= ;;
- *) srcdirpre='$(srcdir)/' ;;
-esac
-POFILES=
-GMOFILES=
-for lang in dummy $OBSOLETE_ALL_LINGUAS; do
- if test $lang != dummy; then
- POFILES="$POFILES $srcdirpre$lang.po"
- GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
- fi
-done
-sed -e '/SRC-POTFILES =/r po/SRC-POTFILES' \
- -e '/BLD-POTFILES =/r po/BLD-POTFILES' \
- -e "s,@POFILES@,$POFILES," \
- -e "s,@GMOFILES@,$GMOFILES," \
- po/Makefile.in > po/Makefile ;;
-
- esac
-done # for ac_tag
-
-
-as_fn_exit 0
diff --git a/support/sdbinutils/binutils/config.log b/support/sdbinutils/binutils/config.log
deleted file mode 100644
index acf2bd7..0000000
--- a/support/sdbinutils/binutils/config.log
+++ /dev/null
@@ -1,3270 +0,0 @@
-This file contains any messages produced by compilers while
-running configure, to aid debugging if configure makes a mistake.
-
-It was created by binutils configure 2.30, which was
-generated by GNU Autoconf 2.64. Invocation command line was
-
- $ /home/xavier/sdcc_gas/support/sdbinutils/binutils/configure --srcdir=.././binutils --cache-file=./config.cache --with-system-zlib --disable-option-checking --prefix=/usr/local --disable-mcs51-port --disable-z80-port --disable-z180-port --disable-r2k-port --disable-r3ka-port --disable-gbz80-port --disable-tlcs90-port --disable-ez80_z80-port --disable-ds390-port --disable-ds400-port --disable-pic14-port --disable-pic16-port --disable-hc08-port --disable-s08-port --disable-pdk13-port --disable-pdk14-port --disable-pdk15-port --enable-pdk16-port --disable-ucsim --disable-device-lib --disable-packihx --disable-pdk16-port --cache-file=/dev/null --program-transform-name=s,y,y, --disable-option-checking --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --target=x86_64-pc-linux-gnu
-
-## --------- ##
-## Platform. ##
-## --------- ##
-
-hostname = xavier-asus
-uname -m = x86_64
-uname -r = 4.15.0-65-generic
-uname -s = Linux
-uname -v = #74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019
-
-/usr/bin/uname -p = unknown
-/bin/uname -X = unknown
-
-/bin/arch = unknown
-/usr/bin/arch -k = unknown
-/usr/convex/getsysinfo = unknown
-/usr/bin/hostinfo = unknown
-/bin/machine = unknown
-/usr/bin/oslevel = unknown
-/bin/universe = unknown
-
-PATH: /home/xavier/.cargo/bin
-PATH: /home/xavier/.local/bin
-PATH: /usr/local/sbin
-PATH: /usr/local/bin
-PATH: /usr/sbin
-PATH: /usr/bin
-PATH: /sbin
-PATH: /bin
-PATH: /usr/games
-PATH: /usr/local/games
-PATH: /snap/bin
-PATH: /usr/local/xtensa-esp32-elf/bin
-
-
-## ----------- ##
-## Core tests. ##
-## ----------- ##
-
-configure:2554: checking build system type
-configure:2568: result: x86_64-pc-linux-gnu
-configure:2588: checking host system type
-configure:2601: result: x86_64-pc-linux-gnu
-configure:2621: checking target system type
-configure:2634: result: x86_64-pc-linux-gnu
-configure:2668: checking for x86_64-pc-linux-gnu-gcc
-configure:2695: result: gcc
-configure:2964: checking for C compiler version
-configure:2973: gcc --version >&5
-gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
-Copyright (C) 2017 Free Software Foundation, Inc.
-This is free software; see the source for copying conditions. There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-configure:2984: $? = 0
-configure:2973: gcc -v >&5
-Using built-in specs.
-COLLECT_GCC=gcc
-COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
-OFFLOAD_TARGET_NAMES=nvptx-none
-OFFLOAD_TARGET_DEFAULT=1
-Target: x86_64-linux-gnu
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
-Thread model: posix
-gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
-configure:2984: $? = 0
-configure:2973: gcc -V >&5
-gcc: error: unrecognized command line option '-V'
-gcc: fatal error: no input files
-compilation terminated.
-configure:2984: $? = 1
-configure:2973: gcc -qversion >&5
-gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
-gcc: fatal error: no input files
-compilation terminated.
-configure:2984: $? = 1
-configure:3004: checking for C compiler default output file name
-configure:3026: gcc -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:3030: $? = 0
-configure:3067: result: a.out
-configure:3083: checking whether the C compiler works
-configure:3092: ./a.out
-configure:3096: $? = 0
-configure:3111: result: yes
-configure:3118: checking whether we are cross compiling
-configure:3120: result: no
-configure:3123: checking for suffix of executables
-configure:3130: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:3134: $? = 0
-configure:3156: result:
-configure:3162: checking for suffix of object files
-configure:3184: gcc -c -g -O2 conftest.c >&5
-configure:3188: $? = 0
-configure:3209: result: o
-configure:3213: checking whether we are using the GNU C compiler
-configure:3232: gcc -c -g -O2 conftest.c >&5
-configure:3232: $? = 0
-configure:3241: result: yes
-configure:3250: checking whether gcc accepts -g
-configure:3270: gcc -c -g conftest.c >&5
-configure:3270: $? = 0
-configure:3311: result: yes
-configure:3328: checking for gcc option to accept ISO C89
-configure:3392: gcc -c -g -O2 conftest.c >&5
-configure:3392: $? = 0
-configure:3405: result: none needed
-configure:3426: checking for library containing strerror
-configure:3457: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:3457: $? = 0
-configure:3474: result: none required
-configure:3499: checking for a BSD-compatible install
-configure:3567: result: /usr/bin/install -c
-configure:3578: checking whether build environment is sane
-configure:3628: result: yes
-configure:3769: checking for a thread-safe mkdir -p
-configure:3808: result: /bin/mkdir -p
-configure:3821: checking for gawk
-configure:3848: result: gawk
-configure:3859: checking whether make sets $(MAKE)
-configure:3881: result: yes
-configure:3911: checking for style of include used by make
-configure:3939: result: GNU
-configure:4025: checking dependency style of gcc
-configure:4136: result: gcc3
-configure:4161: checking for x86_64-pc-linux-gnu-gcc
-configure:4188: result: gcc
-configure:4457: checking for C compiler version
-configure:4466: gcc --version >&5
-gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
-Copyright (C) 2017 Free Software Foundation, Inc.
-This is free software; see the source for copying conditions. There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-configure:4477: $? = 0
-configure:4466: gcc -v >&5
-Using built-in specs.
-COLLECT_GCC=gcc
-COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
-OFFLOAD_TARGET_NAMES=nvptx-none
-OFFLOAD_TARGET_DEFAULT=1
-Target: x86_64-linux-gnu
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
-Thread model: posix
-gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
-configure:4477: $? = 0
-configure:4466: gcc -V >&5
-gcc: error: unrecognized command line option '-V'
-gcc: fatal error: no input files
-compilation terminated.
-configure:4477: $? = 1
-configure:4466: gcc -qversion >&5
-gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
-gcc: fatal error: no input files
-compilation terminated.
-configure:4477: $? = 1
-configure:4481: checking whether we are using the GNU C compiler
-configure:4509: result: yes
-configure:4518: checking whether gcc accepts -g
-configure:4579: result: yes
-configure:4596: checking for gcc option to accept ISO C89
-configure:4673: result: none needed
-configure:4698: checking how to run the C preprocessor
-configure:4729: gcc -E conftest.c
-configure:4729: $? = 0
-configure:4743: gcc -E conftest.c
-conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:4743: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "binutils"
-| #define PACKAGE_TARNAME "binutils"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "binutils 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "binutils"
-| #define VERSION "2.30"
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:4768: result: gcc -E
-configure:4788: gcc -E conftest.c
-configure:4788: $? = 0
-configure:4802: gcc -E conftest.c
-conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:4802: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "binutils"
-| #define PACKAGE_TARNAME "binutils"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "binutils 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "binutils"
-| #define VERSION "2.30"
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:4831: checking for grep that handles long lines and -e
-configure:4889: result: /bin/grep
-configure:4894: checking for egrep
-configure:4956: result: /bin/grep -E
-configure:4961: checking for ANSI C header files
-configure:4981: gcc -c -g -O2 conftest.c >&5
-configure:4981: $? = 0
-configure:5054: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:5054: $? = 0
-configure:5054: ./conftest
-configure:5054: $? = 0
-configure:5065: result: yes
-configure:5078: checking for sys/types.h
-configure:5078: gcc -c -g -O2 conftest.c >&5
-configure:5078: $? = 0
-configure:5078: result: yes
-configure:5078: checking for sys/stat.h
-configure:5078: gcc -c -g -O2 conftest.c >&5
-configure:5078: $? = 0
-configure:5078: result: yes
-configure:5078: checking for stdlib.h
-configure:5078: gcc -c -g -O2 conftest.c >&5
-configure:5078: $? = 0
-configure:5078: result: yes
-configure:5078: checking for string.h
-configure:5078: gcc -c -g -O2 conftest.c >&5
-configure:5078: $? = 0
-configure:5078: result: yes
-configure:5078: checking for memory.h
-configure:5078: gcc -c -g -O2 conftest.c >&5
-configure:5078: $? = 0
-configure:5078: result: yes
-configure:5078: checking for strings.h
-configure:5078: gcc -c -g -O2 conftest.c >&5
-configure:5078: $? = 0
-configure:5078: result: yes
-configure:5078: checking for inttypes.h
-configure:5078: gcc -c -g -O2 conftest.c >&5
-configure:5078: $? = 0
-configure:5078: result: yes
-configure:5078: checking for stdint.h
-configure:5078: gcc -c -g -O2 conftest.c >&5
-configure:5078: $? = 0
-configure:5078: result: yes
-configure:5078: checking for unistd.h
-configure:5078: gcc -c -g -O2 conftest.c >&5
-configure:5078: $? = 0
-configure:5078: result: yes
-configure:5092: checking minix/config.h usability
-configure:5092: gcc -c -g -O2 conftest.c >&5
-conftest.c:54:10: fatal error: minix/config.h: No such file or directory
- #include <minix/config.h>
- ^~~~~~~~~~~~~~~~
-compilation terminated.
-configure:5092: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "binutils"
-| #define PACKAGE_TARNAME "binutils"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "binutils 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "binutils"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| #include <minix/config.h>
-configure:5092: result: no
-configure:5092: checking minix/config.h presence
-configure:5092: gcc -E conftest.c
-conftest.c:21:10: fatal error: minix/config.h: No such file or directory
- #include <minix/config.h>
- ^~~~~~~~~~~~~~~~
-compilation terminated.
-configure:5092: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "binutils"
-| #define PACKAGE_TARNAME "binutils"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "binutils 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "binutils"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| /* end confdefs.h. */
-| #include <minix/config.h>
-configure:5092: result: no
-configure:5092: checking for minix/config.h
-configure:5092: result: no
-configure:5113: checking whether it is safe to define __EXTENSIONS__
-configure:5131: gcc -c -g -O2 conftest.c >&5
-configure:5131: $? = 0
-configure:5138: result: yes
-configure:5201: checking how to print strings
-configure:5228: result: printf
-configure:5249: checking for a sed that does not truncate output
-configure:5313: result: /bin/sed
-configure:5331: checking for fgrep
-configure:5393: result: /bin/grep -F
-configure:5428: checking for ld used by gcc
-configure:5495: result: ld
-configure:5502: checking if the linker (ld) is GNU ld
-configure:5517: result: yes
-configure:5529: checking for BSD- or MS-compatible name lister (nm)
-configure:5578: result: nm
-configure:5708: checking the name lister (nm) interface
-configure:5715: gcc -c -g -O2 conftest.c >&5
-configure:5718: nm "conftest.o"
-configure:5721: output
-0000000000000000 B some_variable
-configure:5728: result: BSD nm
-configure:5731: checking whether ln -s works
-configure:5735: result: yes
-configure:5743: checking the maximum length of command line arguments
-configure:5868: result: 1572864
-configure:5885: checking whether the shell understands some XSI constructs
-configure:5895: result: yes
-configure:5899: checking whether the shell understands "+="
-configure:5905: result: yes
-configure:5940: checking for ld option to reload object files
-configure:5947: result: -r
-configure:5976: checking for x86_64-pc-linux-gnu-objdump
-configure:6003: result: objdump
-configure:6075: checking how to recognize dependent libraries
-configure:6276: result: pass_all
-configure:6296: checking for x86_64-pc-linux-gnu-ar
-configure:6323: result: ar
-configure:6401: checking for x86_64-pc-linux-gnu-strip
-configure:6431: result: no
-configure:6441: checking for strip
-configure:6457: found /usr/bin/strip
-configure:6468: result: strip
-configure:6500: checking for x86_64-pc-linux-gnu-ranlib
-configure:6527: result: ranlib
-configure:6669: checking command to parse nm output from gcc object
-configure:6787: gcc -c -g -O2 conftest.c >&5
-configure:6790: $? = 0
-configure:6794: nm conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
-configure:6797: $? = 0
-configure:6851: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c conftstm.o >&5
-configure:6854: $? = 0
-configure:6892: result: ok
-configure:6987: gcc -c -g -O2 conftest.c >&5
-configure:6990: $? = 0
-configure:7740: checking for dlfcn.h
-configure:7740: gcc -c -g -O2 conftest.c >&5
-configure:7740: $? = 0
-configure:7740: result: yes
-configure:7927: checking for objdir
-configure:7942: result: .libs
-configure:8213: checking if gcc supports -fno-rtti -fno-exceptions
-configure:8231: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
-cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C
-configure:8235: $? = 0
-configure:8248: result: no
-configure:8268: checking for gcc option to produce PIC
-configure:8554: result: -fPIC -DPIC
-configure:8566: checking if gcc PIC flag -fPIC -DPIC works
-configure:8584: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5
-configure:8588: $? = 0
-configure:8601: result: yes
-configure:8625: checking if gcc static flag -static works
-configure:8653: result: yes
-configure:8668: checking if gcc supports -c -o file.o
-configure:8689: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
-configure:8693: $? = 0
-configure:8715: result: yes
-configure:8723: checking if gcc supports -c -o file.o
-configure:8770: result: yes
-configure:8803: checking whether the gcc linker (ld -m elf_x86_64) supports shared libraries
-configure:9874: result: yes
-configure:9911: checking whether -lc should be explicitly linked in
-configure:9919: gcc -c -g -O2 conftest.c >&5
-configure:9922: $? = 0
-configure:9937: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
-configure:9940: $? = 0
-configure:9954: result: no
-configure:10119: checking dynamic linker characteristics
-configure:10570: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc -Wl,-rpath -Wl,/foo conftest.c >&5
-configure:10570: $? = 0
-configure:10792: result: GNU/Linux ld.so
-configure:10899: checking how to hardcode library paths into programs
-configure:10924: result: immediate
-configure:11464: checking whether stripping libraries is possible
-configure:11469: result: yes
-configure:11504: checking if libtool supports shared libraries
-configure:11506: result: yes
-configure:11509: checking whether to build shared libraries
-configure:11530: result: yes
-configure:11533: checking whether to build static libraries
-configure:11537: result: yes
-configure:11585: checking for dlfcn.h
-configure:11585: result: yes
-configure:11598: checking for windows.h
-configure:11598: gcc -c -g -O2 conftest.c >&5
-conftest.c:63:10: fatal error: windows.h: No such file or directory
- #include <windows.h>
- ^~~~~~~~~~~
-compilation terminated.
-configure:11598: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "binutils"
-| #define PACKAGE_TARNAME "binutils"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "binutils 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "binutils"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-|
-| #include <windows.h>
-configure:11598: result: no
-configure:11625: checking for library containing dlopen
-configure:11656: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/ccKQdEnW.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/binutils/conftest.c:40: undefined reference to `dlopen'
-collect2: error: ld returned 1 exit status
-configure:11656: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "binutils"
-| #define PACKAGE_TARNAME "binutils"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "binutils 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "binutils"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| /* end confdefs.h. */
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char dlopen ();
-| int
-| main ()
-| {
-| return dlopen ();
-| ;
-| return 0;
-| }
-configure:11656: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:11656: $? = 0
-configure:11673: result: -ldl
-configure:11704: checking for special C compiler options needed for large files
-configure:11749: result: no
-configure:11755: checking for _FILE_OFFSET_BITS value needed for large files
-configure:11780: gcc -c -g -O2 conftest.c >&5
-configure:11780: $? = 0
-configure:11812: result: no
-configure:12114: checking for bison
-configure:12141: result: bison -y
-configure:12157: checking for flex
-configure:12184: result: flex
-configure:12222: flex conftest.l
-configure:12226: $? = 0
-configure:12228: checking lex output file root
-configure:12242: result: lex.yy
-configure:12247: checking lex library
-configure:12261: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-/tmp/ccN9K1u9.o: In function `input':
-/home/xavier/sdcc_gas/support/sdbinutils/binutils/lex.yy.c:1179: undefined reference to `yywrap'
-/tmp/ccN9K1u9.o: In function `yylex':
-/home/xavier/sdcc_gas/support/sdbinutils/binutils/lex.yy.c:870: undefined reference to `yywrap'
-/tmp/ccN9K1u9.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/binutils/conftest.l:16: undefined reference to `yywrap'
-collect2: error: ld returned 1 exit status
-configure:12261: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "binutils"
-| #define PACKAGE_TARNAME "binutils"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "binutils 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "binutils"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| #define DEFAULT_AR_DETERMINISTIC 0
-| #define DEFAULT_STRINGS_ALL 1
-| /* end confdefs.h. */
-|
-| #line 3 "lex.yy.c"
-|
-| #define YY_INT_ALIGNED short int
-|
-| /* A lexical scanner generated by flex */
-|
-| #define FLEX_SCANNER
-| #define YY_FLEX_MAJOR_VERSION 2
-| #define YY_FLEX_MINOR_VERSION 6
-| #define YY_FLEX_SUBMINOR_VERSION 4
-| #if YY_FLEX_SUBMINOR_VERSION > 0
-| #define FLEX_BETA
-| #endif
-|
-| /* First, we deal with platform-specific or compiler-specific issues. */
-|
-| /* begin standard C headers. */
-| #include <stdio.h>
-| #include <string.h>
-| #include <errno.h>
-| #include <stdlib.h>
-|
-| /* end standard C headers. */
-|
-| /* flex integer type definitions */
-|
-| #ifndef FLEXINT_H
-| #define FLEXINT_H
-|
-| /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
-|
-| #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
-|
-| /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
-| * if you want the limit (max/min) macros for int types.
-| */
-| #ifndef __STDC_LIMIT_MACROS
-| #define __STDC_LIMIT_MACROS 1
-| #endif
-|
-| #include <inttypes.h>
-| typedef int8_t flex_int8_t;
-| typedef uint8_t flex_uint8_t;
-| typedef int16_t flex_int16_t;
-| typedef uint16_t flex_uint16_t;
-| typedef int32_t flex_int32_t;
-| typedef uint32_t flex_uint32_t;
-| #else
-| typedef signed char flex_int8_t;
-| typedef short int flex_int16_t;
-| typedef int flex_int32_t;
-| typedef unsigned char flex_uint8_t;
-| typedef unsigned short int flex_uint16_t;
-| typedef unsigned int flex_uint32_t;
-|
-| /* Limits of integral types. */
-| #ifndef INT8_MIN
-| #define INT8_MIN (-128)
-| #endif
-| #ifndef INT16_MIN
-| #define INT16_MIN (-32767-1)
-| #endif
-| #ifndef INT32_MIN
-| #define INT32_MIN (-2147483647-1)
-| #endif
-| #ifndef INT8_MAX
-| #define INT8_MAX (127)
-| #endif
-| #ifndef INT16_MAX
-| #define INT16_MAX (32767)
-| #endif
-| #ifndef INT32_MAX
-| #define INT32_MAX (2147483647)
-| #endif
-| #ifndef UINT8_MAX
-| #define UINT8_MAX (255U)
-| #endif
-| #ifndef UINT16_MAX
-| #define UINT16_MAX (65535U)
-| #endif
-| #ifndef UINT32_MAX
-| #define UINT32_MAX (4294967295U)
-| #endif
-|
-| #ifndef SIZE_MAX
-| #define SIZE_MAX (~(size_t)0)
-| #endif
-|
-| #endif /* ! C99 */
-|
-| #endif /* ! FLEXINT_H */
-|
-| /* begin standard C++ headers. */
-|
-| /* TODO: this is always defined, so inline it */
-| #define yyconst const
-|
-| #if defined(__GNUC__) && __GNUC__ >= 3
-| #define yynoreturn __attribute__((__noreturn__))
-| #else
-| #define yynoreturn
-| #endif
-|
-| /* Returned upon end-of-file. */
-| #define YY_NULL 0
-|
-| /* Promotes a possibly negative, possibly signed char to an
-| * integer in range [0..255] for use as an array index.
-| */
-| #define YY_SC_TO_UI(c) ((YY_CHAR) (c))
-|
-| /* Enter a start condition. This macro really ought to take a parameter,
-| * but we do it the disgusting crufty way forced on us by the ()-less
-| * definition of BEGIN.
-| */
-| #define BEGIN (yy_start) = 1 + 2 *
-| /* Translate the current start state into a value that can be later handed
-| * to BEGIN to return to the state. The YYSTATE alias is for lex
-| * compatibility.
-| */
-| #define YY_START (((yy_start) - 1) / 2)
-| #define YYSTATE YY_START
-| /* Action number for EOF rule of a given start state. */
-| #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
-| /* Special action meaning "start processing a new file". */
-| #define YY_NEW_FILE yyrestart( yyin )
-| #define YY_END_OF_BUFFER_CHAR 0
-|
-| /* Size of default input buffer. */
-| #ifndef YY_BUF_SIZE
-| #ifdef __ia64__
-| /* On IA-64, the buffer size is 16k, not 8k.
-| * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
-| * Ditto for the __ia64__ case accordingly.
-| */
-| #define YY_BUF_SIZE 32768
-| #else
-| #define YY_BUF_SIZE 16384
-| #endif /* __ia64__ */
-| #endif
-|
-| /* The state buf must be large enough to hold one state per character in the main buffer.
-| */
-| #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
-|
-| #ifndef YY_TYPEDEF_YY_BUFFER_STATE
-| #define YY_TYPEDEF_YY_BUFFER_STATE
-| typedef struct yy_buffer_state *YY_BUFFER_STATE;
-| #endif
-|
-| #ifndef YY_TYPEDEF_YY_SIZE_T
-| #define YY_TYPEDEF_YY_SIZE_T
-| typedef size_t yy_size_t;
-| #endif
-|
-| extern int yyleng;
-|
-| extern FILE *yyin, *yyout;
-|
-| #define EOB_ACT_CONTINUE_SCAN 0
-| #define EOB_ACT_END_OF_FILE 1
-| #define EOB_ACT_LAST_MATCH 2
-|
-| #define YY_LESS_LINENO(n)
-| #define YY_LINENO_REWIND_TO(ptr)
-|
-| /* Return all but the first "n" matched characters back to the input stream. */
-| #define yyless(n) \
-| do \
-| { \
-| /* Undo effects of setting up yytext. */ \
-| int yyless_macro_arg = (n); \
-| YY_LESS_LINENO(yyless_macro_arg);\
-| *yy_cp = (yy_hold_char); \
-| YY_RESTORE_YY_MORE_OFFSET \
-| (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
-| YY_DO_BEFORE_ACTION; /* set up yytext again */ \
-| } \
-| while ( 0 )
-| #define unput(c) yyunput( c, (yytext_ptr) )
-|
-| #ifndef YY_STRUCT_YY_BUFFER_STATE
-| #define YY_STRUCT_YY_BUFFER_STATE
-| struct yy_buffer_state
-| {
-| FILE *yy_input_file;
-|
-| char *yy_ch_buf; /* input buffer */
-| char *yy_buf_pos; /* current position in input buffer */
-|
-| /* Size of input buffer in bytes, not including room for EOB
-| * characters.
-| */
-| int yy_buf_size;
-|
-| /* Number of characters read into yy_ch_buf, not including EOB
-| * characters.
-| */
-| int yy_n_chars;
-|
-| /* Whether we "own" the buffer - i.e., we know we created it,
-| * and can realloc() it to grow it, and should free() it to
-| * delete it.
-| */
-| int yy_is_our_buffer;
-|
-| /* Whether this is an "interactive" input source; if so, and
-| * if we're using stdio for input, then we want to use getc()
-| * instead of fread(), to make sure we stop fetching input after
-| * each newline.
-| */
-| int yy_is_interactive;
-|
-| /* Whether we're considered to be at the beginning of a line.
-| * If so, '^' rules will be active on the next match, otherwise
-| * not.
-| */
-| int yy_at_bol;
-|
-| int yy_bs_lineno; /**< The line count. */
-| int yy_bs_column; /**< The column count. */
-|
-| /* Whether to try to fill the input buffer when we reach the
-| * end of it.
-| */
-| int yy_fill_buffer;
-|
-| int yy_buffer_status;
-|
-| #define YY_BUFFER_NEW 0
-| #define YY_BUFFER_NORMAL 1
-| /* When an EOF's been seen but there's still some text to process
-| * then we mark the buffer as YY_EOF_PENDING, to indicate that we
-| * shouldn't try reading from the input source any more. We might
-| * still have a bunch of tokens to match, though, because of
-| * possible backing-up.
-| *
-| * When we actually see the EOF, we change the status to "new"
-| * (via yyrestart()), so that the user can continue scanning by
-| * just pointing yyin at a new input file.
-| */
-| #define YY_BUFFER_EOF_PENDING 2
-|
-| };
-| #endif /* !YY_STRUCT_YY_BUFFER_STATE */
-|
-| /* Stack of input buffers. */
-| static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
-| static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
-| static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */
-|
-| /* We provide macros for accessing buffer states in case in the
-| * future we want to put the buffer states in a more general
-| * "scanner state".
-| *
-| * Returns the top of the stack, or NULL.
-| */
-| #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
-| ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
-| : NULL)
-| /* Same as previous macro, but useful when we know that the buffer stack is not
-| * NULL or when we need an lvalue. For internal use only.
-| */
-| #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
-|
-| /* yy_hold_char holds the character lost when yytext is formed. */
-| static char yy_hold_char;
-| static int yy_n_chars; /* number of characters read into yy_ch_buf */
-| int yyleng;
-|
-| /* Points to current character in buffer. */
-| static char *yy_c_buf_p = NULL;
-| static int yy_init = 0; /* whether we need to initialize */
-| static int yy_start = 0; /* start state number */
-|
-| /* Flag which is used to allow yywrap()'s to do buffer switches
-| * instead of setting up a fresh yyin. A bit of a hack ...
-| */
-| static int yy_did_buffer_switch_on_eof;
-|
-| void yyrestart ( FILE *input_file );
-| void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer );
-| YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size );
-| void yy_delete_buffer ( YY_BUFFER_STATE b );
-| void yy_flush_buffer ( YY_BUFFER_STATE b );
-| void yypush_buffer_state ( YY_BUFFER_STATE new_buffer );
-| void yypop_buffer_state ( void );
-|
-| static void yyensure_buffer_stack ( void );
-| static void yy_load_buffer_state ( void );
-| static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file );
-| #define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER )
-|
-| YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size );
-| YY_BUFFER_STATE yy_scan_string ( const char *yy_str );
-| YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len );
-|
-| void *yyalloc ( yy_size_t );
-| void *yyrealloc ( void *, yy_size_t );
-| void yyfree ( void * );
-|
-| #define yy_new_buffer yy_create_buffer
-| #define yy_set_interactive(is_interactive) \
-| { \
-| if ( ! YY_CURRENT_BUFFER ){ \
-| yyensure_buffer_stack (); \
-| YY_CURRENT_BUFFER_LVALUE = \
-| yy_create_buffer( yyin, YY_BUF_SIZE ); \
-| } \
-| YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
-| }
-| #define yy_set_bol(at_bol) \
-| { \
-| if ( ! YY_CURRENT_BUFFER ){\
-| yyensure_buffer_stack (); \
-| YY_CURRENT_BUFFER_LVALUE = \
-| yy_create_buffer( yyin, YY_BUF_SIZE ); \
-| } \
-| YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
-| }
-| #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
-|
-| /* Begin user sect3 */
-| typedef flex_uint8_t YY_CHAR;
-|
-| FILE *yyin = NULL, *yyout = NULL;
-|
-| typedef int yy_state_type;
-|
-| extern int yylineno;
-| int yylineno = 1;
-|
-| extern char *yytext;
-| #ifdef yytext_ptr
-| #undef yytext_ptr
-| #endif
-| #define yytext_ptr yytext
-|
-| static yy_state_type yy_get_previous_state ( void );
-| static yy_state_type yy_try_NUL_trans ( yy_state_type current_state );
-| static int yy_get_next_buffer ( void );
-| static void yynoreturn yy_fatal_error ( const char* msg );
-|
-| /* Done after the current pattern has been matched and before the
-| * corresponding action - sets up yytext.
-| */
-| #define YY_DO_BEFORE_ACTION \
-| (yytext_ptr) = yy_bp; \
-| (yytext_ptr) -= (yy_more_len); \
-| yyleng = (int) (yy_cp - (yytext_ptr)); \
-| (yy_hold_char) = *yy_cp; \
-| *yy_cp = '\0'; \
-| (yy_c_buf_p) = yy_cp;
-| #define YY_NUM_RULES 8
-| #define YY_END_OF_BUFFER 9
-| /* This struct is not used in this scanner,
-| but its presence is necessary. */
-| struct yy_trans_info
-| {
-| flex_int32_t yy_verify;
-| flex_int32_t yy_nxt;
-| };
-| static const flex_int16_t yy_acclist[23] =
-| { 0,
-| 9, 7, 8, 8, 1, 7, 8, 2, 7, 8,
-| 3, 7, 8, 4, 7, 8, 5, 7, 8, 6,
-| 7, 8
-| } ;
-|
-| static const flex_int16_t yy_accept[14] =
-| { 0,
-| 1, 1, 1, 2, 4, 5, 8, 11, 14, 17,
-| 20, 23, 23
-| } ;
-|
-| static const YY_CHAR yy_ec[256] =
-| { 0,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 3, 4, 5, 6,
-|
-| 7, 8, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-|
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1
-| } ;
-|
-| static const YY_CHAR yy_meta[9] =
-| { 0,
-| 1, 1, 1, 1, 1, 1, 1, 1
-| } ;
-|
-| static const flex_int16_t yy_base[13] =
-| { 0,
-| 0, 0, 9, 10, 10, 10, 10, 10, 10, 10,
-| 10, 10
-| } ;
-|
-| static const flex_int16_t yy_def[13] =
-| { 0,
-| 12, 1, 12, 12, 12, 12, 12, 12, 12, 12,
-| 12, 0
-| } ;
-|
-| static const flex_int16_t yy_nxt[19] =
-| { 0,
-| 4, 5, 6, 7, 8, 9, 10, 11, 12, 3,
-| 12, 12, 12, 12, 12, 12, 12, 12
-| } ;
-|
-| static const flex_int16_t yy_chk[19] =
-| { 0,
-| 1, 1, 1, 1, 1, 1, 1, 1, 3, 12,
-| 12, 12, 12, 12, 12, 12, 12, 12
-| } ;
-|
-| extern int yy_flex_debug;
-| int yy_flex_debug = 0;
-|
-| static yy_state_type *yy_state_buf=0, *yy_state_ptr=0;
-| static char *yy_full_match;
-| static int yy_lp;
-| #define REJECT \
-| { \
-| *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \
-| yy_cp = (yy_full_match); /* restore poss. backed-over text */ \
-| ++(yy_lp); \
-| goto find_rule; \
-| }
-|
-| static int yy_more_flag = 0;
-| static int yy_more_len = 0;
-| #define yymore() ((yy_more_flag) = 1)
-| #define YY_MORE_ADJ (yy_more_len)
-| #define YY_RESTORE_YY_MORE_OFFSET
-| char *yytext;
-| #line 1 "conftest.l"
-| #line 460 "lex.yy.c"
-|
-| #define INITIAL 0
-|
-| #ifndef YY_NO_UNISTD_H
-| /* Special case for "unistd.h", since it is non-ANSI. We include it way
-| * down here because we want the user's section 1 to have been scanned first.
-| * The user has a chance to override it with an option.
-| */
-| #include <unistd.h>
-| #endif
-|
-| #ifndef YY_EXTRA_TYPE
-| #define YY_EXTRA_TYPE void *
-| #endif
-|
-| static int yy_init_globals ( void );
-|
-| /* Accessor methods to globals.
-| These are made visible to non-reentrant scanners for convenience. */
-|
-| int yylex_destroy ( void );
-|
-| int yyget_debug ( void );
-|
-| void yyset_debug ( int debug_flag );
-|
-| YY_EXTRA_TYPE yyget_extra ( void );
-|
-| void yyset_extra ( YY_EXTRA_TYPE user_defined );
-|
-| FILE *yyget_in ( void );
-|
-| void yyset_in ( FILE * _in_str );
-|
-| FILE *yyget_out ( void );
-|
-| void yyset_out ( FILE * _out_str );
-|
-| int yyget_leng ( void );
-|
-| char *yyget_text ( void );
-|
-| int yyget_lineno ( void );
-|
-| void yyset_lineno ( int _line_number );
-|
-| /* Macros after this point can all be overridden by user definitions in
-| * section 1.
-| */
-|
-| #ifndef YY_SKIP_YYWRAP
-| #ifdef __cplusplus
-| extern "C" int yywrap ( void );
-| #else
-| extern int yywrap ( void );
-| #endif
-| #endif
-|
-| #ifndef YY_NO_UNPUT
-|
-| static void yyunput ( int c, char *buf_ptr );
-|
-| #endif
-|
-| #ifndef yytext_ptr
-| static void yy_flex_strncpy ( char *, const char *, int );
-| #endif
-|
-| #ifdef YY_NEED_STRLEN
-| static int yy_flex_strlen ( const char * );
-| #endif
-|
-| #ifndef YY_NO_INPUT
-| #ifdef __cplusplus
-| static int yyinput ( void );
-| #else
-| static int input ( void );
-| #endif
-|
-| #endif
-|
-| /* Amount of stuff to slurp up with each read. */
-| #ifndef YY_READ_BUF_SIZE
-| #ifdef __ia64__
-| /* On IA-64, the buffer size is 16k, not 8k */
-| #define YY_READ_BUF_SIZE 16384
-| #else
-| #define YY_READ_BUF_SIZE 8192
-| #endif /* __ia64__ */
-| #endif
-|
-| /* Copy whatever the last rule matched to the standard output. */
-| #ifndef ECHO
-| /* This used to be an fputs(), but since the string might contain NUL's,
-| * we now use fwrite().
-| */
-| #define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0)
-| #endif
-|
-| /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
-| * is returned in "result".
-| */
-| #ifndef YY_INPUT
-| #define YY_INPUT(buf,result,max_size) \
-| if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
-| { \
-| int c = '*'; \
-| int n; \
-| for ( n = 0; n < max_size && \
-| (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
-| buf[n] = (char) c; \
-| if ( c == '\n' ) \
-| buf[n++] = (char) c; \
-| if ( c == EOF && ferror( yyin ) ) \
-| YY_FATAL_ERROR( "input in flex scanner failed" ); \
-| result = n; \
-| } \
-| else \
-| { \
-| errno=0; \
-| while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \
-| { \
-| if( errno != EINTR) \
-| { \
-| YY_FATAL_ERROR( "input in flex scanner failed" ); \
-| break; \
-| } \
-| errno=0; \
-| clearerr(yyin); \
-| } \
-| }\
-| \
-|
-| #endif
-|
-| /* No semi-colon after return; correct usage is to write "yyterminate();" -
-| * we don't want an extra ';' after the "return" because that will cause
-| * some compilers to complain about unreachable statements.
-| */
-| #ifndef yyterminate
-| #define yyterminate() return YY_NULL
-| #endif
-|
-| /* Number of entries by which start-condition stack grows. */
-| #ifndef YY_START_STACK_INCR
-| #define YY_START_STACK_INCR 25
-| #endif
-|
-| /* Report a fatal error. */
-| #ifndef YY_FATAL_ERROR
-| #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
-| #endif
-|
-| /* end tables serialization structures and prototypes */
-|
-| /* Default declaration of generated scanner - a define so the user can
-| * easily add parameters.
-| */
-| #ifndef YY_DECL
-| #define YY_DECL_IS_OURS 1
-|
-| extern int yylex (void);
-|
-| #define YY_DECL int yylex (void)
-| #endif /* !YY_DECL */
-|
-| /* Code executed at the beginning of each rule, after yytext and yyleng
-| * have been set up.
-| */
-| #ifndef YY_USER_ACTION
-| #define YY_USER_ACTION
-| #endif
-|
-| /* Code executed at the end of each rule. */
-| #ifndef YY_BREAK
-| #define YY_BREAK /*LINTED*/break;
-| #endif
-|
-| #define YY_RULE_SETUP \
-| YY_USER_ACTION
-|
-| /** The main scanner function which does all the work.
-| */
-| YY_DECL
-| {
-| yy_state_type yy_current_state;
-| char *yy_cp, *yy_bp;
-| int yy_act;
-|
-| if ( !(yy_init) )
-| {
-| (yy_init) = 1;
-|
-| #ifdef YY_USER_INIT
-| YY_USER_INIT;
-| #endif
-|
-| /* Create the reject buffer large enough to save one state per allowed character. */
-| if ( ! (yy_state_buf) )
-| (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE );
-| if ( ! (yy_state_buf) )
-| YY_FATAL_ERROR( "out of dynamic memory in yylex()" );
-|
-| if ( ! (yy_start) )
-| (yy_start) = 1; /* first start state */
-|
-| if ( ! yyin )
-| yyin = stdin;
-|
-| if ( ! yyout )
-| yyout = stdout;
-|
-| if ( ! YY_CURRENT_BUFFER ) {
-| yyensure_buffer_stack ();
-| YY_CURRENT_BUFFER_LVALUE =
-| yy_create_buffer( yyin, YY_BUF_SIZE );
-| }
-|
-| yy_load_buffer_state( );
-| }
-|
-| {
-| #line 1 "conftest.l"
-|
-| #line 685 "lex.yy.c"
-|
-| while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */
-| {
-| (yy_more_len) = 0;
-| if ( (yy_more_flag) )
-| {
-| (yy_more_len) = (int) ((yy_c_buf_p) - (yytext_ptr));
-| (yy_more_flag) = 0;
-| }
-| yy_cp = (yy_c_buf_p);
-|
-| /* Support of yytext. */
-| *yy_cp = (yy_hold_char);
-|
-| /* yy_bp points to the position in yy_ch_buf of the start of
-| * the current run.
-| */
-| yy_bp = yy_cp;
-|
-| yy_current_state = (yy_start);
-|
-| (yy_state_ptr) = (yy_state_buf);
-| *(yy_state_ptr)++ = yy_current_state;
-|
-| yy_match:
-| do
-| {
-| YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ;
-| while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
-| {
-| yy_current_state = (int) yy_def[yy_current_state];
-| if ( yy_current_state >= 13 )
-| yy_c = yy_meta[yy_c];
-| }
-| yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
-| *(yy_state_ptr)++ = yy_current_state;
-| ++yy_cp;
-| }
-| while ( yy_base[yy_current_state] != 10 );
-|
-| yy_find_action:
-| yy_current_state = *--(yy_state_ptr);
-| (yy_lp) = yy_accept[yy_current_state];
-|
-| find_rule: /* we branch to this label when backing up */
-|
-| for ( ; ; ) /* until we find what rule we matched */
-| {
-| if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] )
-| {
-| yy_act = yy_acclist[(yy_lp)];
-| {
-| (yy_full_match) = yy_cp;
-| break;
-| }
-| }
-| --yy_cp;
-| yy_current_state = *--(yy_state_ptr);
-| (yy_lp) = yy_accept[yy_current_state];
-| }
-|
-| YY_DO_BEFORE_ACTION;
-|
-| do_action: /* This label is used only to access EOF actions. */
-|
-| switch ( yy_act )
-| { /* beginning of action switch */
-| case 1:
-| YY_RULE_SETUP
-| #line 2 "conftest.l"
-| { ECHO; }
-| YY_BREAK
-| case 2:
-| YY_RULE_SETUP
-| #line 3 "conftest.l"
-| { REJECT; }
-| YY_BREAK
-| case 3:
-| YY_RULE_SETUP
-| #line 4 "conftest.l"
-| { yymore (); }
-| YY_BREAK
-| case 4:
-| YY_RULE_SETUP
-| #line 5 "conftest.l"
-| { yyless (1); }
-| YY_BREAK
-| case 5:
-| YY_RULE_SETUP
-| #line 6 "conftest.l"
-| { yyless (input () != 0); }
-| YY_BREAK
-| case 6:
-| YY_RULE_SETUP
-| #line 7 "conftest.l"
-| { unput (yytext[0]); }
-| YY_BREAK
-| case 7:
-| YY_RULE_SETUP
-| #line 8 "conftest.l"
-| { BEGIN INITIAL; }
-| YY_BREAK
-| case 8:
-| YY_RULE_SETUP
-| #line 9 "conftest.l"
-| ECHO;
-| YY_BREAK
-| #line 793 "lex.yy.c"
-| case YY_STATE_EOF(INITIAL):
-| yyterminate();
-|
-| case YY_END_OF_BUFFER:
-| {
-| /* Amount of text matched not including the EOB char. */
-| int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
-|
-| /* Undo the effects of YY_DO_BEFORE_ACTION. */
-| *yy_cp = (yy_hold_char);
-| YY_RESTORE_YY_MORE_OFFSET
-|
-| if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
-| {
-| /* We're scanning a new file or input source. It's
-| * possible that this happened because the user
-| * just pointed yyin at a new source and called
-| * yylex(). If so, then we have to assure
-| * consistency between YY_CURRENT_BUFFER and our
-| * globals. Here is the right place to do so, because
-| * this is the first action (other than possibly a
-| * back-up) that will match for the new input source.
-| */
-| (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
-| YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
-| YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
-| }
-|
-| /* Note that here we test for yy_c_buf_p "<=" to the position
-| * of the first EOB in the buffer, since yy_c_buf_p will
-| * already have been incremented past the NUL character
-| * (since all states make transitions on EOB to the
-| * end-of-buffer state). Contrast this with the test
-| * in input().
-| */
-| if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
-| { /* This was really a NUL. */
-| yy_state_type yy_next_state;
-|
-| (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
-|
-| yy_current_state = yy_get_previous_state( );
-|
-| /* Okay, we're now positioned to make the NUL
-| * transition. We couldn't have
-| * yy_get_previous_state() go ahead and do it
-| * for us because it doesn't know how to deal
-| * with the possibility of jamming (and we don't
-| * want to build jamming into it because then it
-| * will run more slowly).
-| */
-|
-| yy_next_state = yy_try_NUL_trans( yy_current_state );
-|
-| yy_bp = (yytext_ptr) + YY_MORE_ADJ;
-|
-| if ( yy_next_state )
-| {
-| /* Consume the NUL. */
-| yy_cp = ++(yy_c_buf_p);
-| yy_current_state = yy_next_state;
-| goto yy_match;
-| }
-|
-| else
-| {
-| yy_cp = (yy_c_buf_p);
-| goto yy_find_action;
-| }
-| }
-|
-| else switch ( yy_get_next_buffer( ) )
-| {
-| case EOB_ACT_END_OF_FILE:
-| {
-| (yy_did_buffer_switch_on_eof) = 0;
-|
-| if ( yywrap( ) )
-| {
-| /* Note: because we've taken care in
-| * yy_get_next_buffer() to have set up
-| * yytext, we can now set up
-| * yy_c_buf_p so that if some total
-| * hoser (like flex itself) wants to
-| * call the scanner after we return the
-| * YY_NULL, it'll still work - another
-| * YY_NULL will get returned.
-| */
-| (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
-|
-| yy_act = YY_STATE_EOF(YY_START);
-| goto do_action;
-| }
-|
-| else
-| {
-| if ( ! (yy_did_buffer_switch_on_eof) )
-| YY_NEW_FILE;
-| }
-| break;
-| }
-|
-| case EOB_ACT_CONTINUE_SCAN:
-| (yy_c_buf_p) =
-| (yytext_ptr) + yy_amount_of_matched_text;
-|
-| yy_current_state = yy_get_previous_state( );
-|
-| yy_cp = (yy_c_buf_p);
-| yy_bp = (yytext_ptr) + YY_MORE_ADJ;
-| goto yy_match;
-|
-| case EOB_ACT_LAST_MATCH:
-| (yy_c_buf_p) =
-| &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
-|
-| yy_current_state = yy_get_previous_state( );
-|
-| yy_cp = (yy_c_buf_p);
-| yy_bp = (yytext_ptr) + YY_MORE_ADJ;
-| goto yy_find_action;
-| }
-| break;
-| }
-|
-| default:
-| YY_FATAL_ERROR(
-| "fatal flex scanner internal error--no action found" );
-| } /* end of action switch */
-| } /* end of scanning one token */
-| } /* end of user's declarations */
-| } /* end of yylex */
-|
-| /* yy_get_next_buffer - try to read in a new buffer
-| *
-| * Returns a code representing an action:
-| * EOB_ACT_LAST_MATCH -
-| * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
-| * EOB_ACT_END_OF_FILE - end of file
-| */
-| static int yy_get_next_buffer (void)
-| {
-| char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
-| char *source = (yytext_ptr);
-| int number_to_move, i;
-| int ret_val;
-|
-| if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
-| YY_FATAL_ERROR(
-| "fatal flex scanner internal error--end of buffer missed" );
-|
-| if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
-| { /* Don't try to fill the buffer, so this is an EOF. */
-| if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
-| {
-| /* We matched a single character, the EOB, so
-| * treat this as a final EOF.
-| */
-| return EOB_ACT_END_OF_FILE;
-| }
-|
-| else
-| {
-| /* We matched some text prior to the EOB, first
-| * process it.
-| */
-| return EOB_ACT_LAST_MATCH;
-| }
-| }
-|
-| /* Try to read more data. */
-|
-| /* First move last chars to start of buffer. */
-| number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1);
-|
-| for ( i = 0; i < number_to_move; ++i )
-| *(dest++) = *(source++);
-|
-| if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
-| /* don't do the read, it's not guaranteed to return an EOF,
-| * just force an EOF
-| */
-| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
-|
-| else
-| {
-| int num_to_read =
-| YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
-|
-| while ( num_to_read <= 0 )
-| { /* Not enough room in the buffer - grow it. */
-|
-| YY_FATAL_ERROR(
-| "input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
-|
-| }
-|
-| if ( num_to_read > YY_READ_BUF_SIZE )
-| num_to_read = YY_READ_BUF_SIZE;
-|
-| /* Read in more data. */
-| YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
-| (yy_n_chars), num_to_read );
-|
-| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
-| }
-|
-| if ( (yy_n_chars) == 0 )
-| {
-| if ( number_to_move == YY_MORE_ADJ )
-| {
-| ret_val = EOB_ACT_END_OF_FILE;
-| yyrestart( yyin );
-| }
-|
-| else
-| {
-| ret_val = EOB_ACT_LAST_MATCH;
-| YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
-| YY_BUFFER_EOF_PENDING;
-| }
-| }
-|
-| else
-| ret_val = EOB_ACT_CONTINUE_SCAN;
-|
-| if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
-| /* Extend the array by 50%, plus the number we really need. */
-| int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
-| YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc(
-| (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size );
-| if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
-| YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
-| /* "- 2" to take care of EOB's */
-| YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2);
-| }
-|
-| (yy_n_chars) += number_to_move;
-| YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
-| YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
-|
-| (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
-|
-| return ret_val;
-| }
-|
-| /* yy_get_previous_state - get the state just before the EOB char was reached */
-|
-| static yy_state_type yy_get_previous_state (void)
-| {
-| yy_state_type yy_current_state;
-| char *yy_cp;
-|
-| yy_current_state = (yy_start);
-|
-| (yy_state_ptr) = (yy_state_buf);
-| *(yy_state_ptr)++ = yy_current_state;
-|
-| for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
-| {
-| YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
-| while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
-| {
-| yy_current_state = (int) yy_def[yy_current_state];
-| if ( yy_current_state >= 13 )
-| yy_c = yy_meta[yy_c];
-| }
-| yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
-| *(yy_state_ptr)++ = yy_current_state;
-| }
-|
-| return yy_current_state;
-| }
-|
-| /* yy_try_NUL_trans - try to make a transition on the NUL character
-| *
-| * synopsis
-| * next_state = yy_try_NUL_trans( current_state );
-| */
-| static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
-| {
-| int yy_is_jam;
-|
-| YY_CHAR yy_c = 1;
-| while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
-| {
-| yy_current_state = (int) yy_def[yy_current_state];
-| if ( yy_current_state >= 13 )
-| yy_c = yy_meta[yy_c];
-| }
-| yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
-| yy_is_jam = (yy_current_state == 12);
-| if ( ! yy_is_jam )
-| *(yy_state_ptr)++ = yy_current_state;
-|
-| return yy_is_jam ? 0 : yy_current_state;
-| }
-|
-| #ifndef YY_NO_UNPUT
-|
-| static void yyunput (int c, char * yy_bp )
-| {
-| char *yy_cp;
-|
-| yy_cp = (yy_c_buf_p);
-|
-| /* undo effects of setting up yytext */
-| *yy_cp = (yy_hold_char);
-|
-| if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
-| { /* need to shift things up to make room */
-| /* +2 for EOB chars. */
-| int number_to_move = (yy_n_chars) + 2;
-| char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
-| YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
-| char *source =
-| &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
-|
-| while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
-| *--dest = *--source;
-|
-| yy_cp += (int) (dest - source);
-| yy_bp += (int) (dest - source);
-| YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
-| (yy_n_chars) = (int) YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
-|
-| if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
-| YY_FATAL_ERROR( "flex scanner push-back overflow" );
-| }
-|
-| *--yy_cp = (char) c;
-|
-| (yytext_ptr) = yy_bp;
-| (yy_hold_char) = *yy_cp;
-| (yy_c_buf_p) = yy_cp;
-| }
-|
-| #endif
-|
-| #ifndef YY_NO_INPUT
-| #ifdef __cplusplus
-| static int yyinput (void)
-| #else
-| static int input (void)
-| #endif
-|
-| {
-| int c;
-|
-| *(yy_c_buf_p) = (yy_hold_char);
-|
-| if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
-| {
-| /* yy_c_buf_p now points to the character we want to return.
-| * If this occurs *before* the EOB characters, then it's a
-| * valid NUL; if not, then we've hit the end of the buffer.
-| */
-| if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
-| /* This was really a NUL. */
-| *(yy_c_buf_p) = '\0';
-|
-| else
-| { /* need more input */
-| int offset = (int) ((yy_c_buf_p) - (yytext_ptr));
-| ++(yy_c_buf_p);
-|
-| switch ( yy_get_next_buffer( ) )
-| {
-| case EOB_ACT_LAST_MATCH:
-| /* This happens because yy_g_n_b()
-| * sees that we've accumulated a
-| * token and flags that we need to
-| * try matching the token before
-| * proceeding. But for input(),
-| * there's no matching to consider.
-| * So convert the EOB_ACT_LAST_MATCH
-| * to EOB_ACT_END_OF_FILE.
-| */
-|
-| /* Reset buffer status. */
-| yyrestart( yyin );
-|
-| /*FALLTHROUGH*/
-|
-| case EOB_ACT_END_OF_FILE:
-| {
-| if ( yywrap( ) )
-| return 0;
-|
-| if ( ! (yy_did_buffer_switch_on_eof) )
-| YY_NEW_FILE;
-| #ifdef __cplusplus
-| return yyinput();
-| #else
-| return input();
-| #endif
-| }
-|
-| case EOB_ACT_CONTINUE_SCAN:
-| (yy_c_buf_p) = (yytext_ptr) + offset;
-| break;
-| }
-| }
-| }
-|
-| c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
-| *(yy_c_buf_p) = '\0'; /* preserve yytext */
-| (yy_hold_char) = *++(yy_c_buf_p);
-|
-| return c;
-| }
-| #endif /* ifndef YY_NO_INPUT */
-|
-| /** Immediately switch to a different input stream.
-| * @param input_file A readable stream.
-| *
-| * @note This function does not reset the start condition to @c INITIAL .
-| */
-| void yyrestart (FILE * input_file )
-| {
-|
-| if ( ! YY_CURRENT_BUFFER ){
-| yyensure_buffer_stack ();
-| YY_CURRENT_BUFFER_LVALUE =
-| yy_create_buffer( yyin, YY_BUF_SIZE );
-| }
-|
-| yy_init_buffer( YY_CURRENT_BUFFER, input_file );
-| yy_load_buffer_state( );
-| }
-|
-| /** Switch to a different input buffer.
-| * @param new_buffer The new input buffer.
-| *
-| */
-| void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
-| {
-|
-| /* TODO. We should be able to replace this entire function body
-| * with
-| * yypop_buffer_state();
-| * yypush_buffer_state(new_buffer);
-| */
-| yyensure_buffer_stack ();
-| if ( YY_CURRENT_BUFFER == new_buffer )
-| return;
-|
-| if ( YY_CURRENT_BUFFER )
-| {
-| /* Flush out information for old buffer. */
-| *(yy_c_buf_p) = (yy_hold_char);
-| YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
-| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
-| }
-|
-| YY_CURRENT_BUFFER_LVALUE = new_buffer;
-| yy_load_buffer_state( );
-|
-| /* We don't actually know whether we did this switch during
-| * EOF (yywrap()) processing, but the only time this flag
-| * is looked at is after yywrap() is called, so it's safe
-| * to go ahead and always set it.
-| */
-| (yy_did_buffer_switch_on_eof) = 1;
-| }
-|
-| static void yy_load_buffer_state (void)
-| {
-| (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
-| (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
-| yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
-| (yy_hold_char) = *(yy_c_buf_p);
-| }
-|
-| /** Allocate and initialize an input buffer state.
-| * @param file A readable stream.
-| * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
-| *
-| * @return the allocated buffer state.
-| */
-| YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
-| {
-| YY_BUFFER_STATE b;
-|
-| b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) );
-| if ( ! b )
-| YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
-|
-| b->yy_buf_size = size;
-|
-| /* yy_ch_buf has to be 2 characters longer than the size given because
-| * we need to put in 2 end-of-buffer characters.
-| */
-| b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) );
-| if ( ! b->yy_ch_buf )
-| YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
-|
-| b->yy_is_our_buffer = 1;
-|
-| yy_init_buffer( b, file );
-|
-| return b;
-| }
-|
-| /** Destroy the buffer.
-| * @param b a buffer created with yy_create_buffer()
-| *
-| */
-| void yy_delete_buffer (YY_BUFFER_STATE b )
-| {
-|
-| if ( ! b )
-| return;
-|
-| if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
-| YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
-|
-| if ( b->yy_is_our_buffer )
-| yyfree( (void *) b->yy_ch_buf );
-|
-| yyfree( (void *) b );
-| }
-|
-| /* Initializes or reinitializes a buffer.
-| * This function is sometimes called more than once on the same buffer,
-| * such as during a yyrestart() or at EOF.
-| */
-| static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
-|
-| {
-| int oerrno = errno;
-|
-| yy_flush_buffer( b );
-|
-| b->yy_input_file = file;
-| b->yy_fill_buffer = 1;
-|
-| /* If b is the current buffer, then yy_init_buffer was _probably_
-| * called from yyrestart() or through yy_get_next_buffer.
-| * In that case, we don't want to reset the lineno or column.
-| */
-| if (b != YY_CURRENT_BUFFER){
-| b->yy_bs_lineno = 1;
-| b->yy_bs_column = 0;
-| }
-|
-| b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
-|
-| errno = oerrno;
-| }
-|
-| /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
-| * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
-| *
-| */
-| void yy_flush_buffer (YY_BUFFER_STATE b )
-| {
-| if ( ! b )
-| return;
-|
-| b->yy_n_chars = 0;
-|
-| /* We always need two end-of-buffer characters. The first causes
-| * a transition to the end-of-buffer state. The second causes
-| * a jam in that state.
-| */
-| b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
-| b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
-|
-| b->yy_buf_pos = &b->yy_ch_buf[0];
-|
-| b->yy_at_bol = 1;
-| b->yy_buffer_status = YY_BUFFER_NEW;
-|
-| if ( b == YY_CURRENT_BUFFER )
-| yy_load_buffer_state( );
-| }
-|
-| /** Pushes the new state onto the stack. The new state becomes
-| * the current state. This function will allocate the stack
-| * if necessary.
-| * @param new_buffer The new state.
-| *
-| */
-| void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
-| {
-| if (new_buffer == NULL)
-| return;
-|
-| yyensure_buffer_stack();
-|
-| /* This block is copied from yy_switch_to_buffer. */
-| if ( YY_CURRENT_BUFFER )
-| {
-| /* Flush out information for old buffer. */
-| *(yy_c_buf_p) = (yy_hold_char);
-| YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
-| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
-| }
-|
-| /* Only push if top exists. Otherwise, replace top. */
-| if (YY_CURRENT_BUFFER)
-| (yy_buffer_stack_top)++;
-| YY_CURRENT_BUFFER_LVALUE = new_buffer;
-|
-| /* copied from yy_switch_to_buffer. */
-| yy_load_buffer_state( );
-| (yy_did_buffer_switch_on_eof) = 1;
-| }
-|
-| /** Removes and deletes the top of the stack, if present.
-| * The next element becomes the new top.
-| *
-| */
-| void yypop_buffer_state (void)
-| {
-| if (!YY_CURRENT_BUFFER)
-| return;
-|
-| yy_delete_buffer(YY_CURRENT_BUFFER );
-| YY_CURRENT_BUFFER_LVALUE = NULL;
-| if ((yy_buffer_stack_top) > 0)
-| --(yy_buffer_stack_top);
-|
-| if (YY_CURRENT_BUFFER) {
-| yy_load_buffer_state( );
-| (yy_did_buffer_switch_on_eof) = 1;
-| }
-| }
-|
-| /* Allocates the stack if it does not exist.
-| * Guarantees space for at least one push.
-| */
-| static void yyensure_buffer_stack (void)
-| {
-| yy_size_t num_to_alloc;
-|
-| if (!(yy_buffer_stack)) {
-|
-| /* First allocation is just for 2 elements, since we don't know if this
-| * scanner will even need a stack. We use 2 instead of 1 to avoid an
-| * immediate realloc on the next call.
-| */
-| num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
-| (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
-| (num_to_alloc * sizeof(struct yy_buffer_state*)
-| );
-| if ( ! (yy_buffer_stack) )
-| YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
-|
-| memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
-|
-| (yy_buffer_stack_max) = num_to_alloc;
-| (yy_buffer_stack_top) = 0;
-| return;
-| }
-|
-| if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
-|
-| /* Increase the buffer to prepare for a possible push. */
-| yy_size_t grow_size = 8 /* arbitrary grow size */;
-|
-| num_to_alloc = (yy_buffer_stack_max) + grow_size;
-| (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
-| ((yy_buffer_stack),
-| num_to_alloc * sizeof(struct yy_buffer_state*)
-| );
-| if ( ! (yy_buffer_stack) )
-| YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
-|
-| /* zero only the new slots.*/
-| memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
-| (yy_buffer_stack_max) = num_to_alloc;
-| }
-| }
-|
-| /** Setup the input buffer state to scan directly from a user-specified character buffer.
-| * @param base the character buffer
-| * @param size the size in bytes of the character buffer
-| *
-| * @return the newly allocated buffer state object.
-| */
-| YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
-| {
-| YY_BUFFER_STATE b;
-|
-| if ( size < 2 ||
-| base[size-2] != YY_END_OF_BUFFER_CHAR ||
-| base[size-1] != YY_END_OF_BUFFER_CHAR )
-| /* They forgot to leave room for the EOB's. */
-| return NULL;
-|
-| b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) );
-| if ( ! b )
-| YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
-|
-| b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */
-| b->yy_buf_pos = b->yy_ch_buf = base;
-| b->yy_is_our_buffer = 0;
-| b->yy_input_file = NULL;
-| b->yy_n_chars = b->yy_buf_size;
-| b->yy_is_interactive = 0;
-| b->yy_at_bol = 1;
-| b->yy_fill_buffer = 0;
-| b->yy_buffer_status = YY_BUFFER_NEW;
-|
-| yy_switch_to_buffer( b );
-|
-| return b;
-| }
-|
-| /** Setup the input buffer state to scan a string. The next call to yylex() will
-| * scan from a @e copy of @a str.
-| * @param yystr a NUL-terminated string to scan
-| *
-| * @return the newly allocated buffer state object.
-| * @note If you want to scan bytes that may contain NUL values, then use
-| * yy_scan_bytes() instead.
-| */
-| YY_BUFFER_STATE yy_scan_string (const char * yystr )
-| {
-|
-| return yy_scan_bytes( yystr, (int) strlen(yystr) );
-| }
-|
-| /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
-| * scan from a @e copy of @a bytes.
-| * @param yybytes the byte buffer to scan
-| * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
-| *
-| * @return the newly allocated buffer state object.
-| */
-| YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len )
-| {
-| YY_BUFFER_STATE b;
-| char *buf;
-| yy_size_t n;
-| int i;
-|
-| /* Get memory for full buffer, including space for trailing EOB's. */
-| n = (yy_size_t) (_yybytes_len + 2);
-| buf = (char *) yyalloc( n );
-| if ( ! buf )
-| YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
-|
-| for ( i = 0; i < _yybytes_len; ++i )
-| buf[i] = yybytes[i];
-|
-| buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
-|
-| b = yy_scan_buffer( buf, n );
-| if ( ! b )
-| YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
-|
-| /* It's okay to grow etc. this buffer, and we should throw it
-| * away when we're done.
-| */
-| b->yy_is_our_buffer = 1;
-|
-| return b;
-| }
-|
-| #ifndef YY_EXIT_FAILURE
-| #define YY_EXIT_FAILURE 2
-| #endif
-|
-| static void yynoreturn yy_fatal_error (const char* msg )
-| {
-| fprintf( stderr, "%s\n", msg );
-| exit( YY_EXIT_FAILURE );
-| }
-|
-| /* Redefine yyless() so it works in section 3 code. */
-|
-| #undef yyless
-| #define yyless(n) \
-| do \
-| { \
-| /* Undo effects of setting up yytext. */ \
-| int yyless_macro_arg = (n); \
-| YY_LESS_LINENO(yyless_macro_arg);\
-| yytext[yyleng] = (yy_hold_char); \
-| (yy_c_buf_p) = yytext + yyless_macro_arg; \
-| (yy_hold_char) = *(yy_c_buf_p); \
-| *(yy_c_buf_p) = '\0'; \
-| yyleng = yyless_macro_arg; \
-| } \
-| while ( 0 )
-|
-| /* Accessor methods (get/set functions) to struct members. */
-|
-| /** Get the current line number.
-| *
-| */
-| int yyget_lineno (void)
-| {
-|
-| return yylineno;
-| }
-|
-| /** Get the input stream.
-| *
-| */
-| FILE *yyget_in (void)
-| {
-| return yyin;
-| }
-|
-| /** Get the output stream.
-| *
-| */
-| FILE *yyget_out (void)
-| {
-| return yyout;
-| }
-|
-| /** Get the length of the current token.
-| *
-| */
-| int yyget_leng (void)
-| {
-| return yyleng;
-| }
-|
-| /** Get the current token.
-| *
-| */
-|
-| char *yyget_text (void)
-| {
-| return yytext;
-| }
-|
-| /** Set the current line number.
-| * @param _line_number line number
-| *
-| */
-| void yyset_lineno (int _line_number )
-| {
-|
-| yylineno = _line_number;
-| }
-|
-| /** Set the input stream. This does not discard the current
-| * input buffer.
-| * @param _in_str A readable stream.
-| *
-| * @see yy_switch_to_buffer
-| */
-| void yyset_in (FILE * _in_str )
-| {
-| yyin = _in_str ;
-| }
-|
-| void yyset_out (FILE * _out_str )
-| {
-| yyout = _out_str ;
-| }
-|
-| int yyget_debug (void)
-| {
-| return yy_flex_debug;
-| }
-|
-| void yyset_debug (int _bdebug )
-| {
-| yy_flex_debug = _bdebug ;
-| }
-|
-| static int yy_init_globals (void)
-| {
-| /* Initialization is the same as for the non-reentrant scanner.
-| * This function is called from yylex_destroy(), so don't allocate here.
-| */
-|
-| (yy_buffer_stack) = NULL;
-| (yy_buffer_stack_top) = 0;
-| (yy_buffer_stack_max) = 0;
-| (yy_c_buf_p) = NULL;
-| (yy_init) = 0;
-| (yy_start) = 0;
-|
-| (yy_state_buf) = 0;
-| (yy_state_ptr) = 0;
-| (yy_full_match) = 0;
-| (yy_lp) = 0;
-|
-| /* Defined in main.c */
-| #ifdef YY_STDINIT
-| yyin = stdin;
-| yyout = stdout;
-| #else
-| yyin = NULL;
-| yyout = NULL;
-| #endif
-|
-| /* For future reference: Set errno on error, since we are called by
-| * yylex_init()
-| */
-| return 0;
-| }
-|
-| /* yylex_destroy is for both reentrant and non-reentrant scanners. */
-| int yylex_destroy (void)
-| {
-|
-| /* Pop the buffer stack, destroying each element. */
-| while(YY_CURRENT_BUFFER){
-| yy_delete_buffer( YY_CURRENT_BUFFER );
-| YY_CURRENT_BUFFER_LVALUE = NULL;
-| yypop_buffer_state();
-| }
-|
-| /* Destroy the stack itself. */
-| yyfree((yy_buffer_stack) );
-| (yy_buffer_stack) = NULL;
-|
-| yyfree ( (yy_state_buf) );
-| (yy_state_buf) = NULL;
-|
-| /* Reset the globals. This is important in a non-reentrant scanner so the next time
-| * yylex() is called, initialization will occur. */
-| yy_init_globals( );
-|
-| return 0;
-| }
-|
-| /*
-| * Internal utility routines.
-| */
-|
-| #ifndef yytext_ptr
-| static void yy_flex_strncpy (char* s1, const char * s2, int n )
-| {
-|
-| int i;
-| for ( i = 0; i < n; ++i )
-| s1[i] = s2[i];
-| }
-| #endif
-|
-| #ifdef YY_NEED_STRLEN
-| static int yy_flex_strlen (const char * s )
-| {
-| int n;
-| for ( n = 0; s[n]; ++n )
-| ;
-|
-| return n;
-| }
-| #endif
-|
-| void *yyalloc (yy_size_t size )
-| {
-| return malloc(size);
-| }
-|
-| void *yyrealloc (void * ptr, yy_size_t size )
-| {
-|
-| /* The cast to (char *) in the following accommodates both
-| * implementations that use char* generic pointers, and those
-| * that use void* generic pointers. It works with the latter
-| * because both ANSI C and C++ allow castless assignment from
-| * any pointer type to void*, and deal with argument conversions
-| * as though doing an assignment.
-| */
-| return realloc(ptr, size);
-| }
-|
-| void yyfree (void * ptr )
-| {
-| free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
-| }
-|
-| #define YYTABLES_NAME "yytables"
-|
-| #line 9 "conftest.l"
-|
-| #ifdef YYTEXT_POINTER
-| extern char *yytext;
-| #endif
-| int
-| main (void)
-| {
-| return ! yylex () + ! yywrap ();
-| }
-configure:12261: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -lfl -ldl >&5
-configure:12261: $? = 0
-configure:12271: result: -lfl
-configure:12277: checking whether yytext is a pointer
-configure:12293: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -lfl -ldl >&5
-configure:12293: $? = 0
-configure:12301: result: yes
-configure:12329: checking whether NLS is requested
-configure:12332: result: no
-configure:12400: checking whether NLS is requested
-configure:12409: result: yes
-configure:12447: checking for msgfmt
-configure:12478: result: /usr/bin/msgfmt
-configure:12487: checking for gmsgfmt
-configure:12518: result: /usr/bin/msgfmt
-configure:12558: checking for xgettext
-configure:12589: result: /usr/bin/xgettext
-configure:12629: checking for msgmerge
-configure:12659: result: /usr/bin/msgmerge
-configure:12696: checking whether to enable maintainer-specific portions of Makefiles
-configure:12705: result: no
-configure:12750: checking for x86_64-pc-linux-gnu-ranlib
-configure:12777: result: ranlib
-configure:12890: checking size of long
-configure:12895: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:12895: $? = 0
-configure:12895: ./conftest
-configure:12895: $? = 0
-configure:12910: result: 8
-configure:12920: checking for long long
-configure:12920: gcc -c -g -O2 conftest.c >&5
-configure:12920: $? = 0
-configure:12920: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:70:24: error: expected expression before ')' token
- if (sizeof ((long long)))
- ^
-configure:12920: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "binutils"
-| #define PACKAGE_TARNAME "binutils"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "binutils 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "binutils"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| #define DEFAULT_AR_DETERMINISTIC 0
-| #define DEFAULT_STRINGS_ALL 1
-| #define YYTEXT_POINTER 1
-| #define EXECUTABLE_SUFFIX ""
-| #define SIZEOF_LONG 8
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| int
-| main ()
-| {
-| if (sizeof ((long long)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:12920: result: yes
-configure:12931: checking size of long long
-configure:12936: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:12936: $? = 0
-configure:12936: ./conftest
-configure:12936: $? = 0
-configure:12951: result: 8
-configure:12967: checking for string.h
-configure:12967: result: yes
-configure:12967: checking for strings.h
-configure:12967: result: yes
-configure:12967: checking for stdlib.h
-configure:12967: result: yes
-configure:12967: checking for unistd.h
-configure:12967: result: yes
-configure:12967: checking fcntl.h usability
-configure:12967: gcc -c -g -O2 conftest.c >&5
-configure:12967: $? = 0
-configure:12967: result: yes
-configure:12967: checking fcntl.h presence
-configure:12967: gcc -E conftest.c
-configure:12967: $? = 0
-configure:12967: result: yes
-configure:12967: checking for fcntl.h
-configure:12967: result: yes
-configure:12967: checking sys/file.h usability
-configure:12967: gcc -c -g -O2 conftest.c >&5
-configure:12967: $? = 0
-configure:12967: result: yes
-configure:12967: checking sys/file.h presence
-configure:12967: gcc -E conftest.c
-configure:12967: $? = 0
-configure:12967: result: yes
-configure:12967: checking for sys/file.h
-configure:12967: result: yes
-configure:12967: checking limits.h usability
-configure:12967: gcc -c -g -O2 conftest.c >&5
-configure:12967: $? = 0
-configure:12967: result: yes
-configure:12967: checking limits.h presence
-configure:12967: gcc -E conftest.c
-configure:12967: $? = 0
-configure:12967: result: yes
-configure:12967: checking for limits.h
-configure:12967: result: yes
-configure:12967: checking locale.h usability
-configure:12967: gcc -c -g -O2 conftest.c >&5
-configure:12967: $? = 0
-configure:12967: result: yes
-configure:12967: checking locale.h presence
-configure:12967: gcc -E conftest.c
-configure:12967: $? = 0
-configure:12967: result: yes
-configure:12967: checking for locale.h
-configure:12967: result: yes
-configure:12967: checking sys/param.h usability
-configure:12967: gcc -c -g -O2 conftest.c >&5
-configure:12967: $? = 0
-configure:12967: result: yes
-configure:12967: checking sys/param.h presence
-configure:12967: gcc -E conftest.c
-configure:12967: $? = 0
-configure:12967: result: yes
-configure:12967: checking for sys/param.h
-configure:12967: result: yes
-configure:12967: checking wchar.h usability
-configure:12967: gcc -c -g -O2 conftest.c >&5
-configure:12967: $? = 0
-configure:12967: result: yes
-configure:12967: checking wchar.h presence
-configure:12967: gcc -E conftest.c
-configure:12967: $? = 0
-configure:12967: result: yes
-configure:12967: checking for wchar.h
-configure:12967: result: yes
-configure:12978: checking for sys/wait.h that is POSIX.1 compatible
-configure:13004: gcc -c -g -O2 conftest.c >&5
-configure:13004: $? = 0
-configure:13011: result: yes
-configure:13019: checking whether string.h and strings.h may both be included
-configure:13036: gcc -c -g -O2 conftest.c >&5
-configure:13036: $? = 0
-configure:13043: result: yes
-configure:13053: checking for working alloca.h
-configure:13070: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13070: $? = 0
-configure:13078: result: yes
-configure:13086: checking for alloca
-configure:13123: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13123: $? = 0
-configure:13131: result: yes
-configure:13244: checking for sbrk
-configure:13244: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13244: $? = 0
-configure:13244: result: yes
-configure:13244: checking for utimes
-configure:13244: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13244: $? = 0
-configure:13244: result: yes
-configure:13244: checking for setmode
-configure:13244: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-/tmp/ccxYHeVj.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/binutils/conftest.c:86: undefined reference to `setmode'
-collect2: error: ld returned 1 exit status
-configure:13244: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME "binutils"
-| #define PACKAGE_TARNAME "binutils"
-| #define PACKAGE_VERSION "2.30"
-| #define PACKAGE_STRING "binutils 2.30"
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define PACKAGE "binutils"
-| #define VERSION "2.30"
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define HAVE_DLFCN_H 1
-| #define DEFAULT_AR_DETERMINISTIC 0
-| #define DEFAULT_STRINGS_ALL 1
-| #define YYTEXT_POINTER 1
-| #define EXECUTABLE_SUFFIX ""
-| #define SIZEOF_LONG 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define HAVE_STRING_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_LOCALE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_WCHAR_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define STRING_WITH_STRINGS 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_ALLOCA 1
-| #define HAVE_SBRK 1
-| #define HAVE_UTIMES 1
-| /* end confdefs.h. */
-| /* Define setmode to an innocuous variant, in case <limits.h> declares setmode.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define setmode innocuous_setmode
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char setmode (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef setmode
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char setmode ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_setmode || defined __stub___setmode
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return setmode ();
-| ;
-| return 0;
-| }
-configure:13244: result: no
-configure:13244: checking for getc_unlocked
-configure:13244: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13244: $? = 0
-configure:13244: result: yes
-configure:13244: checking for strcoll
-configure:13244: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13244: $? = 0
-configure:13244: result: yes
-configure:13244: checking for setlocale
-configure:13244: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13244: $? = 0
-configure:13244: result: yes
-configure:13254: checking for mkstemp
-configure:13254: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13254: $? = 0
-configure:13254: result: yes
-configure:13261: checking for mkdtemp
-configure:13261: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13261: $? = 0
-configure:13261: result: yes
-configure:13268: checking for mbstate_t
-configure:13281: gcc -c -g -O2 conftest.c >&5
-configure:13281: $? = 0
-configure:13287: result: yes
-configure:13296: checking for library containing frexp
-configure:13327: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-conftest.c:65:6: warning: conflicting types for built-in function 'frexp' [-Wbuiltin-declaration-mismatch]
- char frexp ();
- ^~~~~
-configure:13327: $? = 0
-configure:13344: result: none required
-configure:13354: checking for LC_MESSAGES
-configure:13370: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:13370: $? = 0
-configure:13378: result: yes
-configure:13387: checking for time_t in time.h
-configure:13403: gcc -c -g -O2 conftest.c >&5
-configure:13403: $? = 0
-configure:13411: result: yes
-configure:13419: checking for time_t in sys/types.h
-configure:13435: gcc -c -g -O2 conftest.c >&5
-configure:13435: $? = 0
-configure:13443: result: yes
-configure:13451: checking for a known getopt prototype in unistd.h
-configure:13467: gcc -c -g -O2 conftest.c >&5
-configure:13467: $? = 0
-configure:13475: result: yes
-configure:13485: checking for utime.h
-configure:13505: gcc -c -g -O2 conftest.c >&5
-configure:13505: $? = 0
-configure:13513: result: yes
-configure:13521: checking whether asprintf is declared
-configure:13521: gcc -c -g -O2 conftest.c >&5
-configure:13521: $? = 0
-configure:13521: result: yes
-configure:13531: checking whether environ is declared
-configure:13531: gcc -c -g -O2 conftest.c >&5
-configure:13531: $? = 0
-configure:13531: result: yes
-configure:13541: checking whether fprintf is declared
-configure:13541: gcc -c -g -O2 conftest.c >&5
-configure:13541: $? = 0
-configure:13541: result: yes
-configure:13551: checking whether getc_unlocked is declared
-configure:13551: gcc -c -g -O2 conftest.c >&5
-configure:13551: $? = 0
-configure:13551: result: yes
-configure:13561: checking whether getenv is declared
-configure:13561: gcc -c -g -O2 conftest.c >&5
-configure:13561: $? = 0
-configure:13561: result: yes
-configure:13571: checking whether sbrk is declared
-configure:13571: gcc -c -g -O2 conftest.c >&5
-configure:13571: $? = 0
-configure:13571: result: yes
-configure:13581: checking whether snprintf is declared
-configure:13581: gcc -c -g -O2 conftest.c >&5
-configure:13581: $? = 0
-configure:13581: result: yes
-configure:13591: checking whether stpcpy is declared
-configure:13591: gcc -c -g -O2 conftest.c >&5
-configure:13591: $? = 0
-configure:13591: result: yes
-configure:13601: checking whether strnlen is declared
-configure:13601: gcc -c -g -O2 conftest.c >&5
-configure:13601: $? = 0
-configure:13601: result: yes
-configure:13611: checking whether strstr is declared
-configure:13611: gcc -c -g -O2 conftest.c >&5
-configure:13611: $? = 0
-configure:13611: result: yes
-configure:13621: checking whether vsnprintf is declared
-configure:13621: gcc -c -g -O2 conftest.c >&5
-configure:13621: $? = 0
-configure:13621: result: yes
-configure:13678: checking iconv.h usability
-configure:13678: gcc -c -g -O2 conftest.c >&5
-configure:13678: $? = 0
-configure:13678: result: yes
-configure:13678: checking iconv.h presence
-configure:13678: gcc -E conftest.c
-configure:13678: $? = 0
-configure:13678: result: yes
-configure:13678: checking for iconv.h
-configure:13678: result: yes
-configure:13724: checking for ld used by GCC
-configure:13787: result: ld -m elf_x86_64
-configure:13794: checking if the linker (ld -m elf_x86_64) is GNU ld
-GNU ld (GNU Binutils for Ubuntu) 2.30
-configure:13806: result: yes
-configure:13812: checking for shared library run path origin
-configure:13825: result: done
-configure:14230: checking for iconv
-configure:14254: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c -ldl >&5
-configure:14254: $? = 0
-configure:14328: result: yes
-configure:14371: checking for iconv declaration
-configure:14400: gcc -c -g -O2 conftest.c >&5
-configure:14400: $? = 0
-configure:14411: result: install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
-configure:14833: creating ./config.status
-
-## ---------------------- ##
-## Running config.status. ##
-## ---------------------- ##
-
-This file was extended by binutils config.status 2.30, which was
-generated by GNU Autoconf 2.64. Invocation command line was
-
- CONFIG_FILES =
- CONFIG_HEADERS =
- CONFIG_LINKS =
- CONFIG_COMMANDS =
- $ ./config.status
-
-on xavier-asus
-
-config.status:1181: creating Makefile
-config.status:1181: creating config.h
-config.status:1353: config.h is unchanged
-config.status:1401: executing depfiles commands
-config.status:1401: executing libtool commands
-config.status:1401: executing default-1 commands
-
-## ---------------- ##
-## Cache variables. ##
-## ---------------- ##
-
-ac_cv_build=x86_64-pc-linux-gnu
-ac_cv_c_compiler_gnu=yes
-ac_cv_env_CC_set=set
-ac_cv_env_CC_value=gcc
-ac_cv_env_CFLAGS_set=set
-ac_cv_env_CFLAGS_value='-g -O2'
-ac_cv_env_CPPFLAGS_set=
-ac_cv_env_CPPFLAGS_value=
-ac_cv_env_CPP_set=
-ac_cv_env_CPP_value=
-ac_cv_env_LDFLAGS_set=set
-ac_cv_env_LDFLAGS_value='-static-libstdc++ -static-libgcc '
-ac_cv_env_LIBS_set=
-ac_cv_env_LIBS_value=
-ac_cv_env_YACC_set=set
-ac_cv_env_YACC_value='bison -y'
-ac_cv_env_YFLAGS_set=
-ac_cv_env_YFLAGS_value=
-ac_cv_env_build_alias_set=set
-ac_cv_env_build_alias_value=x86_64-pc-linux-gnu
-ac_cv_env_host_alias_set=set
-ac_cv_env_host_alias_value=x86_64-pc-linux-gnu
-ac_cv_env_target_alias_set=set
-ac_cv_env_target_alias_value=x86_64-pc-linux-gnu
-ac_cv_func_alloca_works=yes
-ac_cv_func_getc_unlocked=yes
-ac_cv_func_mkdtemp=yes
-ac_cv_func_mkstemp=yes
-ac_cv_func_sbrk=yes
-ac_cv_func_setlocale=yes
-ac_cv_func_setmode=no
-ac_cv_func_strcoll=yes
-ac_cv_func_utimes=yes
-ac_cv_have_decl_asprintf=yes
-ac_cv_have_decl_environ=yes
-ac_cv_have_decl_fprintf=yes
-ac_cv_have_decl_getc_unlocked=yes
-ac_cv_have_decl_getenv=yes
-ac_cv_have_decl_sbrk=yes
-ac_cv_have_decl_snprintf=yes
-ac_cv_have_decl_stpcpy=yes
-ac_cv_have_decl_strnlen=yes
-ac_cv_have_decl_strstr=yes
-ac_cv_have_decl_vsnprintf=yes
-ac_cv_header_dlfcn_h=yes
-ac_cv_header_fcntl_h=yes
-ac_cv_header_iconv_h=yes
-ac_cv_header_inttypes_h=yes
-ac_cv_header_limits_h=yes
-ac_cv_header_locale_h=yes
-ac_cv_header_memory_h=yes
-ac_cv_header_minix_config_h=no
-ac_cv_header_stdc=yes
-ac_cv_header_stdint_h=yes
-ac_cv_header_stdlib_h=yes
-ac_cv_header_string_h=yes
-ac_cv_header_strings_h=yes
-ac_cv_header_sys_file_h=yes
-ac_cv_header_sys_param_h=yes
-ac_cv_header_sys_stat_h=yes
-ac_cv_header_sys_types_h=yes
-ac_cv_header_sys_wait_h=yes
-ac_cv_header_unistd_h=yes
-ac_cv_header_wchar_h=yes
-ac_cv_header_windows_h=no
-ac_cv_host=x86_64-pc-linux-gnu
-ac_cv_lib_lex=-lfl
-ac_cv_objext=o
-ac_cv_path_EGREP='/bin/grep -E'
-ac_cv_path_FGREP='/bin/grep -F'
-ac_cv_path_GMSGFMT=/usr/bin/msgfmt
-ac_cv_path_GREP=/bin/grep
-ac_cv_path_MSGFMT=/usr/bin/msgfmt
-ac_cv_path_MSGMERGE=/usr/bin/msgmerge
-ac_cv_path_SED=/bin/sed
-ac_cv_path_XGETTEXT=/usr/bin/xgettext
-ac_cv_path_mkdir=/bin/mkdir
-ac_cv_prog_AR=ar
-ac_cv_prog_AWK=gawk
-ac_cv_prog_CC=gcc
-ac_cv_prog_CPP='gcc -E'
-ac_cv_prog_LEX=flex
-ac_cv_prog_OBJDUMP=objdump
-ac_cv_prog_RANLIB=ranlib
-ac_cv_prog_YACC='bison -y'
-ac_cv_prog_ac_ct_STRIP=strip
-ac_cv_prog_cc_c89=
-ac_cv_prog_cc_g=yes
-ac_cv_prog_lex_root=lex.yy
-ac_cv_prog_lex_yytext_pointer=yes
-ac_cv_prog_make_make_set=yes
-ac_cv_safe_to_define___extensions__=yes
-ac_cv_search_dlopen=-ldl
-ac_cv_search_frexp='none required'
-ac_cv_search_strerror='none required'
-ac_cv_sizeof_long=8
-ac_cv_sizeof_long_long=8
-ac_cv_sys_file_offset_bits=no
-ac_cv_sys_largefile_CC=no
-ac_cv_target=x86_64-pc-linux-gnu
-ac_cv_type_long_long=yes
-ac_cv_working_alloca_h=yes
-acl_cv_hardcode_direct=no
-acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
-acl_cv_hardcode_libdir_separator=
-acl_cv_hardcode_minus_L=no
-acl_cv_libext=a
-acl_cv_path_LD='ld -m elf_x86_64'
-acl_cv_prog_gnu_ld=yes
-acl_cv_rpath=done
-acl_cv_shlibext=so
-acl_cv_wl=-Wl,
-am_cv_CC_dependencies_compiler_type=gcc3
-am_cv_func_iconv=yes
-am_cv_lib_iconv=no
-am_cv_proto_iconv='extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);'
-am_cv_proto_iconv_arg1=
-am_cv_val_LC_MESSAGES=yes
-bu_cv_decl_getopt_unistd_h=yes
-bu_cv_decl_time_t_time_h=yes
-bu_cv_decl_time_t_types_h=yes
-bu_cv_header_utime_h=yes
-gcc_cv_header_string=yes
-lt_cv_archive_cmds_need_lc=no
-lt_cv_deplibs_check_method=pass_all
-lt_cv_file_magic_cmd='$MAGIC_CMD'
-lt_cv_file_magic_test_file=
-lt_cv_ld_reload_flag=-r
-lt_cv_nm_interface='BSD nm'
-lt_cv_objdir=.libs
-lt_cv_path_LD=ld
-lt_cv_path_NM=nm
-lt_cv_prog_compiler_c_o=yes
-lt_cv_prog_compiler_pic_works=yes
-lt_cv_prog_compiler_rtti_exceptions=no
-lt_cv_prog_compiler_static_works=yes
-lt_cv_prog_gnu_ld=yes
-lt_cv_shlibpath_overrides_runpath=yes
-lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
-lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
-lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
-lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
-lt_cv_sys_max_cmd_len=1572864
-
-## ----------------- ##
-## Output variables. ##
-## ----------------- ##
-
-ACLOCAL='${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run aclocal-1.11'
-ALLOCA=''
-AMDEPBACKSLASH='\'
-AMDEP_FALSE='#'
-AMDEP_TRUE=''
-AMTAR='$${TAR-tar}'
-AR='ar'
-AUTOCONF='${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run autoconf'
-AUTOHEADER='${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run autoheader'
-AUTOMAKE='${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run automake-1.11'
-AWK='gawk'
-BUILD_DLLTOOL=''
-BUILD_DLLWRAP=''
-BUILD_INSTALL_MISC=''
-BUILD_MISC=''
-BUILD_NLMCONV=''
-BUILD_SRCONV=''
-BUILD_WINDMC=''
-BUILD_WINDRES=''
-CATALOGS=''
-CATOBJEXT=''
-CC='gcc'
-CCDEPMODE='depmode=gcc3'
-CC_FOR_BUILD='gcc'
-CFLAGS='-g -O2'
-CPP='gcc -E'
-CPPFLAGS=''
-CYGPATH_W='echo'
-DATADIRNAME=''
-DEFS='-DHAVE_CONFIG_H'
-DEMANGLER_NAME='c++filt'
-DEPDIR='.deps'
-DLLTOOL_DEFS=' '
-DSYMUTIL=''
-DUMPBIN=''
-ECHO_C=''
-ECHO_N='-n'
-ECHO_T=''
-EGREP='/bin/grep -E'
-EMULATION='vanilla'
-EMULATION_VECTOR='bin_vanilla_emulation'
-EXEEXT=''
-EXEEXT_FOR_BUILD='$(EXEEXT)'
-FGREP='/bin/grep -F'
-GENCAT=''
-GENINSRC_NEVER_FALSE=''
-GENINSRC_NEVER_TRUE='#'
-GMSGFMT='/usr/bin/msgfmt'
-GREP='/bin/grep'
-HDEFINES=''
-INCINTL=''
-INSTALL_DATA='/usr/bin/install -c -m 644'
-INSTALL_PROGRAM='/usr/bin/install -c'
-INSTALL_SCRIPT='/usr/bin/install -c'
-INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
-INSTOBJEXT=''
-LD='ld -m elf_x86_64'
-LDFLAGS='-static-libstdc++ -static-libgcc '
-LEX='flex'
-LEXLIB='-lfl'
-LEX_OUTPUT_ROOT='lex.yy'
-LIBICONV=''
-LIBINTL=''
-LIBINTL_DEP=''
-LIBOBJS=''
-LIBS='-ldl '
-LIBTOOL='$(SHELL) $(top_builddir)/libtool'
-LIPO=''
-LN_S='ln -s'
-LTLIBICONV=''
-LTLIBOBJS=''
-MAINT='#'
-MAINTAINER_MODE_FALSE=''
-MAINTAINER_MODE_TRUE='#'
-MAKEINFO='makeinfo --split-size=5000000'
-MKDIR_P='/bin/mkdir -p'
-MKINSTALLDIRS='$(top_builddir)/./../mkinstalldirs'
-MSGFMT='/usr/bin/msgfmt'
-MSGMERGE='/usr/bin/msgmerge'
-NLMCONV_DEFS=''
-NM='nm'
-NMEDIT=''
-NO_WERROR=''
-OBJDUMP='objdump'
-OBJDUMP_DEFS=' -DOBJDUMP_PRIVATE_VECTORS=""'
-OBJDUMP_PRIVATE_OFILES=''
-OBJEXT='o'
-OTOOL64=''
-OTOOL=''
-PACKAGE='binutils'
-PACKAGE_BUGREPORT=''
-PACKAGE_NAME='binutils'
-PACKAGE_STRING='binutils 2.30'
-PACKAGE_TARNAME='binutils'
-PACKAGE_URL=''
-PACKAGE_VERSION='2.30'
-PATH_SEPARATOR=':'
-POSUB=''
-RANLIB='ranlib'
-SED='/bin/sed'
-SET_MAKE=''
-SHELL='/bin/bash'
-STRIP='strip'
-USE_NLS='yes'
-VERSION='2.30'
-WARN_CFLAGS='-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144'
-WARN_CFLAGS_FOR_BUILD='-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144'
-WARN_WRITE_STRINGS='-Wwrite-strings'
-XGETTEXT='/usr/bin/xgettext'
-YACC='bison -y'
-YFLAGS=''
-ac_ct_CC=''
-ac_ct_DUMPBIN=''
-am__EXEEXT_FALSE=''
-am__EXEEXT_TRUE='#'
-am__fastdepCC_FALSE='#'
-am__fastdepCC_TRUE=''
-am__include='include'
-am__isrc=''
-am__leading_dot='.'
-am__nodep='_no'
-am__quote=''
-am__tar='$${TAR-tar} chof - "$$tardir"'
-am__untar='$${TAR-tar} xf -'
-bindir='${exec_prefix}/bin'
-build='x86_64-pc-linux-gnu'
-build_alias='x86_64-pc-linux-gnu'
-build_cpu='x86_64'
-build_os='linux-gnu'
-build_vendor='pc'
-datadir='${datarootdir}'
-datarootdir='${prefix}/share'
-docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
-dvidir='${docdir}'
-exec_prefix='${prefix}'
-host='x86_64-pc-linux-gnu'
-host_alias='x86_64-pc-linux-gnu'
-host_cpu='x86_64'
-host_os='linux-gnu'
-host_vendor='pc'
-htmldir='${docdir}'
-includedir='${prefix}/include'
-infodir='${datarootdir}/info'
-install_sh='${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/install-sh'
-libdir='${exec_prefix}/lib'
-libexecdir='${exec_prefix}/libexec'
-localedir='${datarootdir}/locale'
-localstatedir='${prefix}/var'
-mandir='${datarootdir}/man'
-mkdir_p='/bin/mkdir -p'
-oldincludedir='/usr/include'
-pdfdir='${docdir}'
-prefix='/usr/local'
-program_transform_name='s,y,y,'
-psdir='${docdir}'
-sbindir='${exec_prefix}/sbin'
-sharedstatedir='${prefix}/com'
-sysconfdir='${prefix}/etc'
-target='x86_64-pc-linux-gnu'
-target_alias='x86_64-pc-linux-gnu'
-target_cpu='x86_64'
-target_os='linux-gnu'
-target_vendor='pc'
-zlibdir=''
-zlibinc=''
-
-## ----------- ##
-## confdefs.h. ##
-## ----------- ##
-
-/* confdefs.h */
-#define PACKAGE_NAME "binutils"
-#define PACKAGE_TARNAME "binutils"
-#define PACKAGE_VERSION "2.30"
-#define PACKAGE_STRING "binutils 2.30"
-#define PACKAGE_BUGREPORT ""
-#define PACKAGE_URL ""
-#define PACKAGE "binutils"
-#define VERSION "2.30"
-#define STDC_HEADERS 1
-#define HAVE_SYS_TYPES_H 1
-#define HAVE_SYS_STAT_H 1
-#define HAVE_STDLIB_H 1
-#define HAVE_STRING_H 1
-#define HAVE_MEMORY_H 1
-#define HAVE_STRINGS_H 1
-#define HAVE_INTTYPES_H 1
-#define HAVE_STDINT_H 1
-#define HAVE_UNISTD_H 1
-#define __EXTENSIONS__ 1
-#define _ALL_SOURCE 1
-#define _GNU_SOURCE 1
-#define _POSIX_PTHREAD_SEMANTICS 1
-#define _TANDEM_SOURCE 1
-#define HAVE_DLFCN_H 1
-#define LT_OBJDIR ".libs/"
-#define HAVE_DLFCN_H 1
-#define DEFAULT_AR_DETERMINISTIC 0
-#define DEFAULT_STRINGS_ALL 1
-#define YYTEXT_POINTER 1
-#define EXECUTABLE_SUFFIX ""
-#define SIZEOF_LONG 8
-#define HAVE_LONG_LONG 1
-#define SIZEOF_LONG_LONG 8
-#define HAVE_STRING_H 1
-#define HAVE_STRINGS_H 1
-#define HAVE_STDLIB_H 1
-#define HAVE_UNISTD_H 1
-#define HAVE_FCNTL_H 1
-#define HAVE_SYS_FILE_H 1
-#define HAVE_LIMITS_H 1
-#define HAVE_LOCALE_H 1
-#define HAVE_SYS_PARAM_H 1
-#define HAVE_WCHAR_H 1
-#define HAVE_SYS_WAIT_H 1
-#define STRING_WITH_STRINGS 1
-#define HAVE_ALLOCA_H 1
-#define HAVE_ALLOCA 1
-#define HAVE_SBRK 1
-#define HAVE_UTIMES 1
-#define HAVE_GETC_UNLOCKED 1
-#define HAVE_STRCOLL 1
-#define HAVE_SETLOCALE 1
-#define HAVE_MKSTEMP 1
-#define HAVE_MKDTEMP 1
-#define HAVE_MBSTATE_T 1
-#define HAVE_LC_MESSAGES 1
-#define HAVE_TIME_T_IN_TIME_H 1
-#define HAVE_TIME_T_IN_TYPES_H 1
-#define HAVE_DECL_GETOPT 1
-#define HAVE_GOOD_UTIME_H 1
-#define HAVE_DECL_ASPRINTF 1
-#define HAVE_DECL_ENVIRON 1
-#define HAVE_DECL_FPRINTF 1
-#define HAVE_DECL_GETC_UNLOCKED 1
-#define HAVE_DECL_GETENV 1
-#define HAVE_DECL_SBRK 1
-#define HAVE_DECL_SNPRINTF 1
-#define HAVE_DECL_STPCPY 1
-#define HAVE_DECL_STRNLEN 1
-#define HAVE_DECL_STRSTR 1
-#define HAVE_DECL_VSNPRINTF 1
-#define HAVE_ICONV 1
-#define ICONV_CONST
-#define TARGET "asxxxx"
-#define TARGET_PREPENDS_UNDERSCORE 0
-
-configure: exit 0
diff --git a/support/sdbinutils/binutils/config.status b/support/sdbinutils/binutils/config.status
deleted file mode 100755
index 41f5c99..0000000
--- a/support/sdbinutils/binutils/config.status
+++ /dev/null
@@ -1,2248 +0,0 @@
-#! /bin/bash
-# Generated by configure.
-# Run this file to recreate the current configuration.
-# Compiler output produced by configure, useful for debugging
-# configure, is in config.log if it exists.
-
-debug=false
-ac_cs_recheck=false
-ac_cs_silent=false
-
-SHELL=${CONFIG_SHELL-/bin/bash}
-export SHELL
-## -------------------- ##
-## M4sh Initialization. ##
-## -------------------- ##
-
-# Be more Bourne compatible
-DUALCASE=1; export DUALCASE # for MKS sh
-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
- emulate sh
- NULLCMD=:
- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
- # is contrary to our usage. Disable this feature.
- alias -g '${1+"$@"}'='"$@"'
- setopt NO_GLOB_SUBST
-else
- case `(set -o) 2>/dev/null` in #(
- *posix*) :
- set -o posix ;; #(
- *) :
- ;;
-esac
-fi
-
-
-as_nl='
-'
-export as_nl
-# Printing a long string crashes Solaris 7 /usr/bin/printf.
-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
-# Prefer a ksh shell builtin over an external printf program on Solaris,
-# but without wasting forks for bash or zsh.
-if test -z "$BASH_VERSION$ZSH_VERSION" \
- && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='print -r --'
- as_echo_n='print -rn --'
-elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='printf %s\n'
- as_echo_n='printf %s'
-else
- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
- as_echo_n='/usr/ucb/echo -n'
- else
- as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
- as_echo_n_body='eval
- arg=$1;
- case $arg in #(
- *"$as_nl"*)
- expr "X$arg" : "X\\(.*\\)$as_nl";
- arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
- esac;
- expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
- '
- export as_echo_n_body
- as_echo_n='sh -c $as_echo_n_body as_echo'
- fi
- export as_echo_body
- as_echo='sh -c $as_echo_body as_echo'
-fi
-
-# The user is always right.
-if test "${PATH_SEPARATOR+set}" != set; then
- PATH_SEPARATOR=:
- (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
- (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
- PATH_SEPARATOR=';'
- }
-fi
-
-
-# IFS
-# We need space, tab and new line, in precisely that order. Quoting is
-# there to prevent editors from complaining about space-tab.
-# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-# splitting by setting IFS to empty value.)
-IFS=" "" $as_nl"
-
-# Find who we are. Look in the path if we contain no directory separator.
-case $0 in #((
- *[\\/]* ) as_myself=$0 ;;
- *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- done
-IFS=$as_save_IFS
-
- ;;
-esac
-# We did not find ourselves, most probably we were run as `sh COMMAND'
-# in which case we are not to be found in the path.
-if test "x$as_myself" = x; then
- as_myself=$0
-fi
-if test ! -f "$as_myself"; then
- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
- exit 1
-fi
-
-# Unset variables that we do not need and which cause bugs (e.g. in
-# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
-# suppresses any "Segmentation fault" message there. '((' could
-# trigger a bug in pdksh 5.2.14.
-for as_var in BASH_ENV ENV MAIL MAILPATH
-do eval test x\${$as_var+set} = xset \
- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
-done
-PS1='$ '
-PS2='> '
-PS4='+ '
-
-# NLS nuisances.
-LC_ALL=C
-export LC_ALL
-LANGUAGE=C
-export LANGUAGE
-
-# CDPATH.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-
-# as_fn_error ERROR [LINENO LOG_FD]
-# ---------------------------------
-# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with status $?, using 1 if that was 0.
-as_fn_error ()
-{
- as_status=$?; test $as_status -eq 0 && as_status=1
- if test "$3"; then
- as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
- fi
- $as_echo "$as_me: error: $1" >&2
- as_fn_exit $as_status
-} # as_fn_error
-
-
-# as_fn_set_status STATUS
-# -----------------------
-# Set $? to STATUS, without forking.
-as_fn_set_status ()
-{
- return $1
-} # as_fn_set_status
-
-# as_fn_exit STATUS
-# -----------------
-# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
-as_fn_exit ()
-{
- set +e
- as_fn_set_status $1
- exit $1
-} # as_fn_exit
-
-# as_fn_unset VAR
-# ---------------
-# Portably unset VAR.
-as_fn_unset ()
-{
- { eval $1=; unset $1;}
-}
-as_unset=as_fn_unset
-# as_fn_append VAR VALUE
-# ----------------------
-# Append the text in VALUE to the end of the definition contained in VAR. Take
-# advantage of any shell optimizations that allow amortized linear growth over
-# repeated appends, instead of the typical quadratic growth present in naive
-# implementations.
-if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
- eval 'as_fn_append ()
- {
- eval $1+=\$2
- }'
-else
- as_fn_append ()
- {
- eval $1=\$$1\$2
- }
-fi # as_fn_append
-
-# as_fn_arith ARG...
-# ------------------
-# Perform arithmetic evaluation on the ARGs, and store the result in the
-# global $as_val. Take advantage of shells that can avoid forks. The arguments
-# must be portable across $(()) and expr.
-if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
- eval 'as_fn_arith ()
- {
- as_val=$(( $* ))
- }'
-else
- as_fn_arith ()
- {
- as_val=`expr "$@" || test $? -eq 1`
- }
-fi # as_fn_arith
-
-
-if expr a : '\(a\)' >/dev/null 2>&1 &&
- test "X`expr 00001 : '.*\(...\)'`" = X001; then
- as_expr=expr
-else
- as_expr=false
-fi
-
-if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
- as_basename=basename
-else
- as_basename=false
-fi
-
-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
- as_dirname=dirname
-else
- as_dirname=false
-fi
-
-as_me=`$as_basename -- "$0" ||
-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
- X"$0" : 'X\(//\)$' \| \
- X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X/"$0" |
- sed '/^.*\/\([^/][^/]*\)\/*$/{
- s//\1/
- q
- }
- /^X\/\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\/\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
-
-# Avoid depending upon Character Ranges.
-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-as_cr_digits='0123456789'
-as_cr_alnum=$as_cr_Letters$as_cr_digits
-
-ECHO_C= ECHO_N= ECHO_T=
-case `echo -n x` in #(((((
--n*)
- case `echo 'xy\c'` in
- *c*) ECHO_T=' ';; # ECHO_T is single tab character.
- xy) ECHO_C='\c';;
- *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
- ECHO_T=' ';;
- esac;;
-*)
- ECHO_N='-n';;
-esac
-
-rm -f conf$$ conf$$.exe conf$$.file
-if test -d conf$$.dir; then
- rm -f conf$$.dir/conf$$.file
-else
- rm -f conf$$.dir
- mkdir conf$$.dir 2>/dev/null
-fi
-if (echo >conf$$.file) 2>/dev/null; then
- if ln -s conf$$.file conf$$ 2>/dev/null; then
- as_ln_s='ln -s'
- # ... but there are two gotchas:
- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
- # In both cases, we have to default to `cp -p'.
- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
- as_ln_s='cp -p'
- elif ln conf$$.file conf$$ 2>/dev/null; then
- as_ln_s=ln
- else
- as_ln_s='cp -p'
- fi
-else
- as_ln_s='cp -p'
-fi
-rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-rmdir conf$$.dir 2>/dev/null
-
-
-# as_fn_mkdir_p
-# -------------
-# Create "$as_dir" as a directory, including parents if necessary.
-as_fn_mkdir_p ()
-{
-
- case $as_dir in #(
- -*) as_dir=./$as_dir;;
- esac
- test -d "$as_dir" || eval $as_mkdir_p || {
- as_dirs=
- while :; do
- case $as_dir in #(
- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
- *) as_qdir=$as_dir;;
- esac
- as_dirs="'$as_qdir' $as_dirs"
- as_dir=`$as_dirname -- "$as_dir" ||
-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$as_dir" : 'X\(//\)[^/]' \| \
- X"$as_dir" : 'X\(//\)$' \| \
- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$as_dir" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- test -d "$as_dir" && break
- done
- test -z "$as_dirs" || eval "mkdir $as_dirs"
- } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
-
-
-} # as_fn_mkdir_p
-if mkdir -p . 2>/dev/null; then
- as_mkdir_p='mkdir -p "$as_dir"'
-else
- test -d ./-p && rmdir ./-p
- as_mkdir_p=false
-fi
-
-if test -x / >/dev/null 2>&1; then
- as_test_x='test -x'
-else
- if ls -dL / >/dev/null 2>&1; then
- as_ls_L_option=L
- else
- as_ls_L_option=
- fi
- as_test_x='
- eval sh -c '\''
- if test -d "$1"; then
- test -d "$1/.";
- else
- case $1 in #(
- -*)set "./$1";;
- esac;
- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
- ???[sx]*):;;*)false;;esac;fi
- '\'' sh
- '
-fi
-as_executable_p=$as_test_x
-
-# Sed expression to map a string onto a valid CPP name.
-as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-
-# Sed expression to map a string onto a valid variable name.
-as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-
-
-exec 6>&1
-## ----------------------------------- ##
-## Main body of $CONFIG_STATUS script. ##
-## ----------------------------------- ##
-# Save the log message, to keep $0 and so on meaningful, and to
-# report actual input values of CONFIG_FILES etc. instead of their
-# values after options handling.
-ac_log="
-This file was extended by binutils $as_me 2.30, which was
-generated by GNU Autoconf 2.64. Invocation command line was
-
- CONFIG_FILES = $CONFIG_FILES
- CONFIG_HEADERS = $CONFIG_HEADERS
- CONFIG_LINKS = $CONFIG_LINKS
- CONFIG_COMMANDS = $CONFIG_COMMANDS
- $ $0 $@
-
-on `(hostname || uname -n) 2>/dev/null | sed 1q`
-"
-
-# Files that config.status was made for.
-config_files=" Makefile"
-config_headers=" config.h:config.in"
-config_commands=" depfiles libtool default-1"
-
-ac_cs_usage="\
-\`$as_me' instantiates files and other configuration actions
-from templates according to the current configuration. Unless the files
-and actions are specified as TAGs, all are instantiated by default.
-
-Usage: $0 [OPTION]... [TAG]...
-
- -h, --help print this help, then exit
- -V, --version print version number and configuration settings, then exit
- -q, --quiet, --silent
- do not print progress messages
- -d, --debug don't remove temporary files
- --recheck update $as_me by reconfiguring in the same conditions
- --file=FILE[:TEMPLATE]
- instantiate the configuration file FILE
- --header=FILE[:TEMPLATE]
- instantiate the configuration header FILE
-
-Configuration files:
-$config_files
-
-Configuration headers:
-$config_headers
-
-Configuration commands:
-$config_commands
-
-Report bugs to the package provider."
-
-ac_cs_version="\
-binutils config.status 2.30
-configured by /home/xavier/sdcc_gas/support/sdbinutils/binutils/configure, generated by GNU Autoconf 2.64,
- with options \"'--srcdir=.././binutils' '--cache-file=./config.cache' '--with-system-zlib' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '--cache-file=/dev/null' '--program-transform-name=s,y,y,' '--disable-option-checking' '--build=x86_64-pc-linux-gnu' '--host=x86_64-pc-linux-gnu' '--target=x86_64-pc-linux-gnu' 'build_alias=x86_64-pc-linux-gnu' 'host_alias=x86_64-pc-linux-gnu' 'target_alias=x86_64-pc-linux-gnu' 'CC=gcc' 'CFLAGS=-g -O2' 'LDFLAGS=-static-libstdc++ -static-libgcc ' 'YACC=bison -y'\"
-
-Copyright (C) 2009 Free Software Foundation, Inc.
-This config.status script is free software; the Free Software Foundation
-gives unlimited permission to copy, distribute and modify it."
-
-ac_pwd='/home/xavier/sdcc_gas/support/sdbinutils/binutils'
-srcdir='.'
-INSTALL='/usr/bin/install -c'
-MKDIR_P='/bin/mkdir -p'
-AWK='gawk'
-test -n "$AWK" || AWK=awk
-# The default lists apply if the user does not specify any file.
-ac_need_defaults=:
-while test $# != 0
-do
- case $1 in
- --*=*)
- ac_option=`expr "X$1" : 'X\([^=]*\)='`
- ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
- ac_shift=:
- ;;
- *)
- ac_option=$1
- ac_optarg=$2
- ac_shift=shift
- ;;
- esac
-
- case $ac_option in
- # Handling of the options.
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
- ac_cs_recheck=: ;;
- --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
- $as_echo "$ac_cs_version"; exit ;;
- --debug | --debu | --deb | --de | --d | -d )
- debug=: ;;
- --file | --fil | --fi | --f )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- esac
- as_fn_append CONFIG_FILES " '$ac_optarg'"
- ac_need_defaults=false;;
- --header | --heade | --head | --hea )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- esac
- as_fn_append CONFIG_HEADERS " '$ac_optarg'"
- ac_need_defaults=false;;
- --he | --h)
- # Conflict between --help and --header
- as_fn_error "ambiguous option: \`$1'
-Try \`$0 --help' for more information.";;
- --help | --hel | -h )
- $as_echo "$ac_cs_usage"; exit ;;
- -q | -quiet | --quiet | --quie | --qui | --qu | --q \
- | -silent | --silent | --silen | --sile | --sil | --si | --s)
- ac_cs_silent=: ;;
-
- # This is an error.
- -*) as_fn_error "unrecognized option: \`$1'
-Try \`$0 --help' for more information." ;;
-
- *) as_fn_append ac_config_targets " $1"
- ac_need_defaults=false ;;
-
- esac
- shift
-done
-
-ac_configure_extra_args=
-
-if $ac_cs_silent; then
- exec 6>/dev/null
- ac_configure_extra_args="$ac_configure_extra_args --silent"
-fi
-
-if $ac_cs_recheck; then
- set X '/bin/bash' '/home/xavier/sdcc_gas/support/sdbinutils/binutils/configure' '--srcdir=.././binutils' '--cache-file=./config.cache' '--with-system-zlib' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '--cache-file=/dev/null' '--program-transform-name=s,y,y,' '--disable-option-checking' '--build=x86_64-pc-linux-gnu' '--host=x86_64-pc-linux-gnu' '--target=x86_64-pc-linux-gnu' 'build_alias=x86_64-pc-linux-gnu' 'host_alias=x86_64-pc-linux-gnu' 'target_alias=x86_64-pc-linux-gnu' 'CC=gcc' 'CFLAGS=-g -O2' 'LDFLAGS=-static-libstdc++ -static-libgcc ' 'YACC=bison -y' $ac_configure_extra_args --no-create --no-recursion
- shift
- $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
- CONFIG_SHELL='/bin/bash'
- export CONFIG_SHELL
- exec "$@"
-fi
-
-exec 5>>config.log
-{
- echo
- sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
-## Running $as_me. ##
-_ASBOX
- $as_echo "$ac_log"
-} >&5
-
-#
-# INIT-COMMANDS
-#
-AMDEP_TRUE="" ac_aux_dir="./.."
-
-
-# The HP-UX ksh and POSIX shell print the target directory to stdout
-# if CDPATH is set.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
-double_quote_subst='s/\(["`\\]\)/\\\1/g'
-delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
-macro_version='2.2.7a'
-macro_revision='1.3134'
-enable_shared='yes'
-enable_static='yes'
-pic_mode='default'
-enable_fast_install='needless'
-SHELL='/bin/bash'
-ECHO='printf %s\n'
-host_alias='x86_64-pc-linux-gnu'
-host='x86_64-pc-linux-gnu'
-host_os='linux-gnu'
-build_alias='x86_64-pc-linux-gnu'
-build='x86_64-pc-linux-gnu'
-build_os='linux-gnu'
-SED='/bin/sed'
-Xsed='/bin/sed -e 1s/^X//'
-GREP='/bin/grep'
-EGREP='/bin/grep -E'
-FGREP='/bin/grep -F'
-LD='ld -m elf_x86_64'
-NM='nm'
-LN_S='ln -s'
-max_cmd_len='1572864'
-ac_objext='o'
-exeext=''
-lt_unset='unset'
-lt_SP2NL='tr \040 \012'
-lt_NL2SP='tr \015\012 \040\040'
-reload_flag=' -r'
-reload_cmds='$LD$reload_flag -o $output$reload_objs'
-OBJDUMP='objdump'
-deplibs_check_method='pass_all'
-file_magic_cmd='$MAGIC_CMD'
-AR='ar'
-AR_FLAGS='rc'
-STRIP='strip'
-RANLIB='ranlib'
-old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $oldlib'
-old_postuninstall_cmds=''
-old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $oldlib'
-lock_old_archive_extraction='no'
-CC='gcc'
-CFLAGS='-g -O2'
-compiler='gcc'
-GCC='yes'
-lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
-lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
-lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
-lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
-objdir='.libs'
-MAGIC_CMD='file'
-lt_prog_compiler_no_builtin_flag=' -fno-builtin'
-lt_prog_compiler_wl='-Wl,'
-lt_prog_compiler_pic=' -fPIC -DPIC'
-lt_prog_compiler_static='-static'
-lt_cv_prog_compiler_c_o='yes'
-need_locks='no'
-DSYMUTIL=''
-NMEDIT=''
-LIPO=''
-OTOOL=''
-OTOOL64=''
-libext='a'
-shrext_cmds='.so'
-extract_expsyms_cmds=''
-archive_cmds_need_lc='no'
-enable_shared_with_static_runtimes='no'
-export_dynamic_flag_spec='${wl}--export-dynamic'
-whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
-compiler_needs_object='no'
-old_archive_from_new_cmds=''
-old_archive_from_expsyms_cmds=''
-archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
- cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
- echo "local: *; };" >> $output_objdir/$libname.ver~
- $CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
-module_cmds=''
-module_expsym_cmds=''
-with_gnu_ld='yes'
-allow_undefined_flag=''
-no_undefined_flag=''
-hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
-hardcode_libdir_flag_spec_ld=''
-hardcode_libdir_separator=''
-hardcode_direct='no'
-hardcode_direct_absolute='no'
-hardcode_minus_L='no'
-hardcode_shlibpath_var='unsupported'
-hardcode_automatic='no'
-inherit_rpath='no'
-link_all_deplibs='unknown'
-fix_srcfile_path=''
-always_export_symbols='no'
-export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
-exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
-include_expsyms=''
-prelink_cmds=''
-file_list_spec=''
-variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'
-need_lib_prefix='no'
-need_version='no'
-version_type='linux'
-runpath_var='LD_RUN_PATH'
-shlibpath_var='LD_LIBRARY_PATH'
-shlibpath_overrides_runpath='yes'
-libname_spec='lib$name'
-library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-soname_spec='${libname}${release}${shared_ext}$major'
-install_override_mode=''
-postinstall_cmds=''
-postuninstall_cmds=''
-finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
-finish_eval=''
-hardcode_into_libs='yes'
-sys_lib_search_path_spec='/usr/lib/gcc/x86_64-linux-gnu/7 /usr/lib/x86_64-linux-gnu /usr/lib /lib/x86_64-linux-gnu /lib '
-sys_lib_dlsearch_path_spec='/lib /usr/lib /usr/lib/x86_64-linux-gnu/libfakeroot /usr/local/lib/i386-linux-gnu /lib/i386-linux-gnu /usr/lib/i386-linux-gnu /usr/local/lib/i686-linux-gnu /lib/i686-linux-gnu /usr/lib/i686-linux-gnu /usr/local/lib /usr/local/lib/x86_64-linux-gnu /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu /lib32 /usr/lib32 '
-hardcode_action='immediate'
-enable_dlopen='unknown'
-enable_dlopen_self='unknown'
-enable_dlopen_self_static='unknown'
-old_striplib='strip --strip-debug'
-striplib='strip --strip-unneeded'
-
-LTCC='gcc'
-LTCFLAGS='-g -O2'
-compiler='gcc'
-
-# A function that is used when there is no print builtin or printf.
-func_fallback_echo ()
-{
- eval 'cat <<_LTECHO_EOF
-$1
-_LTECHO_EOF'
-}
-
-# Quote evaled strings.
-for var in SHELL ECHO SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd AR AR_FLAGS STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_prog_compiler_no_builtin_flag lt_prog_compiler_wl lt_prog_compiler_pic lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_flag_spec_ld hardcode_libdir_separator fix_srcfile_path exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib; do
- case `eval \\$ECHO \\""\\$$var"\\"` in
- *[\\\`\"\$]*)
- eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\""
- ;;
- *)
- eval "lt_$var=\\\"\$$var\\\""
- ;;
- esac
-done
-
-# Double-quote double-evaled strings.
-for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec sys_lib_dlsearch_path_spec; do
- case `eval \\$ECHO \\""\\$$var"\\"` in
- *[\\\`\"\$]*)
- eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
- ;;
- *)
- eval "lt_$var=\\\"\$$var\\\""
- ;;
- esac
-done
-
-ac_aux_dir='./..'
-xsi_shell='yes'
-lt_shell_append='yes'
-
-# See if we are running on zsh, and set the options which allow our
-# commands through without removal of \ escapes INIT.
-if test -n "${ZSH_VERSION+set}" ; then
- setopt NO_GLOB_SUBST
-fi
-
-
- PACKAGE='binutils'
- VERSION='2.30'
- TIMESTAMP=''
- RM='rm -f'
- ofile='libtool'
-
-
-
-# Capture the value of obsolete ALL_LINGUAS because we need it to compute
- # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it
- # from automake.
- eval 'OBSOLETE_ALL_LINGUAS''="bg da es fi fr id it ja ro ru rw sk sv tr uk vi zh_CN zh_TW hr ca"'
- # Capture the value of LINGUAS because we need it to compute CATALOGS.
- LINGUAS="%UNSET%"
-
-
-
-# Handling of arguments.
-for ac_config_target in $ac_config_targets
-do
- case $ac_config_target in
- "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
- "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
- "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;;
- "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
- "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
-
- *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
- esac
-done
-
-
-# If the user did not use the arguments to specify the items to instantiate,
-# then the envvar interface is used. Set only those that are not.
-# We use the long form for the default assignment because of an extremely
-# bizarre bug on SunOS 4.1.3.
-if $ac_need_defaults; then
- test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
- test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
- test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
-fi
-
-# Have a temporary directory for convenience. Make it in the build tree
-# simply because there is no reason against having it here, and in addition,
-# creating and moving files from /tmp can sometimes cause problems.
-# Hook for its removal unless debugging.
-# Note that there is a small window in which the directory will not be cleaned:
-# after its creation but before its name has been assigned to `$tmp'.
-$debug ||
-{
- tmp=
- trap 'exit_status=$?
- { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
-' 0
- trap 'as_fn_exit 1' 1 2 13 15
-}
-# Create a (secure) tmp directory for tmp files.
-
-{
- tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
- test -n "$tmp" && test -d "$tmp"
-} ||
-{
- tmp=./conf$$-$RANDOM
- (umask 077 && mkdir "$tmp")
-} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
-
-# Set up the scripts for CONFIG_FILES section.
-# No need to generate them if there are no CONFIG_FILES.
-# This happens for instance with `./config.status config.h'.
-if test -n "$CONFIG_FILES"; then
-
-
-ac_cr=`echo X | tr X '\015'`
-# On cygwin, bash can eat \r inside `` if the user requested igncr.
-# But we know of no other shell where ac_cr would be empty at this
-# point, so we can use a bashism as a fallback.
-if test "x$ac_cr" = x; then
- eval ac_cr=\$\'\\r\'
-fi
-ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
- ac_cs_awk_cr='\r'
-else
- ac_cs_awk_cr=$ac_cr
-fi
-
-echo 'BEGIN {' >"$tmp/subs1.awk" &&
-cat >>"$tmp/subs1.awk" <<\_ACAWK &&
-S["am__EXEEXT_FALSE"]=""
-S["am__EXEEXT_TRUE"]="#"
-S["LTLIBOBJS"]=""
-S["LIBOBJS"]=""
-S["EMULATION_VECTOR"]="bin_vanilla_emulation"
-S["EMULATION"]="vanilla"
-S["OBJDUMP_PRIVATE_OFILES"]=""
-S["OBJDUMP_DEFS"]=" -DOBJDUMP_PRIVATE_VECTORS=\"\""
-S["BUILD_INSTALL_MISC"]=""
-S["BUILD_MISC"]=""
-S["BUILD_DLLWRAP"]=""
-S["BUILD_WINDMC"]=""
-S["BUILD_WINDRES"]=""
-S["DLLTOOL_DEFS"]=" "
-S["BUILD_DLLTOOL"]=""
-S["BUILD_SRCONV"]=""
-S["BUILD_NLMCONV"]=""
-S["NLMCONV_DEFS"]=""
-S["LTLIBICONV"]=""
-S["LIBICONV"]=""
-S["zlibinc"]=""
-S["zlibdir"]=""
-S["ALLOCA"]=""
-S["DEMANGLER_NAME"]="c++filt"
-S["EXEEXT_FOR_BUILD"]="$(EXEEXT)"
-S["CC_FOR_BUILD"]="gcc"
-S["HDEFINES"]=""
-S["GENINSRC_NEVER_FALSE"]=""
-S["GENINSRC_NEVER_TRUE"]="#"
-S["MAINT"]="#"
-S["MAINTAINER_MODE_FALSE"]=""
-S["MAINTAINER_MODE_TRUE"]="#"
-S["MSGMERGE"]="/usr/bin/msgmerge"
-S["MSGFMT"]="/usr/bin/msgfmt"
-S["MKINSTALLDIRS"]="$(top_builddir)/./../mkinstalldirs"
-S["CATOBJEXT"]=""
-S["GENCAT"]=""
-S["INSTOBJEXT"]=""
-S["DATADIRNAME"]=""
-S["CATALOGS"]=""
-S["POSUB"]=""
-S["GMSGFMT"]="/usr/bin/msgfmt"
-S["XGETTEXT"]="/usr/bin/xgettext"
-S["INCINTL"]=""
-S["LIBINTL_DEP"]=""
-S["LIBINTL"]=""
-S["USE_NLS"]="yes"
-S["LEXLIB"]="-lfl"
-S["LEX_OUTPUT_ROOT"]="lex.yy"
-S["LEX"]="flex"
-S["YFLAGS"]=""
-S["YACC"]="bison -y"
-S["WARN_WRITE_STRINGS"]="-Wwrite-strings"
-S["NO_WERROR"]=""
-S["WARN_CFLAGS_FOR_BUILD"]="-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144"
-S["WARN_CFLAGS"]="-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144"
-S["OTOOL64"]=""
-S["OTOOL"]=""
-S["LIPO"]=""
-S["NMEDIT"]=""
-S["DSYMUTIL"]=""
-S["RANLIB"]="ranlib"
-S["AR"]="ar"
-S["OBJDUMP"]="objdump"
-S["LN_S"]="ln -s"
-S["NM"]="nm"
-S["ac_ct_DUMPBIN"]=""
-S["DUMPBIN"]=""
-S["LD"]="ld -m elf_x86_64"
-S["FGREP"]="/bin/grep -F"
-S["SED"]="/bin/sed"
-S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
-S["EGREP"]="/bin/grep -E"
-S["GREP"]="/bin/grep"
-S["CPP"]="gcc -E"
-S["am__fastdepCC_FALSE"]="#"
-S["am__fastdepCC_TRUE"]=""
-S["CCDEPMODE"]="depmode=gcc3"
-S["am__nodep"]="_no"
-S["AMDEPBACKSLASH"]="\\"
-S["AMDEP_FALSE"]="#"
-S["AMDEP_TRUE"]=""
-S["am__quote"]=""
-S["am__include"]="include"
-S["DEPDIR"]=".deps"
-S["am__untar"]="$${TAR-tar} xf -"
-S["am__tar"]="$${TAR-tar} chof - \"$$tardir\""
-S["AMTAR"]="$${TAR-tar}"
-S["am__leading_dot"]="."
-S["SET_MAKE"]=""
-S["AWK"]="gawk"
-S["mkdir_p"]="/bin/mkdir -p"
-S["MKDIR_P"]="/bin/mkdir -p"
-S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
-S["STRIP"]="strip"
-S["install_sh"]="${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/install-sh"
-S["MAKEINFO"]="makeinfo --split-size=5000000"
-S["AUTOHEADER"]="${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run autoheader"
-S["AUTOMAKE"]="${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run automake-1.11"
-S["AUTOCONF"]="${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run autoconf"
-S["ACLOCAL"]="${SHELL} /home/xavier/sdcc_gas/support/sdbinutils/missing --run aclocal-1.11"
-S["VERSION"]="2.30"
-S["PACKAGE"]="binutils"
-S["CYGPATH_W"]="echo"
-S["am__isrc"]=""
-S["INSTALL_DATA"]="/usr/bin/install -c -m 644"
-S["INSTALL_SCRIPT"]="/usr/bin/install -c"
-S["INSTALL_PROGRAM"]="/usr/bin/install -c"
-S["OBJEXT"]="o"
-S["EXEEXT"]=""
-S["ac_ct_CC"]=""
-S["CPPFLAGS"]=""
-S["LDFLAGS"]="-static-libstdc++ -static-libgcc "
-S["CFLAGS"]="-g -O2"
-S["CC"]="gcc"
-S["target_os"]="linux-gnu"
-S["target_vendor"]="pc"
-S["target_cpu"]="x86_64"
-S["target"]="x86_64-pc-linux-gnu"
-S["host_os"]="linux-gnu"
-S["host_vendor"]="pc"
-S["host_cpu"]="x86_64"
-S["host"]="x86_64-pc-linux-gnu"
-S["build_os"]="linux-gnu"
-S["build_vendor"]="pc"
-S["build_cpu"]="x86_64"
-S["build"]="x86_64-pc-linux-gnu"
-S["target_alias"]="x86_64-pc-linux-gnu"
-S["host_alias"]="x86_64-pc-linux-gnu"
-S["build_alias"]="x86_64-pc-linux-gnu"
-S["LIBS"]="-ldl "
-S["ECHO_T"]=""
-S["ECHO_N"]="-n"
-S["ECHO_C"]=""
-S["DEFS"]="-DHAVE_CONFIG_H"
-S["mandir"]="${datarootdir}/man"
-S["localedir"]="${datarootdir}/locale"
-S["libdir"]="${exec_prefix}/lib"
-S["psdir"]="${docdir}"
-S["pdfdir"]="${docdir}"
-S["dvidir"]="${docdir}"
-S["htmldir"]="${docdir}"
-S["infodir"]="${datarootdir}/info"
-S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
-S["oldincludedir"]="/usr/include"
-S["includedir"]="${prefix}/include"
-S["localstatedir"]="${prefix}/var"
-S["sharedstatedir"]="${prefix}/com"
-S["sysconfdir"]="${prefix}/etc"
-S["datadir"]="${datarootdir}"
-S["datarootdir"]="${prefix}/share"
-S["libexecdir"]="${exec_prefix}/libexec"
-S["sbindir"]="${exec_prefix}/sbin"
-S["bindir"]="${exec_prefix}/bin"
-S["program_transform_name"]="s,y,y,"
-S["prefix"]="/usr/local"
-S["exec_prefix"]="${prefix}"
-S["PACKAGE_URL"]=""
-S["PACKAGE_BUGREPORT"]=""
-S["PACKAGE_STRING"]="binutils 2.30"
-S["PACKAGE_VERSION"]="2.30"
-S["PACKAGE_TARNAME"]="binutils"
-S["PACKAGE_NAME"]="binutils"
-S["PATH_SEPARATOR"]=":"
-S["SHELL"]="/bin/bash"
-_ACAWK
-cat >>"$tmp/subs1.awk" <<_ACAWK &&
- for (key in S) S_is_set[key] = 1
- FS = ""
-
-}
-{
- line = $ 0
- nfields = split(line, field, "@")
- substed = 0
- len = length(field[1])
- for (i = 2; i < nfields; i++) {
- key = field[i]
- keylen = length(key)
- if (S_is_set[key]) {
- value = S[key]
- line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
- len += length(value) + length(field[++i])
- substed = 1
- } else
- len += 1 + keylen
- }
-
- print line
-}
-
-_ACAWK
-if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
- sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
-else
- cat
-fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
- || as_fn_error "could not setup config files machinery" "$LINENO" 5
-fi # test -n "$CONFIG_FILES"
-
-# Set up the scripts for CONFIG_HEADERS section.
-# No need to generate them if there are no CONFIG_HEADERS.
-# This happens for instance with `./config.status Makefile'.
-if test -n "$CONFIG_HEADERS"; then
-cat >"$tmp/defines.awk" <<\_ACAWK ||
-BEGIN {
-D["PACKAGE_NAME"]=" \"binutils\""
-D["PACKAGE_TARNAME"]=" \"binutils\""
-D["PACKAGE_VERSION"]=" \"2.30\""
-D["PACKAGE_STRING"]=" \"binutils 2.30\""
-D["PACKAGE_BUGREPORT"]=" \"\""
-D["PACKAGE_URL"]=" \"\""
-D["PACKAGE"]=" \"binutils\""
-D["VERSION"]=" \"2.30\""
-D["STDC_HEADERS"]=" 1"
-D["HAVE_SYS_TYPES_H"]=" 1"
-D["HAVE_SYS_STAT_H"]=" 1"
-D["HAVE_STDLIB_H"]=" 1"
-D["HAVE_STRING_H"]=" 1"
-D["HAVE_MEMORY_H"]=" 1"
-D["HAVE_STRINGS_H"]=" 1"
-D["HAVE_INTTYPES_H"]=" 1"
-D["HAVE_STDINT_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["__EXTENSIONS__"]=" 1"
-D["_ALL_SOURCE"]=" 1"
-D["_GNU_SOURCE"]=" 1"
-D["_POSIX_PTHREAD_SEMANTICS"]=" 1"
-D["_TANDEM_SOURCE"]=" 1"
-D["HAVE_DLFCN_H"]=" 1"
-D["LT_OBJDIR"]=" \".libs/\""
-D["HAVE_DLFCN_H"]=" 1"
-D["DEFAULT_AR_DETERMINISTIC"]=" 0"
-D["DEFAULT_STRINGS_ALL"]=" 1"
-D["YYTEXT_POINTER"]=" 1"
-D["EXECUTABLE_SUFFIX"]=" \"\""
-D["SIZEOF_LONG"]=" 8"
-D["HAVE_LONG_LONG"]=" 1"
-D["SIZEOF_LONG_LONG"]=" 8"
-D["HAVE_STRING_H"]=" 1"
-D["HAVE_STRINGS_H"]=" 1"
-D["HAVE_STDLIB_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["HAVE_FCNTL_H"]=" 1"
-D["HAVE_SYS_FILE_H"]=" 1"
-D["HAVE_LIMITS_H"]=" 1"
-D["HAVE_LOCALE_H"]=" 1"
-D["HAVE_SYS_PARAM_H"]=" 1"
-D["HAVE_WCHAR_H"]=" 1"
-D["HAVE_SYS_WAIT_H"]=" 1"
-D["STRING_WITH_STRINGS"]=" 1"
-D["HAVE_ALLOCA_H"]=" 1"
-D["HAVE_ALLOCA"]=" 1"
-D["HAVE_SBRK"]=" 1"
-D["HAVE_UTIMES"]=" 1"
-D["HAVE_GETC_UNLOCKED"]=" 1"
-D["HAVE_STRCOLL"]=" 1"
-D["HAVE_SETLOCALE"]=" 1"
-D["HAVE_MKSTEMP"]=" 1"
-D["HAVE_MKDTEMP"]=" 1"
-D["HAVE_MBSTATE_T"]=" 1"
-D["HAVE_LC_MESSAGES"]=" 1"
-D["HAVE_TIME_T_IN_TIME_H"]=" 1"
-D["HAVE_TIME_T_IN_TYPES_H"]=" 1"
-D["HAVE_DECL_GETOPT"]=" 1"
-D["HAVE_GOOD_UTIME_H"]=" 1"
-D["HAVE_DECL_ASPRINTF"]=" 1"
-D["HAVE_DECL_ENVIRON"]=" 1"
-D["HAVE_DECL_FPRINTF"]=" 1"
-D["HAVE_DECL_GETC_UNLOCKED"]=" 1"
-D["HAVE_DECL_GETENV"]=" 1"
-D["HAVE_DECL_SBRK"]=" 1"
-D["HAVE_DECL_SNPRINTF"]=" 1"
-D["HAVE_DECL_STPCPY"]=" 1"
-D["HAVE_DECL_STRNLEN"]=" 1"
-D["HAVE_DECL_STRSTR"]=" 1"
-D["HAVE_DECL_VSNPRINTF"]=" 1"
-D["HAVE_ICONV"]=" 1"
-D["ICONV_CONST"]=" "
-D["TARGET"]=" \"asxxxx\""
-D["TARGET_PREPENDS_UNDERSCORE"]=" 0"
- for (key in D) D_is_set[key] = 1
- FS = ""
-}
-/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
- line = $ 0
- split(line, arg, " ")
- if (arg[1] == "#") {
- defundef = arg[2]
- mac1 = arg[3]
- } else {
- defundef = substr(arg[1], 2)
- mac1 = arg[2]
- }
- split(mac1, mac2, "(") #)
- macro = mac2[1]
- prefix = substr(line, 1, index(line, defundef) - 1)
- if (D_is_set[macro]) {
- # Preserve the white space surrounding the "#".
- print prefix "define", macro P[macro] D[macro]
- next
- } else {
- # Replace #undef with comments. This is necessary, for example,
- # in the case of _POSIX_SOURCE, which is predefined and required
- # on some systems where configure will not decide to define it.
- if (defundef == "undef") {
- print "/*", prefix defundef, macro, "*/"
- next
- }
- }
-}
-{ print }
-_ACAWK
- as_fn_error "could not setup config headers machinery" "$LINENO" 5
-fi # test -n "$CONFIG_HEADERS"
-
-
-eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
-shift
-for ac_tag
-do
- case $ac_tag in
- :[FHLC]) ac_mode=$ac_tag; continue;;
- esac
- case $ac_mode$ac_tag in
- :[FHL]*:*);;
- :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
- :[FH]-) ac_tag=-:-;;
- :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
- esac
- ac_save_IFS=$IFS
- IFS=:
- set x $ac_tag
- IFS=$ac_save_IFS
- shift
- ac_file=$1
- shift
-
- case $ac_mode in
- :L) ac_source=$1;;
- :[FH])
- ac_file_inputs=
- for ac_f
- do
- case $ac_f in
- -) ac_f="$tmp/stdin";;
- *) # Look for the file first in the build tree, then in the source tree
- # (if the path is not absolute). The absolute path cannot be DOS-style,
- # because $ac_f cannot contain `:'.
- test -f "$ac_f" ||
- case $ac_f in
- [\\/$]*) false;;
- *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
- esac ||
- as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
- esac
- case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
- as_fn_append ac_file_inputs " '$ac_f'"
- done
-
- # Let's still pretend it is `configure' which instantiates (i.e., don't
- # use $as_me), people would be surprised to read:
- # /* config.h. Generated by config.status. */
- configure_input='Generated from '`
- $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
- `' by configure.'
- if test x"$ac_file" != x-; then
- configure_input="$ac_file. $configure_input"
- { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
-$as_echo "$as_me: creating $ac_file" >&6;}
- fi
- # Neutralize special characters interpreted by sed in replacement strings.
- case $configure_input in #(
- *\&* | *\|* | *\\* )
- ac_sed_conf_input=`$as_echo "$configure_input" |
- sed 's/[\\\\&|]/\\\\&/g'`;; #(
- *) ac_sed_conf_input=$configure_input;;
- esac
-
- case $ac_tag in
- *:-:* | *:-) cat >"$tmp/stdin" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
- esac
- ;;
- esac
-
- ac_dir=`$as_dirname -- "$ac_file" ||
-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$ac_file" : 'X\(//\)[^/]' \| \
- X"$ac_file" : 'X\(//\)$' \| \
- X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$ac_file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- as_dir="$ac_dir"; as_fn_mkdir_p
- ac_builddir=.
-
-case "$ac_dir" in
-.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-*)
- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
- # A ".." for each directory in $ac_dir_suffix.
- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
- case $ac_top_builddir_sub in
- "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
- *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
- esac ;;
-esac
-ac_abs_top_builddir=$ac_pwd
-ac_abs_builddir=$ac_pwd$ac_dir_suffix
-# for backward compatibility:
-ac_top_builddir=$ac_top_build_prefix
-
-case $srcdir in
- .) # We are building in place.
- ac_srcdir=.
- ac_top_srcdir=$ac_top_builddir_sub
- ac_abs_top_srcdir=$ac_pwd ;;
- [\\/]* | ?:[\\/]* ) # Absolute name.
- ac_srcdir=$srcdir$ac_dir_suffix;
- ac_top_srcdir=$srcdir
- ac_abs_top_srcdir=$srcdir ;;
- *) # Relative name.
- ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
- ac_top_srcdir=$ac_top_build_prefix$srcdir
- ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-esac
-ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-
-
- case $ac_mode in
- :F)
- #
- # CONFIG_FILE
- #
-
- case $INSTALL in
- [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
- *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
- esac
- ac_MKDIR_P=$MKDIR_P
- case $MKDIR_P in
- [\\/$]* | ?:[\\/]* ) ;;
- */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
- esac
-# If the template does not know about datarootdir, expand it.
-# FIXME: This hack should be removed a few years after 2.60.
-ac_datarootdir_hack=; ac_datarootdir_seen=
-ac_sed_dataroot='
-/datarootdir/ {
- p
- q
-}
-/@datadir@/p
-/@docdir@/p
-/@infodir@/p
-/@localedir@/p
-/@mandir@/p'
-case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
-*datarootdir*) ac_datarootdir_seen=yes;;
-*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
-$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
- ac_datarootdir_hack='
- s&@datadir@&${datarootdir}&g
- s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
- s&@infodir@&${datarootdir}/info&g
- s&@localedir@&${datarootdir}/locale&g
- s&@mandir@&${datarootdir}/man&g
- s&\${datarootdir}&${prefix}/share&g' ;;
-esac
-ac_sed_extra="/^[ ]*VPATH[ ]*=/{
-s/:*\$(srcdir):*/:/
-s/:*\${srcdir}:*/:/
-s/:*@srcdir@:*/:/
-s/^\([^=]*=[ ]*\):*/\1/
-s/:*$//
-s/^[^=]*=[ ]*$//
-}
-
-:t
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-s|@configure_input@|$ac_sed_conf_input|;t t
-s&@top_builddir@&$ac_top_builddir_sub&;t t
-s&@top_build_prefix@&$ac_top_build_prefix&;t t
-s&@srcdir@&$ac_srcdir&;t t
-s&@abs_srcdir@&$ac_abs_srcdir&;t t
-s&@top_srcdir@&$ac_top_srcdir&;t t
-s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
-s&@builddir@&$ac_builddir&;t t
-s&@abs_builddir@&$ac_abs_builddir&;t t
-s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
-s&@INSTALL@&$ac_INSTALL&;t t
-s&@MKDIR_P@&$ac_MKDIR_P&;t t
-$ac_datarootdir_hack
-"
-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
-
-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
- { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined." >&5
-$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined." >&2;}
-
- rm -f "$tmp/stdin"
- case $ac_file in
- -) cat "$tmp/out" && rm -f "$tmp/out";;
- *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
- esac \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
- ;;
- :H)
- #
- # CONFIG_HEADER
- #
- if test x"$ac_file" != x-; then
- {
- $as_echo "/* $configure_input */" \
- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
- } >"$tmp/config.h" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
- if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
-$as_echo "$as_me: $ac_file is unchanged" >&6;}
- else
- rm -f "$ac_file"
- mv "$tmp/config.h" "$ac_file" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
- fi
- else
- $as_echo "/* $configure_input */" \
- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
- || as_fn_error "could not create -" "$LINENO" 5
- fi
-# Compute "$ac_file"'s index in $config_headers.
-_am_arg="$ac_file"
-_am_stamp_count=1
-for _am_header in $config_headers :; do
- case $_am_header in
- $_am_arg | $_am_arg:* )
- break ;;
- * )
- _am_stamp_count=`expr $_am_stamp_count + 1` ;;
- esac
-done
-echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
-$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$_am_arg" : 'X\(//\)[^/]' \| \
- X"$_am_arg" : 'X\(//\)$' \| \
- X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$_am_arg" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`/stamp-h$_am_stamp_count
- ;;
-
- :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
-$as_echo "$as_me: executing $ac_file commands" >&6;}
- ;;
- esac
-
-
- case $ac_file$ac_mode in
- "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
- # Autoconf 2.62 quotes --file arguments for eval, but not when files
- # are listed without --file. Let's play safe and only enable the eval
- # if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
- shift
- for mf
- do
- # Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named `Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
- # limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`$as_dirname -- "$mf" ||
-$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$mf" : 'X\(//\)[^/]' \| \
- X"$mf" : 'X\(//\)$' \| \
- X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$mf" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running `make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # When using ansi2knr, U may be empty or an underscore; expand it
- U=`sed -n 's/^U = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`$as_dirname -- "$file" ||
-$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$file" : 'X\(//\)[^/]' \| \
- X"$file" : 'X\(//\)$' \| \
- X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- as_dir=$dirpart/$fdir; as_fn_mkdir_p
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
- done
-}
- ;;
- "libtool":C)
-
- # See if we are running on zsh, and set the options which allow our
- # commands through without removal of \ escapes.
- if test -n "${ZSH_VERSION+set}" ; then
- setopt NO_GLOB_SUBST
- fi
-
- cfgfile="${ofile}T"
- trap "$RM \"$cfgfile\"; exit 1" 1 2 15
- $RM "$cfgfile"
-
- cat <<_LT_EOF >> "$cfgfile"
-#! $SHELL
-
-# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
-# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
-# NOTE: Changes made to this file will be lost: look at ltmain.sh.
-#
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-# 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-# Written by Gordon Matzigkeit, 1996
-#
-# This file is part of GNU Libtool.
-#
-# GNU Libtool 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 2 of
-# the License, or (at your option) any later version.
-#
-# As a special exception to the GNU General Public License,
-# if you distribute this file as part of a program or library that
-# is built using GNU Libtool, you may include this file under the
-# same distribution terms that you use for the rest of that program.
-#
-# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy
-# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
-# obtained by writing to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-# The names of the tagged configurations supported by this script.
-available_tags=""
-
-# ### BEGIN LIBTOOL CONFIG
-
-# Which release of libtool.m4 was used?
-macro_version=$macro_version
-macro_revision=$macro_revision
-
-# Whether or not to build shared libraries.
-build_libtool_libs=$enable_shared
-
-# Whether or not to build static libraries.
-build_old_libs=$enable_static
-
-# What type of objects to build.
-pic_mode=$pic_mode
-
-# Whether or not to optimize for fast installation.
-fast_install=$enable_fast_install
-
-# Shell to use when invoking shell scripts.
-SHELL=$lt_SHELL
-
-# An echo program that protects backslashes.
-ECHO=$lt_ECHO
-
-# The host system.
-host_alias=$host_alias
-host=$host
-host_os=$host_os
-
-# The build system.
-build_alias=$build_alias
-build=$build
-build_os=$build_os
-
-# A sed program that does not truncate output.
-SED=$lt_SED
-
-# Sed that helps us avoid accidentally triggering echo(1) options like -n.
-Xsed="\$SED -e 1s/^X//"
-
-# A grep program that handles long lines.
-GREP=$lt_GREP
-
-# An ERE matcher.
-EGREP=$lt_EGREP
-
-# A literal string matcher.
-FGREP=$lt_FGREP
-
-# A BSD- or MS-compatible name lister.
-NM=$lt_NM
-
-# Whether we need soft or hard links.
-LN_S=$lt_LN_S
-
-# What is the maximum length of a command?
-max_cmd_len=$max_cmd_len
-
-# Object file suffix (normally "o").
-objext=$ac_objext
-
-# Executable file suffix (normally "").
-exeext=$exeext
-
-# whether the shell understands "unset".
-lt_unset=$lt_unset
-
-# turn spaces into newlines.
-SP2NL=$lt_lt_SP2NL
-
-# turn newlines into spaces.
-NL2SP=$lt_lt_NL2SP
-
-# An object symbol dumper.
-OBJDUMP=$lt_OBJDUMP
-
-# Method to check whether dependent libraries are shared objects.
-deplibs_check_method=$lt_deplibs_check_method
-
-# Command to use when deplibs_check_method == "file_magic".
-file_magic_cmd=$lt_file_magic_cmd
-
-# The archiver.
-AR=$lt_AR
-AR_FLAGS=$lt_AR_FLAGS
-
-# A symbol stripping program.
-STRIP=$lt_STRIP
-
-# Commands used to install an old-style archive.
-RANLIB=$lt_RANLIB
-old_postinstall_cmds=$lt_old_postinstall_cmds
-old_postuninstall_cmds=$lt_old_postuninstall_cmds
-
-# Whether to use a lock for old archive extraction.
-lock_old_archive_extraction=$lock_old_archive_extraction
-
-# A C compiler.
-LTCC=$lt_CC
-
-# LTCC compiler flags.
-LTCFLAGS=$lt_CFLAGS
-
-# Take the output of nm and produce a listing of raw symbols and C names.
-global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
-
-# Transform the output of nm in a proper C declaration.
-global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
-
-# Transform the output of nm in a C name address pair.
-global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
-
-# Transform the output of nm in a C name address pair when lib prefix is needed.
-global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
-
-# The name of the directory that contains temporary libtool files.
-objdir=$objdir
-
-# Used to examine libraries when file_magic_cmd begins with "file".
-MAGIC_CMD=$MAGIC_CMD
-
-# Must we lock files when doing compilation?
-need_locks=$lt_need_locks
-
-# Tool to manipulate archived DWARF debug symbol files on Mac OS X.
-DSYMUTIL=$lt_DSYMUTIL
-
-# Tool to change global to local symbols on Mac OS X.
-NMEDIT=$lt_NMEDIT
-
-# Tool to manipulate fat objects and archives on Mac OS X.
-LIPO=$lt_LIPO
-
-# ldd/readelf like tool for Mach-O binaries on Mac OS X.
-OTOOL=$lt_OTOOL
-
-# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
-OTOOL64=$lt_OTOOL64
-
-# Old archive suffix (normally "a").
-libext=$libext
-
-# Shared library suffix (normally ".so").
-shrext_cmds=$lt_shrext_cmds
-
-# The commands to extract the exported symbol list from a shared archive.
-extract_expsyms_cmds=$lt_extract_expsyms_cmds
-
-# Variables whose values should be saved in libtool wrapper scripts and
-# restored at link time.
-variables_saved_for_relink=$lt_variables_saved_for_relink
-
-# Do we need the "lib" prefix for modules?
-need_lib_prefix=$need_lib_prefix
-
-# Do we need a version for libraries?
-need_version=$need_version
-
-# Library versioning type.
-version_type=$version_type
-
-# Shared library runtime path variable.
-runpath_var=$runpath_var
-
-# Shared library path variable.
-shlibpath_var=$shlibpath_var
-
-# Is shlibpath searched before the hard-coded library search path?
-shlibpath_overrides_runpath=$shlibpath_overrides_runpath
-
-# Format of library name prefix.
-libname_spec=$lt_libname_spec
-
-# List of archive names. First name is the real one, the rest are links.
-# The last name is the one that the linker finds with -lNAME
-library_names_spec=$lt_library_names_spec
-
-# The coded name of the library, if different from the real name.
-soname_spec=$lt_soname_spec
-
-# Permission mode override for installation of shared libraries.
-install_override_mode=$lt_install_override_mode
-
-# Command to use after installation of a shared archive.
-postinstall_cmds=$lt_postinstall_cmds
-
-# Command to use after uninstallation of a shared archive.
-postuninstall_cmds=$lt_postuninstall_cmds
-
-# Commands used to finish a libtool library installation in a directory.
-finish_cmds=$lt_finish_cmds
-
-# As "finish_cmds", except a single script fragment to be evaled but
-# not shown.
-finish_eval=$lt_finish_eval
-
-# Whether we should hardcode library paths into libraries.
-hardcode_into_libs=$hardcode_into_libs
-
-# Compile-time system search path for libraries.
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
-
-# Run-time system search path for libraries.
-sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
-
-# Whether dlopen is supported.
-dlopen_support=$enable_dlopen
-
-# Whether dlopen of programs is supported.
-dlopen_self=$enable_dlopen_self
-
-# Whether dlopen of statically linked programs is supported.
-dlopen_self_static=$enable_dlopen_self_static
-
-# Commands to strip libraries.
-old_striplib=$lt_old_striplib
-striplib=$lt_striplib
-
-
-# The linker used to build libraries.
-LD=$lt_LD
-
-# How to create reloadable object files.
-reload_flag=$lt_reload_flag
-reload_cmds=$lt_reload_cmds
-
-# Commands used to build an old-style archive.
-old_archive_cmds=$lt_old_archive_cmds
-
-# A language specific compiler.
-CC=$lt_compiler
-
-# Is the compiler the GNU compiler?
-with_gcc=$GCC
-
-# Compiler flag to turn off builtin functions.
-no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
-
-# How to pass a linker flag through the compiler.
-wl=$lt_lt_prog_compiler_wl
-
-# Additional compiler flags for building library objects.
-pic_flag=$lt_lt_prog_compiler_pic
-
-# Compiler flag to prevent dynamic linking.
-link_static_flag=$lt_lt_prog_compiler_static
-
-# Does compiler simultaneously support -c and -o options?
-compiler_c_o=$lt_lt_cv_prog_compiler_c_o
-
-# Whether or not to add -lc for building shared libraries.
-build_libtool_need_lc=$archive_cmds_need_lc
-
-# Whether or not to disallow shared libs when runtime libs are static.
-allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
-
-# Compiler flag to allow reflexive dlopens.
-export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
-
-# Compiler flag to generate shared objects directly from archives.
-whole_archive_flag_spec=$lt_whole_archive_flag_spec
-
-# Whether the compiler copes with passing no objects directly.
-compiler_needs_object=$lt_compiler_needs_object
-
-# Create an old-style archive from a shared archive.
-old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
-
-# Create a temporary old-style archive to link instead of a shared archive.
-old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
-
-# Commands used to build a shared archive.
-archive_cmds=$lt_archive_cmds
-archive_expsym_cmds=$lt_archive_expsym_cmds
-
-# Commands used to build a loadable module if different from building
-# a shared archive.
-module_cmds=$lt_module_cmds
-module_expsym_cmds=$lt_module_expsym_cmds
-
-# Whether we are building with GNU ld or not.
-with_gnu_ld=$lt_with_gnu_ld
-
-# Flag that allows shared libraries with undefined symbols to be built.
-allow_undefined_flag=$lt_allow_undefined_flag
-
-# Flag that enforces no undefined symbols.
-no_undefined_flag=$lt_no_undefined_flag
-
-# Flag to hardcode \$libdir into a binary during linking.
-# This must work even if \$libdir does not exist
-hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
-
-# If ld is used when linking, flag to hardcode \$libdir into a binary
-# during linking. This must work even if \$libdir does not exist.
-hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
-
-# Whether we need a single "-rpath" flag with a separated argument.
-hardcode_libdir_separator=$lt_hardcode_libdir_separator
-
-# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
-# DIR into the resulting binary.
-hardcode_direct=$hardcode_direct
-
-# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
-# DIR into the resulting binary and the resulting library dependency is
-# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
-# library is relocated.
-hardcode_direct_absolute=$hardcode_direct_absolute
-
-# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
-# into the resulting binary.
-hardcode_minus_L=$hardcode_minus_L
-
-# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
-# into the resulting binary.
-hardcode_shlibpath_var=$hardcode_shlibpath_var
-
-# Set to "yes" if building a shared library automatically hardcodes DIR
-# into the library and all subsequent libraries and executables linked
-# against it.
-hardcode_automatic=$hardcode_automatic
-
-# Set to yes if linker adds runtime paths of dependent libraries
-# to runtime path list.
-inherit_rpath=$inherit_rpath
-
-# Whether libtool must link a program against all its dependency libraries.
-link_all_deplibs=$link_all_deplibs
-
-# Fix the shell variable \$srcfile for the compiler.
-fix_srcfile_path=$lt_fix_srcfile_path
-
-# Set to "yes" if exported symbols are required.
-always_export_symbols=$always_export_symbols
-
-# The commands to list exported symbols.
-export_symbols_cmds=$lt_export_symbols_cmds
-
-# Symbols that should not be listed in the preloaded symbols.
-exclude_expsyms=$lt_exclude_expsyms
-
-# Symbols that must always be exported.
-include_expsyms=$lt_include_expsyms
-
-# Commands necessary for linking programs (against libraries) with templates.
-prelink_cmds=$lt_prelink_cmds
-
-# Specify filename containing input files.
-file_list_spec=$lt_file_list_spec
-
-# How to hardcode a shared library path into an executable.
-hardcode_action=$hardcode_action
-
-# ### END LIBTOOL CONFIG
-
-_LT_EOF
-
- case $host_os in
- aix3*)
- cat <<\_LT_EOF >> "$cfgfile"
-# AIX sometimes has problems with the GCC collect2 program. For some
-# reason, if we set the COLLECT_NAMES environment variable, the problems
-# vanish in a puff of smoke.
-if test "X${COLLECT_NAMES+set}" != Xset; then
- COLLECT_NAMES=
- export COLLECT_NAMES
-fi
-_LT_EOF
- ;;
- esac
-
-
-ltmain="$ac_aux_dir/ltmain.sh"
-
-
- # We use sed instead of cat because bash on DJGPP gets confused if
- # if finds mixed CR/LF and LF-only lines. Since sed operates in
- # text mode, it properly converts lines to CR/LF. This bash problem
- # is reportedly fixed, but why not run on old versions too?
- sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \
- || (rm -f "$cfgfile"; exit 1)
-
- case $xsi_shell in
- yes)
- cat << \_LT_EOF >> "$cfgfile"
-
-# func_dirname file append nondir_replacement
-# Compute the dirname of FILE. If nonempty, add APPEND to the result,
-# otherwise set result to NONDIR_REPLACEMENT.
-func_dirname ()
-{
- case ${1} in
- */*) func_dirname_result="${1%/*}${2}" ;;
- * ) func_dirname_result="${3}" ;;
- esac
-}
-
-# func_basename file
-func_basename ()
-{
- func_basename_result="${1##*/}"
-}
-
-# func_dirname_and_basename file append nondir_replacement
-# perform func_basename and func_dirname in a single function
-# call:
-# dirname: Compute the dirname of FILE. If nonempty,
-# add APPEND to the result, otherwise set result
-# to NONDIR_REPLACEMENT.
-# value returned in "$func_dirname_result"
-# basename: Compute filename of FILE.
-# value retuned in "$func_basename_result"
-# Implementation must be kept synchronized with func_dirname
-# and func_basename. For efficiency, we do not delegate to
-# those functions but instead duplicate the functionality here.
-func_dirname_and_basename ()
-{
- case ${1} in
- */*) func_dirname_result="${1%/*}${2}" ;;
- * ) func_dirname_result="${3}" ;;
- esac
- func_basename_result="${1##*/}"
-}
-
-# func_stripname prefix suffix name
-# strip PREFIX and SUFFIX off of NAME.
-# PREFIX and SUFFIX must not contain globbing or regex special
-# characters, hashes, percent signs, but SUFFIX may contain a leading
-# dot (in which case that matches only a dot).
-func_stripname ()
-{
- # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
- # positional parameters, so assign one to ordinary parameter first.
- func_stripname_result=${3}
- func_stripname_result=${func_stripname_result#"${1}"}
- func_stripname_result=${func_stripname_result%"${2}"}
-}
-
-# func_opt_split
-func_opt_split ()
-{
- func_opt_split_opt=${1%%=*}
- func_opt_split_arg=${1#*=}
-}
-
-# func_lo2o object
-func_lo2o ()
-{
- case ${1} in
- *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
- *) func_lo2o_result=${1} ;;
- esac
-}
-
-# func_xform libobj-or-source
-func_xform ()
-{
- func_xform_result=${1%.*}.lo
-}
-
-# func_arith arithmetic-term...
-func_arith ()
-{
- func_arith_result=$(( $* ))
-}
-
-# func_len string
-# STRING may not start with a hyphen.
-func_len ()
-{
- func_len_result=${#1}
-}
-
-_LT_EOF
- ;;
- *) # Bourne compatible functions.
- cat << \_LT_EOF >> "$cfgfile"
-
-# func_dirname file append nondir_replacement
-# Compute the dirname of FILE. If nonempty, add APPEND to the result,
-# otherwise set result to NONDIR_REPLACEMENT.
-func_dirname ()
-{
- # Extract subdirectory from the argument.
- func_dirname_result=`$ECHO "${1}" | $SED "$dirname"`
- if test "X$func_dirname_result" = "X${1}"; then
- func_dirname_result="${3}"
- else
- func_dirname_result="$func_dirname_result${2}"
- fi
-}
-
-# func_basename file
-func_basename ()
-{
- func_basename_result=`$ECHO "${1}" | $SED "$basename"`
-}
-
-
-# func_stripname prefix suffix name
-# strip PREFIX and SUFFIX off of NAME.
-# PREFIX and SUFFIX must not contain globbing or regex special
-# characters, hashes, percent signs, but SUFFIX may contain a leading
-# dot (in which case that matches only a dot).
-# func_strip_suffix prefix name
-func_stripname ()
-{
- case ${2} in
- .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
- *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
- esac
-}
-
-# sed scripts:
-my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q'
-my_sed_long_arg='1s/^-[^=]*=//'
-
-# func_opt_split
-func_opt_split ()
-{
- func_opt_split_opt=`$ECHO "${1}" | $SED "$my_sed_long_opt"`
- func_opt_split_arg=`$ECHO "${1}" | $SED "$my_sed_long_arg"`
-}
-
-# func_lo2o object
-func_lo2o ()
-{
- func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"`
-}
-
-# func_xform libobj-or-source
-func_xform ()
-{
- func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'`
-}
-
-# func_arith arithmetic-term...
-func_arith ()
-{
- func_arith_result=`expr "$@"`
-}
-
-# func_len string
-# STRING may not start with a hyphen.
-func_len ()
-{
- func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
-}
-
-_LT_EOF
-esac
-
-case $lt_shell_append in
- yes)
- cat << \_LT_EOF >> "$cfgfile"
-
-# func_append var value
-# Append VALUE to the end of shell variable VAR.
-func_append ()
-{
- eval "$1+=\$2"
-}
-_LT_EOF
- ;;
- *)
- cat << \_LT_EOF >> "$cfgfile"
-
-# func_append var value
-# Append VALUE to the end of shell variable VAR.
-func_append ()
-{
- eval "$1=\$$1\$2"
-}
-
-_LT_EOF
- ;;
- esac
-
-
- sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \
- || (rm -f "$cfgfile"; exit 1)
-
- mv -f "$cfgfile" "$ofile" ||
- (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
- chmod +x "$ofile"
-
- ;;
- "default-1":C)
- for ac_file in $CONFIG_FILES; do
- # Support "outfile[:infile[:infile...]]"
- case "$ac_file" in
- *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
- esac
- # PO directories have a Makefile.in generated from Makefile.in.in.
- case "$ac_file" in */Makefile.in)
- # Adjust a relative srcdir.
- ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
- ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'`
- ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
- # In autoconf-2.13 it is called $ac_given_srcdir.
- # In autoconf-2.50 it is called $srcdir.
- test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
- case "$ac_given_srcdir" in
- .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
- /*) top_srcdir="$ac_given_srcdir" ;;
- *) top_srcdir="$ac_dots$ac_given_srcdir" ;;
- esac
- if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
- rm -f "$ac_dir/POTFILES"
- test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
- cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
- POMAKEFILEDEPS="POTFILES.in"
- # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend
- # on $ac_dir but don't depend on user-specified configuration
- # parameters.
- if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
- # The LINGUAS file contains the set of available languages.
- if test -n "$OBSOLETE_ALL_LINGUAS"; then
- test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.ac is obsolete" || echo "setting ALL_LINGUAS in configure.ac is obsolete"
- fi
- ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"`
- # Hide the ALL_LINGUAS assigment from automake.
- eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
- POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
- else
- # The set of available languages was given in configure.ac.
- eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'
- fi
- case "$ac_given_srcdir" in
- .) srcdirpre= ;;
- *) srcdirpre='$(srcdir)/' ;;
- esac
- POFILES=
- GMOFILES=
- UPDATEPOFILES=
- DUMMYPOFILES=
- for lang in $ALL_LINGUAS; do
- POFILES="$POFILES $srcdirpre$lang.po"
- GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
- UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
- DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
- done
- # CATALOGS depends on both $ac_dir and the user's LINGUAS
- # environment variable.
- INST_LINGUAS=
- if test -n "$ALL_LINGUAS"; then
- for presentlang in $ALL_LINGUAS; do
- useit=no
- if test "%UNSET%" != "$LINGUAS"; then
- desiredlanguages="$LINGUAS"
- else
- desiredlanguages="$ALL_LINGUAS"
- fi
- for desiredlang in $desiredlanguages; do
- # Use the presentlang catalog if desiredlang is
- # a. equal to presentlang, or
- # b. a variant of presentlang (because in this case,
- # presentlang can be used as a fallback for messages
- # which are not translated in the desiredlang catalog).
- case "$desiredlang" in
- "$presentlang"*) useit=yes;;
- esac
- done
- if test $useit = yes; then
- INST_LINGUAS="$INST_LINGUAS $presentlang"
- fi
- done
- fi
- CATALOGS=
- if test -n "$INST_LINGUAS"; then
- for lang in $INST_LINGUAS; do
- CATALOGS="$CATALOGS $lang.gmo"
- done
- fi
- test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
- sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
- for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
- if test -f "$f"; then
- case "$f" in
- *.orig | *.bak | *~) ;;
- *) cat "$f" >> "$ac_dir/Makefile" ;;
- esac
- fi
- done
- fi
- ;;
- esac
- done ;;
-
- esac
-done # for ac_tag
-
-
-as_fn_exit 0
diff --git a/support/sdbinutils/config.status b/support/sdbinutils/config.status
deleted file mode 100755
index 97d1cf9..0000000
--- a/support/sdbinutils/config.status
+++ /dev/null
@@ -1,1103 +0,0 @@
-#! /bin/bash
-# Generated by configure.
-# Run this file to recreate the current configuration.
-# Compiler output produced by configure, useful for debugging
-# configure, is in config.log if it exists.
-
-debug=false
-ac_cs_recheck=false
-ac_cs_silent=false
-
-SHELL=${CONFIG_SHELL-/bin/bash}
-export SHELL
-## -------------------- ##
-## M4sh Initialization. ##
-## -------------------- ##
-
-# Be more Bourne compatible
-DUALCASE=1; export DUALCASE # for MKS sh
-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
- emulate sh
- NULLCMD=:
- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
- # is contrary to our usage. Disable this feature.
- alias -g '${1+"$@"}'='"$@"'
- setopt NO_GLOB_SUBST
-else
- case `(set -o) 2>/dev/null` in #(
- *posix*) :
- set -o posix ;; #(
- *) :
- ;;
-esac
-fi
-
-
-as_nl='
-'
-export as_nl
-# Printing a long string crashes Solaris 7 /usr/bin/printf.
-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
-# Prefer a ksh shell builtin over an external printf program on Solaris,
-# but without wasting forks for bash or zsh.
-if test -z "$BASH_VERSION$ZSH_VERSION" \
- && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='print -r --'
- as_echo_n='print -rn --'
-elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='printf %s\n'
- as_echo_n='printf %s'
-else
- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
- as_echo_n='/usr/ucb/echo -n'
- else
- as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
- as_echo_n_body='eval
- arg=$1;
- case $arg in #(
- *"$as_nl"*)
- expr "X$arg" : "X\\(.*\\)$as_nl";
- arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
- esac;
- expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
- '
- export as_echo_n_body
- as_echo_n='sh -c $as_echo_n_body as_echo'
- fi
- export as_echo_body
- as_echo='sh -c $as_echo_body as_echo'
-fi
-
-# The user is always right.
-if test "${PATH_SEPARATOR+set}" != set; then
- PATH_SEPARATOR=:
- (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
- (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
- PATH_SEPARATOR=';'
- }
-fi
-
-
-# IFS
-# We need space, tab and new line, in precisely that order. Quoting is
-# there to prevent editors from complaining about space-tab.
-# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-# splitting by setting IFS to empty value.)
-IFS=" "" $as_nl"
-
-# Find who we are. Look in the path if we contain no directory separator.
-case $0 in #((
- *[\\/]* ) as_myself=$0 ;;
- *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- done
-IFS=$as_save_IFS
-
- ;;
-esac
-# We did not find ourselves, most probably we were run as `sh COMMAND'
-# in which case we are not to be found in the path.
-if test "x$as_myself" = x; then
- as_myself=$0
-fi
-if test ! -f "$as_myself"; then
- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
- exit 1
-fi
-
-# Unset variables that we do not need and which cause bugs (e.g. in
-# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
-# suppresses any "Segmentation fault" message there. '((' could
-# trigger a bug in pdksh 5.2.14.
-for as_var in BASH_ENV ENV MAIL MAILPATH
-do eval test x\${$as_var+set} = xset \
- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
-done
-PS1='$ '
-PS2='> '
-PS4='+ '
-
-# NLS nuisances.
-LC_ALL=C
-export LC_ALL
-LANGUAGE=C
-export LANGUAGE
-
-# CDPATH.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-
-# as_fn_error ERROR [LINENO LOG_FD]
-# ---------------------------------
-# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with status $?, using 1 if that was 0.
-as_fn_error ()
-{
- as_status=$?; test $as_status -eq 0 && as_status=1
- if test "$3"; then
- as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
- fi
- $as_echo "$as_me: error: $1" >&2
- as_fn_exit $as_status
-} # as_fn_error
-
-
-# as_fn_set_status STATUS
-# -----------------------
-# Set $? to STATUS, without forking.
-as_fn_set_status ()
-{
- return $1
-} # as_fn_set_status
-
-# as_fn_exit STATUS
-# -----------------
-# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
-as_fn_exit ()
-{
- set +e
- as_fn_set_status $1
- exit $1
-} # as_fn_exit
-
-# as_fn_unset VAR
-# ---------------
-# Portably unset VAR.
-as_fn_unset ()
-{
- { eval $1=; unset $1;}
-}
-as_unset=as_fn_unset
-# as_fn_append VAR VALUE
-# ----------------------
-# Append the text in VALUE to the end of the definition contained in VAR. Take
-# advantage of any shell optimizations that allow amortized linear growth over
-# repeated appends, instead of the typical quadratic growth present in naive
-# implementations.
-if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
- eval 'as_fn_append ()
- {
- eval $1+=\$2
- }'
-else
- as_fn_append ()
- {
- eval $1=\$$1\$2
- }
-fi # as_fn_append
-
-# as_fn_arith ARG...
-# ------------------
-# Perform arithmetic evaluation on the ARGs, and store the result in the
-# global $as_val. Take advantage of shells that can avoid forks. The arguments
-# must be portable across $(()) and expr.
-if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
- eval 'as_fn_arith ()
- {
- as_val=$(( $* ))
- }'
-else
- as_fn_arith ()
- {
- as_val=`expr "$@" || test $? -eq 1`
- }
-fi # as_fn_arith
-
-
-if expr a : '\(a\)' >/dev/null 2>&1 &&
- test "X`expr 00001 : '.*\(...\)'`" = X001; then
- as_expr=expr
-else
- as_expr=false
-fi
-
-if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
- as_basename=basename
-else
- as_basename=false
-fi
-
-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
- as_dirname=dirname
-else
- as_dirname=false
-fi
-
-as_me=`$as_basename -- "$0" ||
-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
- X"$0" : 'X\(//\)$' \| \
- X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X/"$0" |
- sed '/^.*\/\([^/][^/]*\)\/*$/{
- s//\1/
- q
- }
- /^X\/\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\/\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
-
-# Avoid depending upon Character Ranges.
-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-as_cr_digits='0123456789'
-as_cr_alnum=$as_cr_Letters$as_cr_digits
-
-ECHO_C= ECHO_N= ECHO_T=
-case `echo -n x` in #(((((
--n*)
- case `echo 'xy\c'` in
- *c*) ECHO_T=' ';; # ECHO_T is single tab character.
- xy) ECHO_C='\c';;
- *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
- ECHO_T=' ';;
- esac;;
-*)
- ECHO_N='-n';;
-esac
-
-rm -f conf$$ conf$$.exe conf$$.file
-if test -d conf$$.dir; then
- rm -f conf$$.dir/conf$$.file
-else
- rm -f conf$$.dir
- mkdir conf$$.dir 2>/dev/null
-fi
-if (echo >conf$$.file) 2>/dev/null; then
- if ln -s conf$$.file conf$$ 2>/dev/null; then
- as_ln_s='ln -s'
- # ... but there are two gotchas:
- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
- # In both cases, we have to default to `cp -p'.
- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
- as_ln_s='cp -p'
- elif ln conf$$.file conf$$ 2>/dev/null; then
- as_ln_s=ln
- else
- as_ln_s='cp -p'
- fi
-else
- as_ln_s='cp -p'
-fi
-rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-rmdir conf$$.dir 2>/dev/null
-
-
-# as_fn_mkdir_p
-# -------------
-# Create "$as_dir" as a directory, including parents if necessary.
-as_fn_mkdir_p ()
-{
-
- case $as_dir in #(
- -*) as_dir=./$as_dir;;
- esac
- test -d "$as_dir" || eval $as_mkdir_p || {
- as_dirs=
- while :; do
- case $as_dir in #(
- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
- *) as_qdir=$as_dir;;
- esac
- as_dirs="'$as_qdir' $as_dirs"
- as_dir=`$as_dirname -- "$as_dir" ||
-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$as_dir" : 'X\(//\)[^/]' \| \
- X"$as_dir" : 'X\(//\)$' \| \
- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$as_dir" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- test -d "$as_dir" && break
- done
- test -z "$as_dirs" || eval "mkdir $as_dirs"
- } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
-
-
-} # as_fn_mkdir_p
-if mkdir -p . 2>/dev/null; then
- as_mkdir_p='mkdir -p "$as_dir"'
-else
- test -d ./-p && rmdir ./-p
- as_mkdir_p=false
-fi
-
-if test -x / >/dev/null 2>&1; then
- as_test_x='test -x'
-else
- if ls -dL / >/dev/null 2>&1; then
- as_ls_L_option=L
- else
- as_ls_L_option=
- fi
- as_test_x='
- eval sh -c '\''
- if test -d "$1"; then
- test -d "$1/.";
- else
- case $1 in #(
- -*)set "./$1";;
- esac;
- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
- ???[sx]*):;;*)false;;esac;fi
- '\'' sh
- '
-fi
-as_executable_p=$as_test_x
-
-# Sed expression to map a string onto a valid CPP name.
-as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-
-# Sed expression to map a string onto a valid variable name.
-as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-
-
-exec 6>&1
-## ----------------------------------- ##
-## Main body of $CONFIG_STATUS script. ##
-## ----------------------------------- ##
-# Save the log message, to keep $0 and so on meaningful, and to
-# report actual input values of CONFIG_FILES etc. instead of their
-# values after options handling.
-ac_log="
-This file was extended by $as_me, which was
-generated by GNU Autoconf 2.64. Invocation command line was
-
- CONFIG_FILES = $CONFIG_FILES
- CONFIG_HEADERS = $CONFIG_HEADERS
- CONFIG_LINKS = $CONFIG_LINKS
- CONFIG_COMMANDS = $CONFIG_COMMANDS
- $ $0 $@
-
-on `(hostname || uname -n) 2>/dev/null | sed 1q`
-"
-
-# Files that config.status was made for.
-config_files=" Makefile"
-
-ac_cs_usage="\
-\`$as_me' instantiates files and other configuration actions
-from templates according to the current configuration. Unless the files
-and actions are specified as TAGs, all are instantiated by default.
-
-Usage: $0 [OPTION]... [TAG]...
-
- -h, --help print this help, then exit
- -V, --version print version number and configuration settings, then exit
- -q, --quiet, --silent
- do not print progress messages
- -d, --debug don't remove temporary files
- --recheck update $as_me by reconfiguring in the same conditions
- --file=FILE[:TEMPLATE]
- instantiate the configuration file FILE
-
-Configuration files:
-$config_files
-
-Report bugs to the package provider."
-
-ac_cs_version="\
-config.status
-configured by ./configure, generated by GNU Autoconf 2.64,
- with options \"'--disable-option-checking' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' 'docdir=\${datarootdir}/doc/\${PACKAGE}' '--cache-file=/dev/null' '--srcdir=.'\"
-
-Copyright (C) 2009 Free Software Foundation, Inc.
-This config.status script is free software; the Free Software Foundation
-gives unlimited permission to copy, distribute and modify it."
-
-ac_pwd='/home/xavier/sdcc_gas/support/sdbinutils'
-srcdir='.'
-INSTALL='/usr/bin/install -c'
-AWK='gawk'
-test -n "$AWK" || AWK=awk
-# The default lists apply if the user does not specify any file.
-ac_need_defaults=:
-while test $# != 0
-do
- case $1 in
- --*=*)
- ac_option=`expr "X$1" : 'X\([^=]*\)='`
- ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
- ac_shift=:
- ;;
- *)
- ac_option=$1
- ac_optarg=$2
- ac_shift=shift
- ;;
- esac
-
- case $ac_option in
- # Handling of the options.
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
- ac_cs_recheck=: ;;
- --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
- $as_echo "$ac_cs_version"; exit ;;
- --debug | --debu | --deb | --de | --d | -d )
- debug=: ;;
- --file | --fil | --fi | --f )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- esac
- as_fn_append CONFIG_FILES " '$ac_optarg'"
- ac_need_defaults=false;;
- --he | --h | --help | --hel | -h )
- $as_echo "$ac_cs_usage"; exit ;;
- -q | -quiet | --quiet | --quie | --qui | --qu | --q \
- | -silent | --silent | --silen | --sile | --sil | --si | --s)
- ac_cs_silent=: ;;
-
- # This is an error.
- -*) as_fn_error "unrecognized option: \`$1'
-Try \`$0 --help' for more information." ;;
-
- *) as_fn_append ac_config_targets " $1"
- ac_need_defaults=false ;;
-
- esac
- shift
-done
-
-ac_configure_extra_args=
-
-if $ac_cs_silent; then
- exec 6>/dev/null
- ac_configure_extra_args="$ac_configure_extra_args --silent"
-fi
-
-if $ac_cs_recheck; then
- set X '/bin/bash' './configure' '--disable-option-checking' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' 'docdir=${datarootdir}/doc/${PACKAGE}' '--cache-file=/dev/null' '--srcdir=.' $ac_configure_extra_args --no-create --no-recursion
- shift
- $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
- CONFIG_SHELL='/bin/bash'
- export CONFIG_SHELL
- exec "$@"
-fi
-
-exec 5>>config.log
-{
- echo
- sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
-## Running $as_me. ##
-_ASBOX
- $as_echo "$ac_log"
-} >&5
-
-#
-# INIT-COMMANDS
-#
-extrasub_build="
-/^@if build-libiberty$/d
-/^@endif build-libiberty$/d
-/^@if build-libiberty-no-bootstrap$/d
-/^@endif build-libiberty-no-bootstrap$/d"
- extrasub_host="
-/^@if libiberty$/d
-/^@endif libiberty$/d
-/^@if libiberty-no-bootstrap$/d
-/^@endif libiberty-no-bootstrap$/d
-/^@if bfd$/d
-/^@endif bfd$/d
-/^@if bfd-no-bootstrap$/d
-/^@endif bfd-no-bootstrap$/d
-/^@if binutils$/d
-/^@endif binutils$/d
-/^@if binutils-no-bootstrap$/d
-/^@endif binutils-no-bootstrap$/d"
- extrasub_target="
-/^@if /,/^@endif /d"
-
-
-# Handling of arguments.
-for ac_config_target in $ac_config_targets
-do
- case $ac_config_target in
- "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
-
- *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
- esac
-done
-
-
-# If the user did not use the arguments to specify the items to instantiate,
-# then the envvar interface is used. Set only those that are not.
-# We use the long form for the default assignment because of an extremely
-# bizarre bug on SunOS 4.1.3.
-if $ac_need_defaults; then
- test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
-fi
-
-# Have a temporary directory for convenience. Make it in the build tree
-# simply because there is no reason against having it here, and in addition,
-# creating and moving files from /tmp can sometimes cause problems.
-# Hook for its removal unless debugging.
-# Note that there is a small window in which the directory will not be cleaned:
-# after its creation but before its name has been assigned to `$tmp'.
-$debug ||
-{
- tmp=
- trap 'exit_status=$?
- { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
-' 0
- trap 'as_fn_exit 1' 1 2 13 15
-}
-# Create a (secure) tmp directory for tmp files.
-
-{
- tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
- test -n "$tmp" && test -d "$tmp"
-} ||
-{
- tmp=./conf$$-$RANDOM
- (umask 077 && mkdir "$tmp")
-} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
-
-# Set up the scripts for CONFIG_FILES section.
-# No need to generate them if there are no CONFIG_FILES.
-# This happens for instance with `./config.status config.h'.
-if test -n "$CONFIG_FILES"; then
-
-if $AWK 'BEGIN { getline <"/dev/null" }' </dev/null 2>/dev/null; then
- ac_cs_awk_getline=:
- ac_cs_awk_pipe_init=
- ac_cs_awk_read_file='
- while ((getline aline < (F[key])) > 0)
- print(aline)
- close(F[key])'
- ac_cs_awk_pipe_fini=
-else
- ac_cs_awk_getline=false
- ac_cs_awk_pipe_init="print \"cat <<'|#_!!_#|' &&\""
- ac_cs_awk_read_file='
- print "|#_!!_#|"
- print "cat " F[key] " &&"
- '$ac_cs_awk_pipe_init
- # The final `:' finishes the AND list.
- ac_cs_awk_pipe_fini='END { print "|#_!!_#|"; print ":" }'
-fi
-ac_cr=`echo X | tr X '\015'`
-# On cygwin, bash can eat \r inside `` if the user requested igncr.
-# But we know of no other shell where ac_cr would be empty at this
-# point, so we can use a bashism as a fallback.
-if test "x$ac_cr" = x; then
- eval ac_cr=\$\'\\r\'
-fi
-ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
- ac_cs_awk_cr='\r'
-else
- ac_cs_awk_cr=$ac_cr
-fi
-
-echo 'BEGIN {' >"$tmp/subs1.awk" &&
-cat >>"$tmp/subs1.awk" <<\_ACAWK &&
-F["serialization_dependencies"]="serdep.tmp"
-F["host_makefile_frag"]="/dev/null"
-F["target_makefile_frag"]="./config/mt-gnu"
-F["alphaieee_frag"]="/dev/null"
-F["ospace_frag"]="/dev/null"
-_ACAWK
-cat >>"$tmp/subs1.awk" <<\_ACAWK &&
-S["LTLIBOBJS"]=""
-S["LIBOBJS"]=""
-S["compare_exclusions"]="gcc/cc*-checksum$(objext) | gcc/ada/*tools/*"
-S["stage2_werror_flag"]=""
-S["stage1_checking"]="--enable-checking=yes,types"
-S["stage1_cflags"]="-g"
-S["MAINT"]="#"
-S["MAINTAINER_MODE_FALSE"]=""
-S["MAINTAINER_MODE_TRUE"]="#"
-S["COMPILER_NM_FOR_TARGET"]="$(NM_FOR_TARGET)"
-S["COMPILER_LD_FOR_TARGET"]="$(LD_FOR_TARGET)"
-S["COMPILER_AS_FOR_TARGET"]="$(AS_FOR_TARGET)"
-S["FLAGS_FOR_TARGET"]=""
-S["RAW_CXX_FOR_TARGET"]="$(CXX)"
-S["WINDMC_FOR_TARGET"]="$$r/$(HOST_SUBDIR)/binutils/windmc"
-S["WINDRES_FOR_TARGET"]="$$r/$(HOST_SUBDIR)/binutils/windres"
-S["STRIP_FOR_TARGET"]="$$r/$(HOST_SUBDIR)/binutils/strip-new"
-S["READELF_FOR_TARGET"]="$$r/$(HOST_SUBDIR)/binutils/readelf"
-S["RANLIB_FOR_TARGET"]="$$r/$(HOST_SUBDIR)/binutils/ranlib"
-S["OBJDUMP_FOR_TARGET"]="$$r/$(HOST_SUBDIR)/binutils/objdump"
-S["OBJCOPY_FOR_TARGET"]="$$r/$(HOST_SUBDIR)/binutils/objcopy"
-S["NM_FOR_TARGET"]="$$r/$(HOST_SUBDIR)/binutils/nm-new"
-S["LIPO_FOR_TARGET"]="$(LIPO)"
-S["LD_FOR_TARGET"]="$(LD)"
-S["DLLTOOL_FOR_TARGET"]="$$r/$(HOST_SUBDIR)/binutils/dlltool"
-S["AS_FOR_TARGET"]="$(AS)"
-S["AR_FOR_TARGET"]="$$r/$(HOST_SUBDIR)/binutils/ar"
-S["GOC_FOR_TARGET"]="$(GOC)"
-S["GFORTRAN_FOR_TARGET"]="$(GFORTRAN)"
-S["GCC_FOR_TARGET"]="$()"
-S["CXX_FOR_TARGET"]="$(CXX)"
-S["CC_FOR_TARGET"]="$(CC)"
-S["READELF"]="readelf"
-S["OBJDUMP"]="objdump"
-S["OBJCOPY"]="objcopy"
-S["WINDMC"]="windmc"
-S["WINDRES"]="windres"
-S["STRIP"]="strip"
-S["RANLIB"]="ranlib"
-S["NM"]="nm"
-S["LIPO"]="lipo"
-S["LD"]="ld"
-S["DLLTOOL"]="dlltool"
-S["AS"]="as"
-S["AR"]="ar"
-S["RUNTEST"]="runtest"
-S["EXPECT"]="expect"
-S["MAKEINFO"]="makeinfo"
-S["FLEX"]="flex"
-S["LEX"]="flex"
-S["M4"]="m4"
-S["BISON"]="bison"
-S["YACC"]="bison -y"
-S["WINDRES_FOR_BUILD"]="$(WINDRES)"
-S["WINDMC_FOR_BUILD"]="$(WINDMC)"
-S["RANLIB_FOR_BUILD"]="$(RANLIB)"
-S["NM_FOR_BUILD"]="$(NM)"
-S["LD_FOR_BUILD"]="$(LD)"
-S["LDFLAGS_FOR_BUILD"]=""
-S["GOC_FOR_BUILD"]="$(GOC)"
-S["GFORTRAN_FOR_BUILD"]="$(GFORTRAN)"
-S["DLLTOOL_FOR_BUILD"]="$(DLLTOOL)"
-S["CXX_FOR_BUILD"]="$(CXX)"
-S["CXXFLAGS_FOR_BUILD"]="-g -O2"
-S["CFLAGS_FOR_BUILD"]="-g -O2"
-S["CC_FOR_BUILD"]="$(CC)"
-S["AS_FOR_BUILD"]="$(AS)"
-S["AR_FOR_BUILD"]="$(AR)"
-S["target_configdirs"]=""
-S["configdirs"]=" libiberty bfd binutils"
-S["build_configdirs"]=" libiberty"
-S["INSTALL_GDB_TK"]=""
-S["GDB_TK"]=""
-S["CONFIGURE_GDB_TK"]=""
-S["build_tooldir"]="${exec_prefix}/x86_64-pc-linux-gnu"
-S["tooldir"]="${exec_prefix}/x86_64-pc-linux-gnu"
-S["GCC_SHLIB_SUBDIR"]=""
-S["RPATH_ENVVAR"]="LD_LIBRARY_PATH"
-S["target_configargs"]="--cache-file=./config.cache --enable-multilib '--disable-option-checking' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--dis"\
-"able-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390"\
-"-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--dis"\
-"able-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '-"\
-"-cache-file=/dev/null' --program-transform-name='s,y,y,' --disable-option-checking"
-S["host_configargs"]=" --cache-file=./config.cache --with-system-zlib '--disable-option-checking' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--di"\
-"sable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds39"\
-"0-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--di"\
-"sable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '"\
-"--cache-file=/dev/null' --program-transform-name='s,y,y,' --disable-option-checking"
-S["build_configargs"]=" --cache-file=./config.cache '--disable-option-checking' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--"\
-"disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-d"\
-"s400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '-"\
-"-disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '--cache-file=/dev/nu"\
-"ll' --program-transform-name='s,y,y,' --disable-option-checking"
-S["BUILD_CONFIG"]=""
-S["LDFLAGS_FOR_TARGET"]=""
-S["CXXFLAGS_FOR_TARGET"]="-g -O2"
-S["CFLAGS_FOR_TARGET"]="-g -O2"
-S["DEBUG_PREFIX_CFLAGS_FOR_TARGET"]=""
-S["SYSROOT_CFLAGS_FOR_TARGET"]=""
-S["get_gcc_base_ver"]="cat"
-S["extra_host_zlib_configure_flags"]=""
-S["extra_host_libiberty_configure_flags"]=""
-S["stage1_languages"]=",c,"
-S["host_shared"]="no"
-S["extra_linker_plugin_flags"]=""
-S["extra_linker_plugin_configure_flags"]=""
-S["islinc"]=""
-S["isllibs"]=" -lisl"
-S["poststage1_ldflags"]="-static-libstdc++ -static-libgcc"
-S["poststage1_libs"]=""
-S["stage1_ldflags"]="-static-libstdc++ -static-libgcc"
-S["stage1_libs"]=""
-S["extra_isl_gmp_configure_flags"]=""
-S["extra_mpc_mpfr_configure_flags"]=""
-S["extra_mpc_gmp_configure_flags"]=""
-S["extra_mpfr_configure_flags"]=""
-S["gmpinc"]=""
-S["gmplibs"]="-lmpc -lmpfr -lgmp"
-S["do_compare"]="cmp --ignore-initial=16 $$f1 $$f2"
-S["GNATMAKE"]="no"
-S["GNATBIND"]="no"
-S["ac_ct_CXX"]="g++"
-S["CXXFLAGS"]="-g -O2"
-S["CXX"]="g++"
-S["OBJEXT"]="o"
-S["EXEEXT"]=""
-S["ac_ct_CC"]="gcc"
-S["CPPFLAGS"]=""
-S["LDFLAGS"]=""
-S["CFLAGS"]="-g -O2"
-S["CC"]="gcc"
-S["extra_liboffloadmic_configure_flags"]=""
-S["target_subdir"]="x86_64-pc-linux-gnu"
-S["host_subdir"]="."
-S["build_subdir"]="build-x86_64-pc-linux-gnu"
-S["build_libsubdir"]="build-x86_64-pc-linux-gnu"
-S["AWK"]="gawk"
-S["SED"]="/bin/sed"
-S["LN_S"]="ln -s"
-S["LN"]="ln"
-S["INSTALL_DATA"]="${INSTALL} -m 644"
-S["INSTALL_SCRIPT"]="${INSTALL}"
-S["INSTALL_PROGRAM"]="${INSTALL}"
-S["target_os"]="linux-gnu"
-S["target_vendor"]="pc"
-S["target_cpu"]="x86_64"
-S["target"]="x86_64-pc-linux-gnu"
-S["host_os"]="linux-gnu"
-S["host_vendor"]="pc"
-S["host_cpu"]="x86_64"
-S["host"]="x86_64-pc-linux-gnu"
-S["target_noncanonical"]="x86_64-pc-linux-gnu"
-S["host_noncanonical"]="x86_64-pc-linux-gnu"
-S["build_noncanonical"]="x86_64-pc-linux-gnu"
-S["build_os"]="linux-gnu"
-S["build_vendor"]="pc"
-S["build_cpu"]="x86_64"
-S["build"]="x86_64-pc-linux-gnu"
-S["TOPLEVEL_CONFIGURE_ARGUMENTS"]="./configure --disable-option-checking --prefix=/usr/local --disable-mcs51-port --disable-z80-port --disable-z180-port --disable-r2k-port --disable-r"\
-"3ka-port --disable-gbz80-port --disable-tlcs90-port --disable-ez80_z80-port --disable-ds390-port --disable-ds400-port --disable-pic14-port --disable"\
-"-pic16-port --disable-hc08-port --disable-s08-port --disable-pdk13-port --disable-pdk14-port --disable-pdk15-port --enable-pdk16-port --disable-ucsi"\
-"m --disable-device-lib --disable-packihx --disable-pdk16-port docdir='$${datarootdir}/doc/$${PACKAGE}' --cache-file=/dev/null --srcdir=."
-S["target_alias"]=""
-S["host_alias"]=""
-S["build_alias"]=""
-S["LIBS"]=""
-S["ECHO_T"]=""
-S["ECHO_N"]="-n"
-S["ECHO_C"]=""
-S["DEFS"]="-DPACKAGE_NAME=\\\"\\\" -DPACKAGE_TARNAME=\\\"\\\" -DPACKAGE_VERSION=\\\"\\\" -DPACKAGE_STRING=\\\"\\\" -DPACKAGE_BUGREPORT=\\\"\\\" -DPACKAGE_URL=\\\"\\\" -DLT_OBJDIR=\\\".l"\
-"ibs/\\\""
-S["mandir"]="${datarootdir}/man"
-S["localedir"]="${datarootdir}/locale"
-S["libdir"]="${exec_prefix}/lib"
-S["psdir"]="${docdir}"
-S["pdfdir"]="${docdir}"
-S["dvidir"]="${docdir}"
-S["htmldir"]="${docdir}"
-S["infodir"]="${datarootdir}/info"
-S["docdir"]="${datarootdir}/doc/${PACKAGE}"
-S["oldincludedir"]="/usr/include"
-S["includedir"]="${prefix}/include"
-S["localstatedir"]="${prefix}/var"
-S["sharedstatedir"]="${prefix}/com"
-S["sysconfdir"]="${prefix}/etc"
-S["datadir"]="${datarootdir}"
-S["datarootdir"]="${prefix}/share"
-S["libexecdir"]="${exec_prefix}/libexec"
-S["sbindir"]="${exec_prefix}/sbin"
-S["bindir"]="${exec_prefix}/bin"
-S["program_transform_name"]="s,y,y,"
-S["prefix"]="/usr/local"
-S["exec_prefix"]="${prefix}"
-S["PACKAGE_URL"]=""
-S["PACKAGE_BUGREPORT"]=""
-S["PACKAGE_STRING"]=""
-S["PACKAGE_VERSION"]=""
-S["PACKAGE_TARNAME"]=""
-S["PACKAGE_NAME"]=""
-S["PATH_SEPARATOR"]=":"
-S["SHELL"]="/bin/bash"
-_ACAWK
-cat >>"$tmp/subs1.awk" <<_ACAWK &&
- for (key in S) S_is_set[key] = 1
- FS = ""
- $ac_cs_awk_pipe_init
-}
-{
- line = $ 0
- nfields = split(line, field, "@")
- substed = 0
- len = length(field[1])
- for (i = 2; i < nfields; i++) {
- key = field[i]
- keylen = length(key)
- if (S_is_set[key]) {
- value = S[key]
- line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
- len += length(value) + length(field[++i])
- substed = 1
- } else
- len += 1 + keylen
- }
- if (nfields == 3 && !substed) {
- key = field[2]
- if (F[key] != "" && line ~ /^[ ]*@.*@[ ]*$/) {
- $ac_cs_awk_read_file
- next
- }
- }
- print line
-}
-$ac_cs_awk_pipe_fini
-_ACAWK
-if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
- sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
-else
- cat
-fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
- || as_fn_error "could not setup config files machinery" "$LINENO" 5
-fi # test -n "$CONFIG_FILES"
-
-
-eval set X " :F $CONFIG_FILES "
-shift
-for ac_tag
-do
- case $ac_tag in
- :[FHLC]) ac_mode=$ac_tag; continue;;
- esac
- case $ac_mode$ac_tag in
- :[FHL]*:*);;
- :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
- :[FH]-) ac_tag=-:-;;
- :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
- esac
- ac_save_IFS=$IFS
- IFS=:
- set x $ac_tag
- IFS=$ac_save_IFS
- shift
- ac_file=$1
- shift
-
- case $ac_mode in
- :L) ac_source=$1;;
- :[FH])
- ac_file_inputs=
- for ac_f
- do
- case $ac_f in
- -) ac_f="$tmp/stdin";;
- *) # Look for the file first in the build tree, then in the source tree
- # (if the path is not absolute). The absolute path cannot be DOS-style,
- # because $ac_f cannot contain `:'.
- test -f "$ac_f" ||
- case $ac_f in
- [\\/$]*) false;;
- *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
- esac ||
- as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
- esac
- case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
- as_fn_append ac_file_inputs " '$ac_f'"
- done
-
- # Let's still pretend it is `configure' which instantiates (i.e., don't
- # use $as_me), people would be surprised to read:
- # /* config.h. Generated by config.status. */
- configure_input='Generated from '`
- $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
- `' by configure.'
- if test x"$ac_file" != x-; then
- configure_input="$ac_file. $configure_input"
- { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
-$as_echo "$as_me: creating $ac_file" >&6;}
- fi
- # Neutralize special characters interpreted by sed in replacement strings.
- case $configure_input in #(
- *\&* | *\|* | *\\* )
- ac_sed_conf_input=`$as_echo "$configure_input" |
- sed 's/[\\\\&|]/\\\\&/g'`;; #(
- *) ac_sed_conf_input=$configure_input;;
- esac
-
- case $ac_tag in
- *:-:* | *:-) cat >"$tmp/stdin" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
- esac
- ;;
- esac
-
- ac_dir=`$as_dirname -- "$ac_file" ||
-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$ac_file" : 'X\(//\)[^/]' \| \
- X"$ac_file" : 'X\(//\)$' \| \
- X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$ac_file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- as_dir="$ac_dir"; as_fn_mkdir_p
- ac_builddir=.
-
-case "$ac_dir" in
-.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-*)
- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
- # A ".." for each directory in $ac_dir_suffix.
- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
- case $ac_top_builddir_sub in
- "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
- *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
- esac ;;
-esac
-ac_abs_top_builddir=$ac_pwd
-ac_abs_builddir=$ac_pwd$ac_dir_suffix
-# for backward compatibility:
-ac_top_builddir=$ac_top_build_prefix
-
-case $srcdir in
- .) # We are building in place.
- ac_srcdir=.
- ac_top_srcdir=$ac_top_builddir_sub
- ac_abs_top_srcdir=$ac_pwd ;;
- [\\/]* | ?:[\\/]* ) # Absolute name.
- ac_srcdir=$srcdir$ac_dir_suffix;
- ac_top_srcdir=$srcdir
- ac_abs_top_srcdir=$srcdir ;;
- *) # Relative name.
- ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
- ac_top_srcdir=$ac_top_build_prefix$srcdir
- ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-esac
-ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-
-
- case $ac_mode in
- :F)
- #
- # CONFIG_FILE
- #
-
- case $INSTALL in
- [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
- *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
- esac
-# If the template does not know about datarootdir, expand it.
-# FIXME: This hack should be removed a few years after 2.60.
-ac_datarootdir_hack=; ac_datarootdir_seen=
-ac_sed_dataroot='
-/datarootdir/ {
- p
- q
-}
-/@datadir@/p
-/@docdir@/p
-/@infodir@/p
-/@localedir@/p
-/@mandir@/p'
-case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
-*datarootdir*) ac_datarootdir_seen=yes;;
-*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
-$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
- ac_datarootdir_hack='
- s&@datadir@&${datarootdir}&g
- s&@docdir@&${datarootdir}/doc/${PACKAGE}&g
- s&@infodir@&${datarootdir}/info&g
- s&@localedir@&${datarootdir}/locale&g
- s&@mandir@&${datarootdir}/man&g
- s&\${datarootdir}&${prefix}/share&g' ;;
-esac
-ac_sed_extra="/^[ ]*VPATH[ ]*=/{
-s/:*\$(srcdir):*/:/
-s/:*\${srcdir}:*/:/
-s/:*@srcdir@:*/:/
-s/^\([^=]*=[ ]*\):*/\1/
-s/:*$//
-s/^[^=]*=[ ]*$//
-}
-
-:t
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-s|@configure_input@|$ac_sed_conf_input|;t t
-s&@top_builddir@&$ac_top_builddir_sub&;t t
-s&@top_build_prefix@&$ac_top_build_prefix&;t t
-s&@srcdir@&$ac_srcdir&;t t
-s&@abs_srcdir@&$ac_abs_srcdir&;t t
-s&@top_srcdir@&$ac_top_srcdir&;t t
-s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
-s&@builddir@&$ac_builddir&;t t
-s&@abs_builddir@&$ac_abs_builddir&;t t
-s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
-s&@INSTALL@&$ac_INSTALL&;t t
-$ac_datarootdir_hack
-"
-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" |
-if $ac_cs_awk_getline; then
- $AWK -f "$tmp/subs.awk"
-else
- $AWK -f "$tmp/subs.awk" | $SHELL
-fi >$tmp/out \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
-
-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
- { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined." >&5
-$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined." >&2;}
-
- rm -f "$tmp/stdin"
- case $ac_file in
- -) cat "$tmp/out" && rm -f "$tmp/out";;
- *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
- esac \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
- ;;
-
-
-
- esac
-
-
- case $ac_file$ac_mode in
- "Makefile":F) sed "$extrasub_build" Makefile |
- sed "$extrasub_host" |
- sed "$extrasub_target" > mf$$
- mv -f mf$$ Makefile ;;
-
- esac
-done # for ac_tag
-
-
-as_fn_exit 0
diff --git a/support/sdbinutils/libiberty/config.log b/support/sdbinutils/libiberty/config.log
deleted file mode 100644
index f95264e..0000000
--- a/support/sdbinutils/libiberty/config.log
+++ /dev/null
@@ -1,4310 +0,0 @@
-This file contains any messages produced by compilers while
-running configure, to aid debugging if configure makes a mistake.
-
-It was created by configure, which was
-generated by GNU Autoconf 2.64. Invocation command line was
-
- $ /home/xavier/sdcc_gas/support/sdbinutils/libiberty/configure --srcdir=.././libiberty --cache-file=./config.cache --with-system-zlib --disable-option-checking --prefix=/usr/local --disable-mcs51-port --disable-z80-port --disable-z180-port --disable-r2k-port --disable-r3ka-port --disable-gbz80-port --disable-tlcs90-port --disable-ez80_z80-port --disable-ds390-port --disable-ds400-port --disable-pic14-port --disable-pic16-port --disable-hc08-port --disable-s08-port --disable-pdk13-port --disable-pdk14-port --disable-pdk15-port --enable-pdk16-port --disable-ucsim --disable-device-lib --disable-packihx --disable-pdk16-port --cache-file=/dev/null --program-transform-name=s,y,y, --disable-option-checking --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --target=x86_64-pc-linux-gnu
-
-## --------- ##
-## Platform. ##
-## --------- ##
-
-hostname = xavier-asus
-uname -m = x86_64
-uname -r = 4.15.0-65-generic
-uname -s = Linux
-uname -v = #74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019
-
-/usr/bin/uname -p = unknown
-/bin/uname -X = unknown
-
-/bin/arch = unknown
-/usr/bin/arch -k = unknown
-/usr/convex/getsysinfo = unknown
-/usr/bin/hostinfo = unknown
-/bin/machine = unknown
-/usr/bin/oslevel = unknown
-/bin/universe = unknown
-
-PATH: /home/xavier/.cargo/bin
-PATH: /home/xavier/.local/bin
-PATH: /usr/local/sbin
-PATH: /usr/local/bin
-PATH: /usr/sbin
-PATH: /usr/bin
-PATH: /sbin
-PATH: /bin
-PATH: /usr/games
-PATH: /usr/local/games
-PATH: /snap/bin
-PATH: /usr/local/xtensa-esp32-elf/bin
-
-
-## ----------- ##
-## Core tests. ##
-## ----------- ##
-
-configure:2493: checking whether to enable maintainer-specific portions of Makefiles
-configure:2503: result: no
-configure:2518: checking for makeinfo
-configure:2545: result: makeinfo --split-size=5000000
-configure:2585: checking for perl
-configure:2601: found /usr/bin/perl
-configure:2612: result: perl
-configure:2631: checking build system type
-configure:2645: result: x86_64-pc-linux-gnu
-configure:2665: checking host system type
-configure:2678: result: x86_64-pc-linux-gnu
-configure:2703: checking for x86_64-pc-linux-gnu-ar
-configure:2730: result: ar
-configure:2795: checking for x86_64-pc-linux-gnu-ranlib
-configure:2822: result: ranlib
-configure:2907: checking whether to install libiberty headers and static library
-configure:2930: result: no
-configure:2932: target_header_dir =
-configure:2944: checking for x86_64-pc-linux-gnu-gcc
-configure:2971: result: gcc
-configure:3240: checking for C compiler version
-configure:3249: gcc --version >&5
-gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
-Copyright (C) 2017 Free Software Foundation, Inc.
-This is free software; see the source for copying conditions. There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-configure:3260: $? = 0
-configure:3249: gcc -v >&5
-Using built-in specs.
-COLLECT_GCC=gcc
-COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
-OFFLOAD_TARGET_NAMES=nvptx-none
-OFFLOAD_TARGET_DEFAULT=1
-Target: x86_64-linux-gnu
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
-Thread model: posix
-gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
-configure:3260: $? = 0
-configure:3249: gcc -V >&5
-gcc: error: unrecognized command line option '-V'
-gcc: fatal error: no input files
-compilation terminated.
-configure:3260: $? = 1
-configure:3249: gcc -qversion >&5
-gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
-gcc: fatal error: no input files
-compilation terminated.
-configure:3260: $? = 1
-configure:3276: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:3279: $? = 0
-configure:3308: checking for C compiler default output file name
-configure:3330: gcc -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:3334: $? = 0
-configure:3371: result: a.out
-configure:3387: checking whether the C compiler works
-configure:3396: ./a.out
-configure:3400: $? = 0
-configure:3415: result: yes
-configure:3422: checking whether we are cross compiling
-configure:3424: result: no
-configure:3427: checking for suffix of executables
-configure:3434: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:3438: $? = 0
-configure:3460: result:
-configure:3467: checking for suffix of object files
-configure:3489: gcc -c -g -O2 conftest.c >&5
-configure:3493: $? = 0
-configure:3514: result: o
-configure:3518: checking whether we are using the GNU C compiler
-configure:3537: gcc -c -g -O2 conftest.c >&5
-configure:3537: $? = 0
-configure:3546: result: yes
-configure:3555: checking whether gcc accepts -g
-configure:3575: gcc -c -g conftest.c >&5
-configure:3575: $? = 0
-configure:3616: result: yes
-configure:3633: checking for gcc option to accept ISO C89
-configure:3697: gcc -c -g -O2 conftest.c >&5
-configure:3697: $? = 0
-configure:3710: result: none needed
-configure:3736: checking how to run the C preprocessor
-configure:3767: gcc -E conftest.c
-configure:3767: $? = 0
-configure:3781: gcc -E conftest.c
-conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:3781: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:3806: result: gcc -E
-configure:3826: gcc -E conftest.c
-configure:3826: $? = 0
-configure:3840: gcc -E conftest.c
-conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:3840: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:3869: checking for grep that handles long lines and -e
-configure:3927: result: /bin/grep
-configure:3932: checking for egrep
-configure:3994: result: /bin/grep -E
-configure:3999: checking for ANSI C header files
-configure:4019: gcc -c -g -O2 conftest.c >&5
-configure:4019: $? = 0
-configure:4092: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:4092: $? = 0
-configure:4092: ./conftest
-configure:4092: $? = 0
-configure:4103: result: yes
-configure:4116: checking for sys/types.h
-configure:4116: gcc -c -g -O2 conftest.c >&5
-configure:4116: $? = 0
-configure:4116: result: yes
-configure:4116: checking for sys/stat.h
-configure:4116: gcc -c -g -O2 conftest.c >&5
-configure:4116: $? = 0
-configure:4116: result: yes
-configure:4116: checking for stdlib.h
-configure:4116: gcc -c -g -O2 conftest.c >&5
-configure:4116: $? = 0
-configure:4116: result: yes
-configure:4116: checking for string.h
-configure:4116: gcc -c -g -O2 conftest.c >&5
-configure:4116: $? = 0
-configure:4116: result: yes
-configure:4116: checking for memory.h
-configure:4116: gcc -c -g -O2 conftest.c >&5
-configure:4116: $? = 0
-configure:4116: result: yes
-configure:4116: checking for strings.h
-configure:4116: gcc -c -g -O2 conftest.c >&5
-configure:4116: $? = 0
-configure:4116: result: yes
-configure:4116: checking for inttypes.h
-configure:4116: gcc -c -g -O2 conftest.c >&5
-configure:4116: $? = 0
-configure:4116: result: yes
-configure:4116: checking for stdint.h
-configure:4116: gcc -c -g -O2 conftest.c >&5
-configure:4116: $? = 0
-configure:4116: result: yes
-configure:4116: checking for unistd.h
-configure:4116: gcc -c -g -O2 conftest.c >&5
-configure:4116: $? = 0
-configure:4116: result: yes
-configure:4130: checking minix/config.h usability
-configure:4130: gcc -c -g -O2 conftest.c >&5
-conftest.c:52:10: fatal error: minix/config.h: No such file or directory
- #include <minix/config.h>
- ^~~~~~~~~~~~~~~~
-compilation terminated.
-configure:4130: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| #include <minix/config.h>
-configure:4130: result: no
-configure:4130: checking minix/config.h presence
-configure:4130: gcc -E conftest.c
-conftest.c:19:10: fatal error: minix/config.h: No such file or directory
- #include <minix/config.h>
- ^~~~~~~~~~~~~~~~
-compilation terminated.
-configure:4130: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| /* end confdefs.h. */
-| #include <minix/config.h>
-configure:4130: result: no
-configure:4130: checking for minix/config.h
-configure:4130: result: no
-configure:4151: checking whether it is safe to define __EXTENSIONS__
-configure:4169: gcc -c -g -O2 conftest.c >&5
-configure:4169: $? = 0
-configure:4176: result: yes
-configure:4198: checking for special C compiler options needed for large files
-configure:4243: result: no
-configure:4249: checking for _FILE_OFFSET_BITS value needed for large files
-configure:4274: gcc -c -g -O2 conftest.c >&5
-configure:4274: $? = 0
-configure:4306: result: no
-configure:4411: checking whether gcc supports -W
-configure:4428: gcc -c -W conftest.c >&5
-configure:4428: $? = 0
-configure:4437: result: yes
-configure:4411: checking whether gcc supports -Wall
-configure:4428: gcc -c -Wall conftest.c >&5
-configure:4428: $? = 0
-configure:4437: result: yes
-configure:4411: checking whether gcc supports -Wwrite-strings
-configure:4428: gcc -c -Wwrite-strings conftest.c >&5
-configure:4428: $? = 0
-configure:4437: result: yes
-configure:4411: checking whether gcc supports -Wc++-compat
-configure:4428: gcc -c -Wc++-compat conftest.c >&5
-configure:4428: $? = 0
-configure:4437: result: yes
-configure:4411: checking whether gcc supports -Wstrict-prototypes
-configure:4428: gcc -c -Wstrict-prototypes conftest.c >&5
-conftest.c:26:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
- main ()
- ^~~~
-configure:4428: $? = 0
-configure:4437: result: yes
-configure:4411: checking whether gcc supports -Wshadow=local
-configure:4428: gcc -c -Wshadow=local conftest.c >&5
-configure:4428: $? = 0
-configure:4437: result: yes
-configure:4460: checking whether gcc supports -pedantic
-configure:4478: gcc -c -pedantic conftest.c >&5
-configure:4478: $? = 0
-configure:4486: result: yes
-configure:4502: checking whether gcc and cc understand -c and -o together
-configure:4533: gcc -c conftest.c -o conftest2.o >&5
-configure:4537: $? = 0
-configure:4543: gcc -c conftest.c -o conftest2.o >&5
-configure:4547: $? = 0
-configure:4558: cc -c conftest.c >&5
-configure:4562: $? = 0
-configure:4570: cc -c conftest.c -o conftest2.o >&5
-configure:4574: $? = 0
-configure:4580: cc -c conftest.c -o conftest2.o >&5
-configure:4584: $? = 0
-configure:4602: result: yes
-configure:4621: checking for an ANSI C-conforming const
-configure:4686: gcc -c -g -O2 conftest.c >&5
-configure:4686: $? = 0
-configure:4693: result: yes
-configure:4701: checking for inline
-configure:4717: gcc -c -g -O2 conftest.c >&5
-configure:4717: $? = 0
-configure:4725: result: inline
-configure:4743: checking whether byte ordering is bigendian
-configure:4758: gcc -c -g -O2 conftest.c >&5
-conftest.c:25:9: error: unknown type name 'not'
- not a universal capable compiler
- ^~~
-conftest.c:25:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
- not a universal capable compiler
- ^~~~~~~~~
-conftest.c:25:15: error: unknown type name 'universal'
-configure:4758: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| /* end confdefs.h. */
-| #ifndef __APPLE_CC__
-| not a universal capable compiler
-| #endif
-| typedef int dummy;
-|
-configure:4803: gcc -c -g -O2 conftest.c >&5
-configure:4803: $? = 0
-configure:4821: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:31:4: error: unknown type name 'not'; did you mean 'ino_t'?
- not big endian
- ^~~
- ino_t
-conftest.c:31:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
- not big endian
- ^~~~~~
-configure:4821: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| /* end confdefs.h. */
-| #include <sys/types.h>
-| #include <sys/param.h>
-|
-| int
-| main ()
-| {
-| #if BYTE_ORDER != BIG_ENDIAN
-| not big endian
-| #endif
-|
-| ;
-| return 0;
-| }
-configure:4949: result: no
-configure:4988: checking for a BSD-compatible install
-configure:5056: result: /usr/bin/install -c
-configure:5221: checking for sys/file.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for sys/param.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for limits.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for stdlib.h
-configure:5221: result: yes
-configure:5221: checking for malloc.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for string.h
-configure:5221: result: yes
-configure:5221: checking for unistd.h
-configure:5221: result: yes
-configure:5221: checking for strings.h
-configure:5221: result: yes
-configure:5221: checking for sys/time.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for time.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for sys/resource.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for sys/stat.h
-configure:5221: result: yes
-configure:5221: checking for sys/mman.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for fcntl.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for alloca.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for sys/pstat.h
-configure:5221: gcc -E conftest.c
-conftest.c:39:10: fatal error: sys/pstat.h: No such file or directory
- #include <sys/pstat.h>
- ^~~~~~~~~~~~~
-compilation terminated.
-configure:5221: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| /* end confdefs.h. */
-| #include <sys/pstat.h>
-configure:5221: result: no
-configure:5221: checking for sys/sysmp.h
-configure:5221: gcc -E conftest.c
-conftest.c:39:10: fatal error: sys/sysmp.h: No such file or directory
- #include <sys/sysmp.h>
- ^~~~~~~~~~~~~
-compilation terminated.
-configure:5221: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| /* end confdefs.h. */
-| #include <sys/sysmp.h>
-configure:5221: result: no
-configure:5221: checking for sys/sysinfo.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for machine/hal_sysinfo.h
-configure:5221: gcc -E conftest.c
-conftest.c:40:10: fatal error: machine/hal_sysinfo.h: No such file or directory
- #include <machine/hal_sysinfo.h>
- ^~~~~~~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:5221: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| /* end confdefs.h. */
-| #include <machine/hal_sysinfo.h>
-configure:5221: result: no
-configure:5221: checking for sys/table.h
-configure:5221: gcc -E conftest.c
-conftest.c:40:10: fatal error: sys/table.h: No such file or directory
- #include <sys/table.h>
- ^~~~~~~~~~~~~
-compilation terminated.
-configure:5221: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| /* end confdefs.h. */
-| #include <sys/table.h>
-configure:5221: result: no
-configure:5221: checking for sys/sysctl.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for sys/systemcfg.h
-configure:5221: gcc -E conftest.c
-conftest.c:41:10: fatal error: sys/systemcfg.h: No such file or directory
- #include <sys/systemcfg.h>
- ^~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:5221: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| /* end confdefs.h. */
-| #include <sys/systemcfg.h>
-configure:5221: result: no
-configure:5221: checking for stdint.h
-configure:5221: result: yes
-configure:5221: checking for stdio_ext.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5221: checking for process.h
-configure:5221: gcc -E conftest.c
-conftest.c:43:10: fatal error: process.h: No such file or directory
- #include <process.h>
- ^~~~~~~~~~~
-compilation terminated.
-configure:5221: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| /* end confdefs.h. */
-| #include <process.h>
-configure:5221: result: no
-configure:5221: checking for sys/prctl.h
-configure:5221: gcc -E conftest.c
-configure:5221: $? = 0
-configure:5221: result: yes
-configure:5231: checking for sys/wait.h that is POSIX.1 compatible
-configure:5257: gcc -c -g -O2 conftest.c >&5
-configure:5257: $? = 0
-configure:5264: result: yes
-configure:5272: checking whether time.h and sys/time.h may both be included
-configure:5292: gcc -c -g -O2 conftest.c >&5
-configure:5292: $? = 0
-configure:5299: result: yes
-configure:5308: checking whether errno must be declared
-configure:5324: gcc -c -g -O2 conftest.c >&5
-configure:5324: $? = 0
-configure:5331: result: no
-configure:5345: checking size of int
-configure:5350: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:5350: $? = 0
-configure:5350: ./conftest
-configure:5350: $? = 0
-configure:5365: result: 4
-configure:5379: checking size of long
-configure:5384: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:5384: $? = 0
-configure:5384: ./conftest
-configure:5384: $? = 0
-configure:5399: result: 8
-configure:5413: checking size of size_t
-configure:5418: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:5418: $? = 0
-configure:5418: ./conftest
-configure:5418: $? = 0
-configure:5433: result: 8
-configure:5445: checking for long long
-configure:5445: gcc -c -g -O2 conftest.c >&5
-configure:5445: $? = 0
-configure:5445: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:85:24: error: expected expression before ')' token
- if (sizeof ((long long)))
- ^
-configure:5445: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| int
-| main ()
-| {
-| if (sizeof ((long long)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:5445: result: yes
-configure:5453: checking size of long long
-configure:5458: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:5458: $? = 0
-configure:5458: ./conftest
-configure:5458: $? = 0
-configure:5473: result: 8
-configure:5487: checking for a 64-bit type
-configure:5505: gcc -c -g -O2 conftest.c >&5
-configure:5505: $? = 0
-configure:5555: result: uint64_t
-configure:5566: checking for intptr_t
-configure:5566: gcc -c -g -O2 conftest.c >&5
-configure:5566: $? = 0
-configure:5566: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:88:23: error: expected expression before ')' token
- if (sizeof ((intptr_t)))
- ^
-configure:5566: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| int
-| main ()
-| {
-| if (sizeof ((intptr_t)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:5566: result: yes
-configure:5601: checking for uintptr_t
-configure:5601: gcc -c -g -O2 conftest.c >&5
-configure:5601: $? = 0
-configure:5601: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:89:24: error: expected expression before ')' token
- if (sizeof ((uintptr_t)))
- ^
-configure:5601: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| int
-| main ()
-| {
-| if (sizeof ((uintptr_t)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:5601: result: yes
-configure:5636: checking for ssize_t
-configure:5636: gcc -c -g -O2 conftest.c >&5
-configure:5636: $? = 0
-configure:5636: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:90:22: error: expected expression before ')' token
- if (sizeof ((ssize_t)))
- ^
-configure:5636: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| int
-| main ()
-| {
-| if (sizeof ((ssize_t)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:5636: result: yes
-configure:5655: checking for pid_t
-configure:5655: gcc -c -g -O2 conftest.c >&5
-configure:5655: $? = 0
-configure:5655: gcc -c -g -O2 conftest.c >&5
-conftest.c: In function 'main':
-conftest.c:91:20: error: expected expression before ')' token
- if (sizeof ((pid_t)))
- ^
-configure:5655: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| int
-| main ()
-| {
-| if (sizeof ((pid_t)))
-| return 0;
-| ;
-| return 0;
-| }
-configure:5655: result: yes
-configure:6337: checking for library containing strerror
-configure:6371: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6371: $? = 0
-configure:6388: result: none required
-configure:6399: checking for asprintf
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for atexit
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for basename
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for bcmp
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:81:6: warning: conflicting types for built-in function 'bcmp' [-Wbuiltin-declaration-mismatch]
- char bcmp ();
- ^~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for bcopy
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:82:6: warning: conflicting types for built-in function 'bcopy' [-Wbuiltin-declaration-mismatch]
- char bcopy ();
- ^~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for bsearch
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for bzero
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:84:6: warning: conflicting types for built-in function 'bzero' [-Wbuiltin-declaration-mismatch]
- char bzero ();
- ^~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for calloc
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:85:6: warning: conflicting types for built-in function 'calloc' [-Wbuiltin-declaration-mismatch]
- char calloc ();
- ^~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for clock
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for ffs
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:87:6: warning: conflicting types for built-in function 'ffs' [-Wbuiltin-declaration-mismatch]
- char ffs ();
- ^~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for getcwd
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for getpagesize
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for gettimeofday
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for index
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:91:6: warning: conflicting types for built-in function 'index' [-Wbuiltin-declaration-mismatch]
- char index ();
- ^~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for insque
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for memchr
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:93:6: warning: conflicting types for built-in function 'memchr' [-Wbuiltin-declaration-mismatch]
- char memchr ();
- ^~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for memcmp
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:94:6: warning: conflicting types for built-in function 'memcmp' [-Wbuiltin-declaration-mismatch]
- char memcmp ();
- ^~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for memcpy
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:95:6: warning: conflicting types for built-in function 'memcpy' [-Wbuiltin-declaration-mismatch]
- char memcpy ();
- ^~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for memmem
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for memmove
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:97:6: warning: conflicting types for built-in function 'memmove' [-Wbuiltin-declaration-mismatch]
- char memmove ();
- ^~~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for mempcpy
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:98:6: warning: conflicting types for built-in function 'mempcpy' [-Wbuiltin-declaration-mismatch]
- char mempcpy ();
- ^~~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for memset
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:99:6: warning: conflicting types for built-in function 'memset' [-Wbuiltin-declaration-mismatch]
- char memset ();
- ^~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for mkstemps
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for putenv
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for random
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for rename
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for rindex
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:104:6: warning: conflicting types for built-in function 'rindex' [-Wbuiltin-declaration-mismatch]
- char rindex ();
- ^~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for setenv
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for snprintf
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:106:6: warning: conflicting types for built-in function 'snprintf' [-Wbuiltin-declaration-mismatch]
- char snprintf ();
- ^~~~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for sigsetmask
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for stpcpy
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:108:6: warning: conflicting types for built-in function 'stpcpy' [-Wbuiltin-declaration-mismatch]
- char stpcpy ();
- ^~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for stpncpy
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:109:6: warning: conflicting types for built-in function 'stpncpy' [-Wbuiltin-declaration-mismatch]
- char stpncpy ();
- ^~~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strcasecmp
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:110:6: warning: conflicting types for built-in function 'strcasecmp' [-Wbuiltin-declaration-mismatch]
- char strcasecmp ();
- ^~~~~~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strchr
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:111:6: warning: conflicting types for built-in function 'strchr' [-Wbuiltin-declaration-mismatch]
- char strchr ();
- ^~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strdup
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:112:6: warning: conflicting types for built-in function 'strdup' [-Wbuiltin-declaration-mismatch]
- char strdup ();
- ^~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strncasecmp
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:113:6: warning: conflicting types for built-in function 'strncasecmp' [-Wbuiltin-declaration-mismatch]
- char strncasecmp ();
- ^~~~~~~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strndup
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:114:6: warning: conflicting types for built-in function 'strndup' [-Wbuiltin-declaration-mismatch]
- char strndup ();
- ^~~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strnlen
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strrchr
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:116:6: warning: conflicting types for built-in function 'strrchr' [-Wbuiltin-declaration-mismatch]
- char strrchr ();
- ^~~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strstr
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:117:6: warning: conflicting types for built-in function 'strstr' [-Wbuiltin-declaration-mismatch]
- char strstr ();
- ^~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strtod
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strtol
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strtoul
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strtoll
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strtoull
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for strverscmp
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for tmpnam
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/ccorncyS.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/libiberty/conftest.c:135: warning: the use of `tmpnam' is dangerous, better use `mkstemp'
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for vasprintf
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for vfprintf
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:126:6: warning: conflicting types for built-in function 'vfprintf' [-Wbuiltin-declaration-mismatch]
- char vfprintf ();
- ^~~~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for vprintf
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:127:6: warning: conflicting types for built-in function 'vprintf' [-Wbuiltin-declaration-mismatch]
- char vprintf ();
- ^~~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for vsnprintf
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:128:6: warning: conflicting types for built-in function 'vsnprintf' [-Wbuiltin-declaration-mismatch]
- char vsnprintf ();
- ^~~~~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for vsprintf
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:129:6: warning: conflicting types for built-in function 'vsprintf' [-Wbuiltin-declaration-mismatch]
- char vsprintf ();
- ^~~~~~~~
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for waitpid
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6399: $? = 0
-configure:6399: result: yes
-configure:6399: checking for setproctitle
-configure:6399: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/ccQHV6r6.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/libiberty/conftest.c:142: undefined reference to `setproctitle'
-collect2: error: ld returned 1 exit status
-configure:6399: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_ASPRINTF 1
-| #define HAVE_ATEXIT 1
-| #define HAVE_BASENAME 1
-| #define HAVE_BCMP 1
-| #define HAVE_BCOPY 1
-| #define HAVE_BSEARCH 1
-| #define HAVE_BZERO 1
-| #define HAVE_CALLOC 1
-| #define HAVE_CLOCK 1
-| #define HAVE_FFS 1
-| #define HAVE_GETCWD 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_INDEX 1
-| #define HAVE_INSQUE 1
-| #define HAVE_MEMCHR 1
-| #define HAVE_MEMCMP 1
-| #define HAVE_MEMCPY 1
-| #define HAVE_MEMMEM 1
-| #define HAVE_MEMMOVE 1
-| #define HAVE_MEMPCPY 1
-| #define HAVE_MEMSET 1
-| #define HAVE_MKSTEMPS 1
-| #define HAVE_PUTENV 1
-| #define HAVE_RANDOM 1
-| #define HAVE_RENAME 1
-| #define HAVE_RINDEX 1
-| #define HAVE_SETENV 1
-| #define HAVE_SNPRINTF 1
-| #define HAVE_SIGSETMASK 1
-| #define HAVE_STPCPY 1
-| #define HAVE_STPNCPY 1
-| #define HAVE_STRCASECMP 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRDUP 1
-| #define HAVE_STRNCASECMP 1
-| #define HAVE_STRNDUP 1
-| #define HAVE_STRNLEN 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_STRSTR 1
-| #define HAVE_STRTOD 1
-| #define HAVE_STRTOL 1
-| #define HAVE_STRTOUL 1
-| #define HAVE_STRTOLL 1
-| #define HAVE_STRTOULL 1
-| #define HAVE_STRVERSCMP 1
-| #define HAVE_TMPNAM 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_VFPRINTF 1
-| #define HAVE_VPRINTF 1
-| #define HAVE_VSNPRINTF 1
-| #define HAVE_VSPRINTF 1
-| #define HAVE_WAITPID 1
-| /* end confdefs.h. */
-| /* Define setproctitle to an innocuous variant, in case <limits.h> declares setproctitle.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define setproctitle innocuous_setproctitle
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char setproctitle (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef setproctitle
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char setproctitle ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_setproctitle || defined __stub___setproctitle
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return setproctitle ();
-| ;
-| return 0;
-| }
-configure:6399: result: no
-configure:6417: checking whether alloca needs Cray hooks
-configure:6440: result: no
-configure:6458: checking stack direction for C alloca
-configure:6485: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:108:1: warning: return type defaults to 'int' [-Wimplicit-int]
- find_stack_direction ()
- ^~~~~~~~~~~~~~~~~~~~
-conftest.c:120:1: warning: return type defaults to 'int' [-Wimplicit-int]
- main ()
- ^~~~
-conftest.c: In function 'main':
-conftest.c:122:3: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
- exit (find_stack_direction() < 0);
- ^~~~
-conftest.c:122:3: warning: incompatible implicit declaration of built-in function 'exit'
-conftest.c:122:3: note: include '<stdlib.h>' or provide a declaration of 'exit'
-configure:6485: $? = 0
-configure:6485: ./conftest
-configure:6485: $? = 1
-configure: program exited with status 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_ASPRINTF 1
-| #define HAVE_ATEXIT 1
-| #define HAVE_BASENAME 1
-| #define HAVE_BCMP 1
-| #define HAVE_BCOPY 1
-| #define HAVE_BSEARCH 1
-| #define HAVE_BZERO 1
-| #define HAVE_CALLOC 1
-| #define HAVE_CLOCK 1
-| #define HAVE_FFS 1
-| #define HAVE_GETCWD 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_INDEX 1
-| #define HAVE_INSQUE 1
-| #define HAVE_MEMCHR 1
-| #define HAVE_MEMCMP 1
-| #define HAVE_MEMCPY 1
-| #define HAVE_MEMMEM 1
-| #define HAVE_MEMMOVE 1
-| #define HAVE_MEMPCPY 1
-| #define HAVE_MEMSET 1
-| #define HAVE_MKSTEMPS 1
-| #define HAVE_PUTENV 1
-| #define HAVE_RANDOM 1
-| #define HAVE_RENAME 1
-| #define HAVE_RINDEX 1
-| #define HAVE_SETENV 1
-| #define HAVE_SNPRINTF 1
-| #define HAVE_SIGSETMASK 1
-| #define HAVE_STPCPY 1
-| #define HAVE_STPNCPY 1
-| #define HAVE_STRCASECMP 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRDUP 1
-| #define HAVE_STRNCASECMP 1
-| #define HAVE_STRNDUP 1
-| #define HAVE_STRNLEN 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_STRSTR 1
-| #define HAVE_STRTOD 1
-| #define HAVE_STRTOL 1
-| #define HAVE_STRTOUL 1
-| #define HAVE_STRTOLL 1
-| #define HAVE_STRTOULL 1
-| #define HAVE_STRVERSCMP 1
-| #define HAVE_TMPNAM 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_VFPRINTF 1
-| #define HAVE_VPRINTF 1
-| #define HAVE_VSNPRINTF 1
-| #define HAVE_VSPRINTF 1
-| #define HAVE_WAITPID 1
-| /* end confdefs.h. */
-| find_stack_direction ()
-| {
-| static char *addr = 0;
-| auto char dummy;
-| if (addr == 0)
-| {
-| addr = &dummy;
-| return find_stack_direction ();
-| }
-| else
-| return (&dummy > addr) ? 1 : -1;
-| }
-| main ()
-| {
-| exit (find_stack_direction() < 0);
-| }
-configure:6495: result: -1
-configure:6505: checking for vfork.h
-configure:6505: gcc -E conftest.c
-conftest.c:109:10: fatal error: vfork.h: No such file or directory
- #include <vfork.h>
- ^~~~~~~~~
-compilation terminated.
-configure:6505: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_ASPRINTF 1
-| #define HAVE_ATEXIT 1
-| #define HAVE_BASENAME 1
-| #define HAVE_BCMP 1
-| #define HAVE_BCOPY 1
-| #define HAVE_BSEARCH 1
-| #define HAVE_BZERO 1
-| #define HAVE_CALLOC 1
-| #define HAVE_CLOCK 1
-| #define HAVE_FFS 1
-| #define HAVE_GETCWD 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_INDEX 1
-| #define HAVE_INSQUE 1
-| #define HAVE_MEMCHR 1
-| #define HAVE_MEMCMP 1
-| #define HAVE_MEMCPY 1
-| #define HAVE_MEMMEM 1
-| #define HAVE_MEMMOVE 1
-| #define HAVE_MEMPCPY 1
-| #define HAVE_MEMSET 1
-| #define HAVE_MKSTEMPS 1
-| #define HAVE_PUTENV 1
-| #define HAVE_RANDOM 1
-| #define HAVE_RENAME 1
-| #define HAVE_RINDEX 1
-| #define HAVE_SETENV 1
-| #define HAVE_SNPRINTF 1
-| #define HAVE_SIGSETMASK 1
-| #define HAVE_STPCPY 1
-| #define HAVE_STPNCPY 1
-| #define HAVE_STRCASECMP 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRDUP 1
-| #define HAVE_STRNCASECMP 1
-| #define HAVE_STRNDUP 1
-| #define HAVE_STRNLEN 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_STRSTR 1
-| #define HAVE_STRTOD 1
-| #define HAVE_STRTOL 1
-| #define HAVE_STRTOUL 1
-| #define HAVE_STRTOLL 1
-| #define HAVE_STRTOULL 1
-| #define HAVE_STRVERSCMP 1
-| #define HAVE_TMPNAM 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_VFPRINTF 1
-| #define HAVE_VPRINTF 1
-| #define HAVE_VSNPRINTF 1
-| #define HAVE_VSPRINTF 1
-| #define HAVE_WAITPID 1
-| #define STACK_DIRECTION -1
-| /* end confdefs.h. */
-| #include <vfork.h>
-configure:6505: result: no
-configure:6517: checking for fork
-configure:6517: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:132:6: warning: conflicting types for built-in function 'fork' [-Wbuiltin-declaration-mismatch]
- char fork ();
- ^~~~
-configure:6517: $? = 0
-configure:6517: result: yes
-configure:6517: checking for vfork
-configure:6517: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6517: $? = 0
-configure:6517: result: yes
-configure:6528: checking for working fork
-configure:6550: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6550: $? = 0
-configure:6550: ./conftest
-configure:6550: $? = 0
-configure:6560: result: yes
-configure:6581: checking for working vfork
-configure:6691: result: yes
-configure:6750: checking for _doprnt
-configure:6750: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/ccFf3YAq.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/libiberty/conftest.c:147: undefined reference to `_doprnt'
-collect2: error: ld returned 1 exit status
-configure:6750: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_ASPRINTF 1
-| #define HAVE_ATEXIT 1
-| #define HAVE_BASENAME 1
-| #define HAVE_BCMP 1
-| #define HAVE_BCOPY 1
-| #define HAVE_BSEARCH 1
-| #define HAVE_BZERO 1
-| #define HAVE_CALLOC 1
-| #define HAVE_CLOCK 1
-| #define HAVE_FFS 1
-| #define HAVE_GETCWD 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_INDEX 1
-| #define HAVE_INSQUE 1
-| #define HAVE_MEMCHR 1
-| #define HAVE_MEMCMP 1
-| #define HAVE_MEMCPY 1
-| #define HAVE_MEMMEM 1
-| #define HAVE_MEMMOVE 1
-| #define HAVE_MEMPCPY 1
-| #define HAVE_MEMSET 1
-| #define HAVE_MKSTEMPS 1
-| #define HAVE_PUTENV 1
-| #define HAVE_RANDOM 1
-| #define HAVE_RENAME 1
-| #define HAVE_RINDEX 1
-| #define HAVE_SETENV 1
-| #define HAVE_SNPRINTF 1
-| #define HAVE_SIGSETMASK 1
-| #define HAVE_STPCPY 1
-| #define HAVE_STPNCPY 1
-| #define HAVE_STRCASECMP 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRDUP 1
-| #define HAVE_STRNCASECMP 1
-| #define HAVE_STRNDUP 1
-| #define HAVE_STRNLEN 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_STRSTR 1
-| #define HAVE_STRTOD 1
-| #define HAVE_STRTOL 1
-| #define HAVE_STRTOUL 1
-| #define HAVE_STRTOLL 1
-| #define HAVE_STRTOULL 1
-| #define HAVE_STRVERSCMP 1
-| #define HAVE_TMPNAM 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_VFPRINTF 1
-| #define HAVE_VPRINTF 1
-| #define HAVE_VSNPRINTF 1
-| #define HAVE_VSPRINTF 1
-| #define HAVE_WAITPID 1
-| #define STACK_DIRECTION -1
-| #define HAVE_FORK 1
-| #define HAVE_VFORK 1
-| #define HAVE_WORKING_VFORK 1
-| #define HAVE_WORKING_FORK 1
-| /* end confdefs.h. */
-| /* Define _doprnt to an innocuous variant, in case <limits.h> declares _doprnt.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define _doprnt innocuous__doprnt
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char _doprnt (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef _doprnt
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char _doprnt ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub__doprnt || defined __stub____doprnt
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return _doprnt ();
-| ;
-| return 0;
-| }
-configure:6750: result: no
-configure:6762: checking for sys_errlist
-configure:6781: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/cc4L6P1v.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/libiberty/conftest.c:117: warning: `sys_errlist' is deprecated; use `strerror' or `strerror_r' instead
-configure:6781: $? = 0
-configure:6791: result: yes
-configure:6762: checking for sys_nerr
-configure:6781: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/ccBGIFQx.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/libiberty/conftest.c:118: warning: `sys_nerr' is deprecated; use `strerror' or `strerror_r' instead
-configure:6781: $? = 0
-configure:6791: result: yes
-configure:6762: checking for sys_siglist
-configure:6781: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6781: $? = 0
-configure:6791: result: yes
-configure:6806: checking for external symbol _system_configuration
-configure:6819: gcc -c -g -O2 conftest.c >&5
-conftest.c:116:10: fatal error: sys/systemcfg.h: No such file or directory
- #include <sys/systemcfg.h>
- ^~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:6819: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_ASPRINTF 1
-| #define HAVE_ATEXIT 1
-| #define HAVE_BASENAME 1
-| #define HAVE_BCMP 1
-| #define HAVE_BCOPY 1
-| #define HAVE_BSEARCH 1
-| #define HAVE_BZERO 1
-| #define HAVE_CALLOC 1
-| #define HAVE_CLOCK 1
-| #define HAVE_FFS 1
-| #define HAVE_GETCWD 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_INDEX 1
-| #define HAVE_INSQUE 1
-| #define HAVE_MEMCHR 1
-| #define HAVE_MEMCMP 1
-| #define HAVE_MEMCPY 1
-| #define HAVE_MEMMEM 1
-| #define HAVE_MEMMOVE 1
-| #define HAVE_MEMPCPY 1
-| #define HAVE_MEMSET 1
-| #define HAVE_MKSTEMPS 1
-| #define HAVE_PUTENV 1
-| #define HAVE_RANDOM 1
-| #define HAVE_RENAME 1
-| #define HAVE_RINDEX 1
-| #define HAVE_SETENV 1
-| #define HAVE_SNPRINTF 1
-| #define HAVE_SIGSETMASK 1
-| #define HAVE_STPCPY 1
-| #define HAVE_STPNCPY 1
-| #define HAVE_STRCASECMP 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRDUP 1
-| #define HAVE_STRNCASECMP 1
-| #define HAVE_STRNDUP 1
-| #define HAVE_STRNLEN 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_STRSTR 1
-| #define HAVE_STRTOD 1
-| #define HAVE_STRTOL 1
-| #define HAVE_STRTOUL 1
-| #define HAVE_STRTOLL 1
-| #define HAVE_STRTOULL 1
-| #define HAVE_STRVERSCMP 1
-| #define HAVE_TMPNAM 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_VFPRINTF 1
-| #define HAVE_VPRINTF 1
-| #define HAVE_VSNPRINTF 1
-| #define HAVE_VSPRINTF 1
-| #define HAVE_WAITPID 1
-| #define STACK_DIRECTION -1
-| #define HAVE_FORK 1
-| #define HAVE_VFORK 1
-| #define HAVE_WORKING_VFORK 1
-| #define HAVE_WORKING_FORK 1
-| #define HAVE_SYS_ERRLIST 1
-| #define HAVE_SYS_NERR 1
-| #define HAVE_SYS_SIGLIST 1
-| /* end confdefs.h. */
-| #include <sys/systemcfg.h>
-| int
-| main ()
-| {
-| double x = _system_configuration.physmem;
-| ;
-| return 0;
-| }
-configure:6826: result: no
-configure:6834: checking for __fsetlocking
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for canonicalize_file_name
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for dup3
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for getrlimit
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for getrusage
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for getsysinfo
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/cc1JovIX.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/libiberty/conftest.c:155: undefined reference to `getsysinfo'
-collect2: error: ld returned 1 exit status
-configure:6834: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_ASPRINTF 1
-| #define HAVE_ATEXIT 1
-| #define HAVE_BASENAME 1
-| #define HAVE_BCMP 1
-| #define HAVE_BCOPY 1
-| #define HAVE_BSEARCH 1
-| #define HAVE_BZERO 1
-| #define HAVE_CALLOC 1
-| #define HAVE_CLOCK 1
-| #define HAVE_FFS 1
-| #define HAVE_GETCWD 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_INDEX 1
-| #define HAVE_INSQUE 1
-| #define HAVE_MEMCHR 1
-| #define HAVE_MEMCMP 1
-| #define HAVE_MEMCPY 1
-| #define HAVE_MEMMEM 1
-| #define HAVE_MEMMOVE 1
-| #define HAVE_MEMPCPY 1
-| #define HAVE_MEMSET 1
-| #define HAVE_MKSTEMPS 1
-| #define HAVE_PUTENV 1
-| #define HAVE_RANDOM 1
-| #define HAVE_RENAME 1
-| #define HAVE_RINDEX 1
-| #define HAVE_SETENV 1
-| #define HAVE_SNPRINTF 1
-| #define HAVE_SIGSETMASK 1
-| #define HAVE_STPCPY 1
-| #define HAVE_STPNCPY 1
-| #define HAVE_STRCASECMP 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRDUP 1
-| #define HAVE_STRNCASECMP 1
-| #define HAVE_STRNDUP 1
-| #define HAVE_STRNLEN 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_STRSTR 1
-| #define HAVE_STRTOD 1
-| #define HAVE_STRTOL 1
-| #define HAVE_STRTOUL 1
-| #define HAVE_STRTOLL 1
-| #define HAVE_STRTOULL 1
-| #define HAVE_STRVERSCMP 1
-| #define HAVE_TMPNAM 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_VFPRINTF 1
-| #define HAVE_VPRINTF 1
-| #define HAVE_VSNPRINTF 1
-| #define HAVE_VSPRINTF 1
-| #define HAVE_WAITPID 1
-| #define STACK_DIRECTION -1
-| #define HAVE_FORK 1
-| #define HAVE_VFORK 1
-| #define HAVE_WORKING_VFORK 1
-| #define HAVE_WORKING_FORK 1
-| #define HAVE_SYS_ERRLIST 1
-| #define HAVE_SYS_NERR 1
-| #define HAVE_SYS_SIGLIST 1
-| #define HAVE___FSETLOCKING 1
-| #define HAVE_CANONICALIZE_FILE_NAME 1
-| #define HAVE_DUP3 1
-| #define HAVE_GETRLIMIT 1
-| #define HAVE_GETRUSAGE 1
-| /* end confdefs.h. */
-| /* Define getsysinfo to an innocuous variant, in case <limits.h> declares getsysinfo.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define getsysinfo innocuous_getsysinfo
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char getsysinfo (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef getsysinfo
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char getsysinfo ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_getsysinfo || defined __stub___getsysinfo
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return getsysinfo ();
-| ;
-| return 0;
-| }
-configure:6834: result: no
-configure:6834: checking for gettimeofday
-configure:6834: result: yes
-configure:6834: checking for on_exit
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for psignal
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for pstat_getdynamic
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/cc340Ilb.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/libiberty/conftest.c:158: undefined reference to `pstat_getdynamic'
-collect2: error: ld returned 1 exit status
-configure:6834: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_ASPRINTF 1
-| #define HAVE_ATEXIT 1
-| #define HAVE_BASENAME 1
-| #define HAVE_BCMP 1
-| #define HAVE_BCOPY 1
-| #define HAVE_BSEARCH 1
-| #define HAVE_BZERO 1
-| #define HAVE_CALLOC 1
-| #define HAVE_CLOCK 1
-| #define HAVE_FFS 1
-| #define HAVE_GETCWD 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_INDEX 1
-| #define HAVE_INSQUE 1
-| #define HAVE_MEMCHR 1
-| #define HAVE_MEMCMP 1
-| #define HAVE_MEMCPY 1
-| #define HAVE_MEMMEM 1
-| #define HAVE_MEMMOVE 1
-| #define HAVE_MEMPCPY 1
-| #define HAVE_MEMSET 1
-| #define HAVE_MKSTEMPS 1
-| #define HAVE_PUTENV 1
-| #define HAVE_RANDOM 1
-| #define HAVE_RENAME 1
-| #define HAVE_RINDEX 1
-| #define HAVE_SETENV 1
-| #define HAVE_SNPRINTF 1
-| #define HAVE_SIGSETMASK 1
-| #define HAVE_STPCPY 1
-| #define HAVE_STPNCPY 1
-| #define HAVE_STRCASECMP 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRDUP 1
-| #define HAVE_STRNCASECMP 1
-| #define HAVE_STRNDUP 1
-| #define HAVE_STRNLEN 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_STRSTR 1
-| #define HAVE_STRTOD 1
-| #define HAVE_STRTOL 1
-| #define HAVE_STRTOUL 1
-| #define HAVE_STRTOLL 1
-| #define HAVE_STRTOULL 1
-| #define HAVE_STRVERSCMP 1
-| #define HAVE_TMPNAM 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_VFPRINTF 1
-| #define HAVE_VPRINTF 1
-| #define HAVE_VSNPRINTF 1
-| #define HAVE_VSPRINTF 1
-| #define HAVE_WAITPID 1
-| #define STACK_DIRECTION -1
-| #define HAVE_FORK 1
-| #define HAVE_VFORK 1
-| #define HAVE_WORKING_VFORK 1
-| #define HAVE_WORKING_FORK 1
-| #define HAVE_SYS_ERRLIST 1
-| #define HAVE_SYS_NERR 1
-| #define HAVE_SYS_SIGLIST 1
-| #define HAVE___FSETLOCKING 1
-| #define HAVE_CANONICALIZE_FILE_NAME 1
-| #define HAVE_DUP3 1
-| #define HAVE_GETRLIMIT 1
-| #define HAVE_GETRUSAGE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_ON_EXIT 1
-| #define HAVE_PSIGNAL 1
-| /* end confdefs.h. */
-| /* Define pstat_getdynamic to an innocuous variant, in case <limits.h> declares pstat_getdynamic.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define pstat_getdynamic innocuous_pstat_getdynamic
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char pstat_getdynamic (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef pstat_getdynamic
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char pstat_getdynamic ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_pstat_getdynamic || defined __stub___pstat_getdynamic
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return pstat_getdynamic ();
-| ;
-| return 0;
-| }
-configure:6834: result: no
-configure:6834: checking for pstat_getstatic
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/ccl0EJW4.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/libiberty/conftest.c:158: undefined reference to `pstat_getstatic'
-collect2: error: ld returned 1 exit status
-configure:6834: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_ASPRINTF 1
-| #define HAVE_ATEXIT 1
-| #define HAVE_BASENAME 1
-| #define HAVE_BCMP 1
-| #define HAVE_BCOPY 1
-| #define HAVE_BSEARCH 1
-| #define HAVE_BZERO 1
-| #define HAVE_CALLOC 1
-| #define HAVE_CLOCK 1
-| #define HAVE_FFS 1
-| #define HAVE_GETCWD 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_INDEX 1
-| #define HAVE_INSQUE 1
-| #define HAVE_MEMCHR 1
-| #define HAVE_MEMCMP 1
-| #define HAVE_MEMCPY 1
-| #define HAVE_MEMMEM 1
-| #define HAVE_MEMMOVE 1
-| #define HAVE_MEMPCPY 1
-| #define HAVE_MEMSET 1
-| #define HAVE_MKSTEMPS 1
-| #define HAVE_PUTENV 1
-| #define HAVE_RANDOM 1
-| #define HAVE_RENAME 1
-| #define HAVE_RINDEX 1
-| #define HAVE_SETENV 1
-| #define HAVE_SNPRINTF 1
-| #define HAVE_SIGSETMASK 1
-| #define HAVE_STPCPY 1
-| #define HAVE_STPNCPY 1
-| #define HAVE_STRCASECMP 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRDUP 1
-| #define HAVE_STRNCASECMP 1
-| #define HAVE_STRNDUP 1
-| #define HAVE_STRNLEN 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_STRSTR 1
-| #define HAVE_STRTOD 1
-| #define HAVE_STRTOL 1
-| #define HAVE_STRTOUL 1
-| #define HAVE_STRTOLL 1
-| #define HAVE_STRTOULL 1
-| #define HAVE_STRVERSCMP 1
-| #define HAVE_TMPNAM 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_VFPRINTF 1
-| #define HAVE_VPRINTF 1
-| #define HAVE_VSNPRINTF 1
-| #define HAVE_VSPRINTF 1
-| #define HAVE_WAITPID 1
-| #define STACK_DIRECTION -1
-| #define HAVE_FORK 1
-| #define HAVE_VFORK 1
-| #define HAVE_WORKING_VFORK 1
-| #define HAVE_WORKING_FORK 1
-| #define HAVE_SYS_ERRLIST 1
-| #define HAVE_SYS_NERR 1
-| #define HAVE_SYS_SIGLIST 1
-| #define HAVE___FSETLOCKING 1
-| #define HAVE_CANONICALIZE_FILE_NAME 1
-| #define HAVE_DUP3 1
-| #define HAVE_GETRLIMIT 1
-| #define HAVE_GETRUSAGE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_ON_EXIT 1
-| #define HAVE_PSIGNAL 1
-| /* end confdefs.h. */
-| /* Define pstat_getstatic to an innocuous variant, in case <limits.h> declares pstat_getstatic.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define pstat_getstatic innocuous_pstat_getstatic
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char pstat_getstatic (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef pstat_getstatic
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char pstat_getstatic ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_pstat_getstatic || defined __stub___pstat_getstatic
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return pstat_getstatic ();
-| ;
-| return 0;
-| }
-configure:6834: result: no
-configure:6834: checking for realpath
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for setrlimit
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for sbrk
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for spawnve
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/cc1vMM4g.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/libiberty/conftest.c:161: undefined reference to `spawnve'
-collect2: error: ld returned 1 exit status
-configure:6834: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_ASPRINTF 1
-| #define HAVE_ATEXIT 1
-| #define HAVE_BASENAME 1
-| #define HAVE_BCMP 1
-| #define HAVE_BCOPY 1
-| #define HAVE_BSEARCH 1
-| #define HAVE_BZERO 1
-| #define HAVE_CALLOC 1
-| #define HAVE_CLOCK 1
-| #define HAVE_FFS 1
-| #define HAVE_GETCWD 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_INDEX 1
-| #define HAVE_INSQUE 1
-| #define HAVE_MEMCHR 1
-| #define HAVE_MEMCMP 1
-| #define HAVE_MEMCPY 1
-| #define HAVE_MEMMEM 1
-| #define HAVE_MEMMOVE 1
-| #define HAVE_MEMPCPY 1
-| #define HAVE_MEMSET 1
-| #define HAVE_MKSTEMPS 1
-| #define HAVE_PUTENV 1
-| #define HAVE_RANDOM 1
-| #define HAVE_RENAME 1
-| #define HAVE_RINDEX 1
-| #define HAVE_SETENV 1
-| #define HAVE_SNPRINTF 1
-| #define HAVE_SIGSETMASK 1
-| #define HAVE_STPCPY 1
-| #define HAVE_STPNCPY 1
-| #define HAVE_STRCASECMP 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRDUP 1
-| #define HAVE_STRNCASECMP 1
-| #define HAVE_STRNDUP 1
-| #define HAVE_STRNLEN 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_STRSTR 1
-| #define HAVE_STRTOD 1
-| #define HAVE_STRTOL 1
-| #define HAVE_STRTOUL 1
-| #define HAVE_STRTOLL 1
-| #define HAVE_STRTOULL 1
-| #define HAVE_STRVERSCMP 1
-| #define HAVE_TMPNAM 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_VFPRINTF 1
-| #define HAVE_VPRINTF 1
-| #define HAVE_VSNPRINTF 1
-| #define HAVE_VSPRINTF 1
-| #define HAVE_WAITPID 1
-| #define STACK_DIRECTION -1
-| #define HAVE_FORK 1
-| #define HAVE_VFORK 1
-| #define HAVE_WORKING_VFORK 1
-| #define HAVE_WORKING_FORK 1
-| #define HAVE_SYS_ERRLIST 1
-| #define HAVE_SYS_NERR 1
-| #define HAVE_SYS_SIGLIST 1
-| #define HAVE___FSETLOCKING 1
-| #define HAVE_CANONICALIZE_FILE_NAME 1
-| #define HAVE_DUP3 1
-| #define HAVE_GETRLIMIT 1
-| #define HAVE_GETRUSAGE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_ON_EXIT 1
-| #define HAVE_PSIGNAL 1
-| #define HAVE_REALPATH 1
-| #define HAVE_SETRLIMIT 1
-| #define HAVE_SBRK 1
-| /* end confdefs.h. */
-| /* Define spawnve to an innocuous variant, in case <limits.h> declares spawnve.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define spawnve innocuous_spawnve
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char spawnve (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef spawnve
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char spawnve ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_spawnve || defined __stub___spawnve
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return spawnve ();
-| ;
-| return 0;
-| }
-configure:6834: result: no
-configure:6834: checking for spawnvpe
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/ccsuZkWl.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/libiberty/conftest.c:161: undefined reference to `spawnvpe'
-collect2: error: ld returned 1 exit status
-configure:6834: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_ASPRINTF 1
-| #define HAVE_ATEXIT 1
-| #define HAVE_BASENAME 1
-| #define HAVE_BCMP 1
-| #define HAVE_BCOPY 1
-| #define HAVE_BSEARCH 1
-| #define HAVE_BZERO 1
-| #define HAVE_CALLOC 1
-| #define HAVE_CLOCK 1
-| #define HAVE_FFS 1
-| #define HAVE_GETCWD 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_INDEX 1
-| #define HAVE_INSQUE 1
-| #define HAVE_MEMCHR 1
-| #define HAVE_MEMCMP 1
-| #define HAVE_MEMCPY 1
-| #define HAVE_MEMMEM 1
-| #define HAVE_MEMMOVE 1
-| #define HAVE_MEMPCPY 1
-| #define HAVE_MEMSET 1
-| #define HAVE_MKSTEMPS 1
-| #define HAVE_PUTENV 1
-| #define HAVE_RANDOM 1
-| #define HAVE_RENAME 1
-| #define HAVE_RINDEX 1
-| #define HAVE_SETENV 1
-| #define HAVE_SNPRINTF 1
-| #define HAVE_SIGSETMASK 1
-| #define HAVE_STPCPY 1
-| #define HAVE_STPNCPY 1
-| #define HAVE_STRCASECMP 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRDUP 1
-| #define HAVE_STRNCASECMP 1
-| #define HAVE_STRNDUP 1
-| #define HAVE_STRNLEN 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_STRSTR 1
-| #define HAVE_STRTOD 1
-| #define HAVE_STRTOL 1
-| #define HAVE_STRTOUL 1
-| #define HAVE_STRTOLL 1
-| #define HAVE_STRTOULL 1
-| #define HAVE_STRVERSCMP 1
-| #define HAVE_TMPNAM 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_VFPRINTF 1
-| #define HAVE_VPRINTF 1
-| #define HAVE_VSNPRINTF 1
-| #define HAVE_VSPRINTF 1
-| #define HAVE_WAITPID 1
-| #define STACK_DIRECTION -1
-| #define HAVE_FORK 1
-| #define HAVE_VFORK 1
-| #define HAVE_WORKING_VFORK 1
-| #define HAVE_WORKING_FORK 1
-| #define HAVE_SYS_ERRLIST 1
-| #define HAVE_SYS_NERR 1
-| #define HAVE_SYS_SIGLIST 1
-| #define HAVE___FSETLOCKING 1
-| #define HAVE_CANONICALIZE_FILE_NAME 1
-| #define HAVE_DUP3 1
-| #define HAVE_GETRLIMIT 1
-| #define HAVE_GETRUSAGE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_ON_EXIT 1
-| #define HAVE_PSIGNAL 1
-| #define HAVE_REALPATH 1
-| #define HAVE_SETRLIMIT 1
-| #define HAVE_SBRK 1
-| /* end confdefs.h. */
-| /* Define spawnvpe to an innocuous variant, in case <limits.h> declares spawnvpe.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define spawnvpe innocuous_spawnvpe
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char spawnvpe (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef spawnvpe
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char spawnvpe ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_spawnvpe || defined __stub___spawnvpe
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return spawnvpe ();
-| ;
-| return 0;
-| }
-configure:6834: result: no
-configure:6834: checking for strerror
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for strsignal
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for sysconf
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for sysctl
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for sysmp
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/ccBl7AaF.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/libiberty/conftest.c:165: undefined reference to `sysmp'
-collect2: error: ld returned 1 exit status
-configure:6834: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_ASPRINTF 1
-| #define HAVE_ATEXIT 1
-| #define HAVE_BASENAME 1
-| #define HAVE_BCMP 1
-| #define HAVE_BCOPY 1
-| #define HAVE_BSEARCH 1
-| #define HAVE_BZERO 1
-| #define HAVE_CALLOC 1
-| #define HAVE_CLOCK 1
-| #define HAVE_FFS 1
-| #define HAVE_GETCWD 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_INDEX 1
-| #define HAVE_INSQUE 1
-| #define HAVE_MEMCHR 1
-| #define HAVE_MEMCMP 1
-| #define HAVE_MEMCPY 1
-| #define HAVE_MEMMEM 1
-| #define HAVE_MEMMOVE 1
-| #define HAVE_MEMPCPY 1
-| #define HAVE_MEMSET 1
-| #define HAVE_MKSTEMPS 1
-| #define HAVE_PUTENV 1
-| #define HAVE_RANDOM 1
-| #define HAVE_RENAME 1
-| #define HAVE_RINDEX 1
-| #define HAVE_SETENV 1
-| #define HAVE_SNPRINTF 1
-| #define HAVE_SIGSETMASK 1
-| #define HAVE_STPCPY 1
-| #define HAVE_STPNCPY 1
-| #define HAVE_STRCASECMP 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRDUP 1
-| #define HAVE_STRNCASECMP 1
-| #define HAVE_STRNDUP 1
-| #define HAVE_STRNLEN 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_STRSTR 1
-| #define HAVE_STRTOD 1
-| #define HAVE_STRTOL 1
-| #define HAVE_STRTOUL 1
-| #define HAVE_STRTOLL 1
-| #define HAVE_STRTOULL 1
-| #define HAVE_STRVERSCMP 1
-| #define HAVE_TMPNAM 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_VFPRINTF 1
-| #define HAVE_VPRINTF 1
-| #define HAVE_VSNPRINTF 1
-| #define HAVE_VSPRINTF 1
-| #define HAVE_WAITPID 1
-| #define STACK_DIRECTION -1
-| #define HAVE_FORK 1
-| #define HAVE_VFORK 1
-| #define HAVE_WORKING_VFORK 1
-| #define HAVE_WORKING_FORK 1
-| #define HAVE_SYS_ERRLIST 1
-| #define HAVE_SYS_NERR 1
-| #define HAVE_SYS_SIGLIST 1
-| #define HAVE___FSETLOCKING 1
-| #define HAVE_CANONICALIZE_FILE_NAME 1
-| #define HAVE_DUP3 1
-| #define HAVE_GETRLIMIT 1
-| #define HAVE_GETRUSAGE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_ON_EXIT 1
-| #define HAVE_PSIGNAL 1
-| #define HAVE_REALPATH 1
-| #define HAVE_SETRLIMIT 1
-| #define HAVE_SBRK 1
-| #define HAVE_STRERROR 1
-| #define HAVE_STRSIGNAL 1
-| #define HAVE_SYSCONF 1
-| #define HAVE_SYSCTL 1
-| /* end confdefs.h. */
-| /* Define sysmp to an innocuous variant, in case <limits.h> declares sysmp.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define sysmp innocuous_sysmp
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char sysmp (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef sysmp
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char sysmp ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_sysmp || defined __stub___sysmp
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return sysmp ();
-| ;
-| return 0;
-| }
-configure:6834: result: no
-configure:6834: checking for table
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-/tmp/ccQyNNMG.o: In function `main':
-/home/xavier/sdcc_gas/support/sdbinutils/libiberty/conftest.c:165: undefined reference to `table'
-collect2: error: ld returned 1 exit status
-configure:6834: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define __EXTENSIONS__ 1
-| #define _ALL_SOURCE 1
-| #define _GNU_SOURCE 1
-| #define _POSIX_PTHREAD_SEMANTICS 1
-| #define _TANDEM_SOURCE 1
-| #define HAVE_SYS_FILE_H 1
-| #define HAVE_SYS_PARAM_H 1
-| #define HAVE_LIMITS_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_MALLOC_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_SYS_TIME_H 1
-| #define HAVE_TIME_H 1
-| #define HAVE_SYS_RESOURCE_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_SYS_MMAN_H 1
-| #define HAVE_FCNTL_H 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_SYS_SYSINFO_H 1
-| #define HAVE_SYS_SYSCTL_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDIO_EXT_H 1
-| #define HAVE_SYS_PRCTL_H 1
-| #define HAVE_SYS_WAIT_H 1
-| #define TIME_WITH_SYS_TIME 1
-| #define SIZEOF_INT 4
-| #define SIZEOF_LONG 8
-| #define SIZEOF_SIZE_T 8
-| #define HAVE_LONG_LONG 1
-| #define SIZEOF_LONG_LONG 8
-| #define UNSIGNED_64BIT_TYPE uint64_t
-| #define HAVE_INTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_UINTPTR_T 1
-| #define HAVE_ASPRINTF 1
-| #define HAVE_ATEXIT 1
-| #define HAVE_BASENAME 1
-| #define HAVE_BCMP 1
-| #define HAVE_BCOPY 1
-| #define HAVE_BSEARCH 1
-| #define HAVE_BZERO 1
-| #define HAVE_CALLOC 1
-| #define HAVE_CLOCK 1
-| #define HAVE_FFS 1
-| #define HAVE_GETCWD 1
-| #define HAVE_GETPAGESIZE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_INDEX 1
-| #define HAVE_INSQUE 1
-| #define HAVE_MEMCHR 1
-| #define HAVE_MEMCMP 1
-| #define HAVE_MEMCPY 1
-| #define HAVE_MEMMEM 1
-| #define HAVE_MEMMOVE 1
-| #define HAVE_MEMPCPY 1
-| #define HAVE_MEMSET 1
-| #define HAVE_MKSTEMPS 1
-| #define HAVE_PUTENV 1
-| #define HAVE_RANDOM 1
-| #define HAVE_RENAME 1
-| #define HAVE_RINDEX 1
-| #define HAVE_SETENV 1
-| #define HAVE_SNPRINTF 1
-| #define HAVE_SIGSETMASK 1
-| #define HAVE_STPCPY 1
-| #define HAVE_STPNCPY 1
-| #define HAVE_STRCASECMP 1
-| #define HAVE_STRCHR 1
-| #define HAVE_STRDUP 1
-| #define HAVE_STRNCASECMP 1
-| #define HAVE_STRNDUP 1
-| #define HAVE_STRNLEN 1
-| #define HAVE_STRRCHR 1
-| #define HAVE_STRSTR 1
-| #define HAVE_STRTOD 1
-| #define HAVE_STRTOL 1
-| #define HAVE_STRTOUL 1
-| #define HAVE_STRTOLL 1
-| #define HAVE_STRTOULL 1
-| #define HAVE_STRVERSCMP 1
-| #define HAVE_TMPNAM 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_VFPRINTF 1
-| #define HAVE_VPRINTF 1
-| #define HAVE_VSNPRINTF 1
-| #define HAVE_VSPRINTF 1
-| #define HAVE_WAITPID 1
-| #define STACK_DIRECTION -1
-| #define HAVE_FORK 1
-| #define HAVE_VFORK 1
-| #define HAVE_WORKING_VFORK 1
-| #define HAVE_WORKING_FORK 1
-| #define HAVE_SYS_ERRLIST 1
-| #define HAVE_SYS_NERR 1
-| #define HAVE_SYS_SIGLIST 1
-| #define HAVE___FSETLOCKING 1
-| #define HAVE_CANONICALIZE_FILE_NAME 1
-| #define HAVE_DUP3 1
-| #define HAVE_GETRLIMIT 1
-| #define HAVE_GETRUSAGE 1
-| #define HAVE_GETTIMEOFDAY 1
-| #define HAVE_ON_EXIT 1
-| #define HAVE_PSIGNAL 1
-| #define HAVE_REALPATH 1
-| #define HAVE_SETRLIMIT 1
-| #define HAVE_SBRK 1
-| #define HAVE_STRERROR 1
-| #define HAVE_STRSIGNAL 1
-| #define HAVE_SYSCONF 1
-| #define HAVE_SYSCTL 1
-| /* end confdefs.h. */
-| /* Define table to an innocuous variant, in case <limits.h> declares table.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define table innocuous_table
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char table (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef table
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char table ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_table || defined __stub___table
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return table ();
-| ;
-| return 0;
-| }
-configure:6834: result: no
-configure:6834: checking for times
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for wait3
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6834: checking for wait4
-configure:6834: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:6834: $? = 0
-configure:6834: result: yes
-configure:6844: checking whether basename is declared
-configure:6844: gcc -c -g -O2 conftest.c >&5
-configure:6844: $? = 0
-configure:6844: result: yes
-configure:6854: checking whether ffs is declared
-configure:6854: gcc -c -g -O2 conftest.c >&5
-configure:6854: $? = 0
-configure:6854: result: yes
-configure:6864: checking whether asprintf is declared
-configure:6864: gcc -c -g -O2 conftest.c >&5
-configure:6864: $? = 0
-configure:6864: result: yes
-configure:6874: checking whether vasprintf is declared
-configure:6874: gcc -c -g -O2 conftest.c >&5
-configure:6874: $? = 0
-configure:6874: result: yes
-configure:6884: checking whether snprintf is declared
-configure:6884: gcc -c -g -O2 conftest.c >&5
-configure:6884: $? = 0
-configure:6884: result: yes
-configure:6894: checking whether vsnprintf is declared
-configure:6894: gcc -c -g -O2 conftest.c >&5
-configure:6894: $? = 0
-configure:6894: result: yes
-configure:6905: checking whether calloc is declared
-configure:6905: gcc -c -g -O2 conftest.c >&5
-configure:6905: $? = 0
-configure:6905: result: yes
-configure:6915: checking whether getenv is declared
-configure:6915: gcc -c -g -O2 conftest.c >&5
-configure:6915: $? = 0
-configure:6915: result: yes
-configure:6925: checking whether getopt is declared
-configure:6925: gcc -c -g -O2 conftest.c >&5
-configure:6925: $? = 0
-configure:6925: result: yes
-configure:6935: checking whether malloc is declared
-configure:6935: gcc -c -g -O2 conftest.c >&5
-configure:6935: $? = 0
-configure:6935: result: yes
-configure:6945: checking whether realloc is declared
-configure:6945: gcc -c -g -O2 conftest.c >&5
-configure:6945: $? = 0
-configure:6945: result: yes
-configure:6955: checking whether sbrk is declared
-configure:6955: gcc -c -g -O2 conftest.c >&5
-configure:6955: $? = 0
-configure:6955: result: yes
-configure:6966: checking whether strtol is declared
-configure:6966: gcc -c -g -O2 conftest.c >&5
-configure:6966: $? = 0
-configure:6966: result: yes
-configure:6976: checking whether strtoul is declared
-configure:6976: gcc -c -g -O2 conftest.c >&5
-configure:6976: $? = 0
-configure:6976: result: yes
-configure:6986: checking whether strtoll is declared
-configure:6986: gcc -c -g -O2 conftest.c >&5
-configure:6986: $? = 0
-configure:6986: result: yes
-configure:6996: checking whether strtoull is declared
-configure:6996: gcc -c -g -O2 conftest.c >&5
-configure:6996: $? = 0
-configure:6996: result: yes
-configure:7007: checking whether strverscmp is declared
-configure:7007: gcc -c -g -O2 conftest.c >&5
-configure:7007: $? = 0
-configure:7007: result: yes
-configure:7018: checking whether strnlen is declared
-configure:7018: gcc -c -g -O2 conftest.c >&5
-configure:7018: $? = 0
-configure:7018: result: yes
-configure:7029: checking whether canonicalize_file_name must be declared
-configure:7060: gcc -c -g -O2 conftest.c >&5
-configure:7060: $? = 0
-configure:7068: result: no
-configure:7096: checking for stdlib.h
-configure:7096: result: yes
-configure:7096: checking for unistd.h
-configure:7096: result: yes
-configure:7108: checking for getpagesize
-configure:7108: result: yes
-configure:7117: checking for working mmap
-configure:7254: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-configure:7254: $? = 0
-configure:7254: ./conftest
-configure:7254: $? = 0
-configure:7264: result: yes
-configure:7275: checking for working strncmp
-configure:7347: gcc -o conftest -g -O2 -static-libstdc++ -static-libgcc conftest.c >&5
-conftest.c:186:1: warning: return type defaults to 'int' [-Wimplicit-int]
- main ()
- ^~~~
-conftest.c: In function 'main':
-conftest.c:194:5: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
- exit (1);
- ^~~~
-conftest.c:194:5: warning: incompatible implicit declaration of built-in function 'exit'
-conftest.c:194:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
-conftest.c:202:5: warning: incompatible implicit declaration of built-in function 'exit'
- exit (2);
- ^~~~
-conftest.c:202:5: note: include '<stdlib.h>' or provide a declaration of 'exit'
-conftest.c:206:40: warning: implicit declaration of function 'strlen' [-Wimplicit-function-declaration]
- char *q = (char *) p + MAP_LEN - strlen (string) - 2;
- ^~~~~~
-conftest.c:206:40: warning: incompatible implicit declaration of built-in function 'strlen'
-conftest.c:206:40: note: include '<string.h>' or provide a declaration of 'strlen'
-conftest.c:209:7: warning: implicit declaration of function 'strcpy' [-Wimplicit-function-declaration]
- strcpy (q, string);
- ^~~~~~
-conftest.c:209:7: warning: incompatible implicit declaration of built-in function 'strcpy'
-conftest.c:209:7: note: include '<string.h>' or provide a declaration of 'strcpy'
-conftest.c:211:7: warning: implicit declaration of function 'strncmp' [-Wimplicit-function-declaration]
- strncmp (r, q, 14);
- ^~~~~~~
-conftest.c:214:3: warning: incompatible implicit declaration of built-in function 'exit'
- exit (0);
- ^~~~
-conftest.c:214:3: note: include '<stdlib.h>' or provide a declaration of 'exit'
-configure:7347: $? = 0
-configure:7347: ./conftest
-configure:7347: $? = 0
-configure:7358: result: yes
-configure:7501: creating ./config.status
-
-## ---------------------- ##
-## Running config.status. ##
-## ---------------------- ##
-
-This file was extended by config.status, which was
-generated by GNU Autoconf 2.64. Invocation command line was
-
- CONFIG_FILES =
- CONFIG_HEADERS =
- CONFIG_LINKS =
- CONFIG_COMMANDS =
- $ ./config.status
-
-on xavier-asus
-
-config.status:1010: creating Makefile
-config.status:1010: creating testsuite/Makefile
-config.status:1010: creating config.h
-config.status:1181: config.h is unchanged
-config.status:1195: executing default commands
-
-## ---------------- ##
-## Cache variables. ##
-## ---------------- ##
-
-ac_cv_build=x86_64-pc-linux-gnu
-ac_cv_c_bigendian=no
-ac_cv_c_compiler_gnu=yes
-ac_cv_c_const=yes
-ac_cv_c_inline=inline
-ac_cv_c_stack_direction=-1
-ac_cv_env_CC_set=set
-ac_cv_env_CC_value=gcc
-ac_cv_env_CFLAGS_set=set
-ac_cv_env_CFLAGS_value='-g -O2'
-ac_cv_env_CPPFLAGS_set=
-ac_cv_env_CPPFLAGS_value=
-ac_cv_env_CPP_set=
-ac_cv_env_CPP_value=
-ac_cv_env_LDFLAGS_set=set
-ac_cv_env_LDFLAGS_value='-static-libstdc++ -static-libgcc '
-ac_cv_env_LIBS_set=
-ac_cv_env_LIBS_value=
-ac_cv_env_build_alias_set=set
-ac_cv_env_build_alias_value=x86_64-pc-linux-gnu
-ac_cv_env_host_alias_set=set
-ac_cv_env_host_alias_value=x86_64-pc-linux-gnu
-ac_cv_env_target_alias_set=set
-ac_cv_env_target_alias_value=x86_64-pc-linux-gnu
-ac_cv_func___fsetlocking=yes
-ac_cv_func__doprnt=no
-ac_cv_func_asprintf=yes
-ac_cv_func_atexit=yes
-ac_cv_func_basename=yes
-ac_cv_func_bcmp=yes
-ac_cv_func_bcopy=yes
-ac_cv_func_bsearch=yes
-ac_cv_func_bzero=yes
-ac_cv_func_calloc=yes
-ac_cv_func_canonicalize_file_name=yes
-ac_cv_func_clock=yes
-ac_cv_func_dup3=yes
-ac_cv_func_ffs=yes
-ac_cv_func_fork=yes
-ac_cv_func_fork_works=yes
-ac_cv_func_getcwd=yes
-ac_cv_func_getpagesize=yes
-ac_cv_func_getrlimit=yes
-ac_cv_func_getrusage=yes
-ac_cv_func_getsysinfo=no
-ac_cv_func_gettimeofday=yes
-ac_cv_func_index=yes
-ac_cv_func_insque=yes
-ac_cv_func_memchr=yes
-ac_cv_func_memcmp=yes
-ac_cv_func_memcpy=yes
-ac_cv_func_memmem=yes
-ac_cv_func_memmove=yes
-ac_cv_func_mempcpy=yes
-ac_cv_func_memset=yes
-ac_cv_func_mkstemps=yes
-ac_cv_func_mmap_fixed_mapped=yes
-ac_cv_func_on_exit=yes
-ac_cv_func_psignal=yes
-ac_cv_func_pstat_getdynamic=no
-ac_cv_func_pstat_getstatic=no
-ac_cv_func_putenv=yes
-ac_cv_func_random=yes
-ac_cv_func_realpath=yes
-ac_cv_func_rename=yes
-ac_cv_func_rindex=yes
-ac_cv_func_sbrk=yes
-ac_cv_func_setenv=yes
-ac_cv_func_setproctitle=no
-ac_cv_func_setrlimit=yes
-ac_cv_func_sigsetmask=yes
-ac_cv_func_snprintf=yes
-ac_cv_func_spawnve=no
-ac_cv_func_spawnvpe=no
-ac_cv_func_stpcpy=yes
-ac_cv_func_stpncpy=yes
-ac_cv_func_strcasecmp=yes
-ac_cv_func_strchr=yes
-ac_cv_func_strdup=yes
-ac_cv_func_strerror=yes
-ac_cv_func_strncasecmp=yes
-ac_cv_func_strncmp_works=yes
-ac_cv_func_strndup=yes
-ac_cv_func_strnlen=yes
-ac_cv_func_strrchr=yes
-ac_cv_func_strsignal=yes
-ac_cv_func_strstr=yes
-ac_cv_func_strtod=yes
-ac_cv_func_strtol=yes
-ac_cv_func_strtoll=yes
-ac_cv_func_strtoul=yes
-ac_cv_func_strtoull=yes
-ac_cv_func_strverscmp=yes
-ac_cv_func_sysconf=yes
-ac_cv_func_sysctl=yes
-ac_cv_func_sysmp=no
-ac_cv_func_table=no
-ac_cv_func_times=yes
-ac_cv_func_tmpnam=yes
-ac_cv_func_vasprintf=yes
-ac_cv_func_vfork=yes
-ac_cv_func_vfork_works=yes
-ac_cv_func_vfprintf=yes
-ac_cv_func_vprintf=yes
-ac_cv_func_vsnprintf=yes
-ac_cv_func_vsprintf=yes
-ac_cv_func_wait3=yes
-ac_cv_func_wait4=yes
-ac_cv_func_waitpid=yes
-ac_cv_have_decl_asprintf=yes
-ac_cv_have_decl_basename_char_p_=yes
-ac_cv_have_decl_calloc=yes
-ac_cv_have_decl_ffs=yes
-ac_cv_have_decl_getenv=yes
-ac_cv_have_decl_getopt=yes
-ac_cv_have_decl_malloc=yes
-ac_cv_have_decl_realloc=yes
-ac_cv_have_decl_sbrk=yes
-ac_cv_have_decl_snprintf=yes
-ac_cv_have_decl_strnlen=yes
-ac_cv_have_decl_strtol=yes
-ac_cv_have_decl_strtoll=yes
-ac_cv_have_decl_strtoul=yes
-ac_cv_have_decl_strtoull=yes
-ac_cv_have_decl_strverscmp=yes
-ac_cv_have_decl_vasprintf=yes
-ac_cv_have_decl_vsnprintf=yes
-ac_cv_header_alloca_h=yes
-ac_cv_header_fcntl_h=yes
-ac_cv_header_inttypes_h=yes
-ac_cv_header_limits_h=yes
-ac_cv_header_machine_hal_sysinfo_h=no
-ac_cv_header_malloc_h=yes
-ac_cv_header_memory_h=yes
-ac_cv_header_minix_config_h=no
-ac_cv_header_process_h=no
-ac_cv_header_stdc=yes
-ac_cv_header_stdint_h=yes
-ac_cv_header_stdio_ext_h=yes
-ac_cv_header_stdlib_h=yes
-ac_cv_header_string_h=yes
-ac_cv_header_strings_h=yes
-ac_cv_header_sys_file_h=yes
-ac_cv_header_sys_mman_h=yes
-ac_cv_header_sys_param_h=yes
-ac_cv_header_sys_prctl_h=yes
-ac_cv_header_sys_pstat_h=no
-ac_cv_header_sys_resource_h=yes
-ac_cv_header_sys_stat_h=yes
-ac_cv_header_sys_sysctl_h=yes
-ac_cv_header_sys_sysinfo_h=yes
-ac_cv_header_sys_sysmp_h=no
-ac_cv_header_sys_systemcfg_h=no
-ac_cv_header_sys_table_h=no
-ac_cv_header_sys_time_h=yes
-ac_cv_header_sys_types_h=yes
-ac_cv_header_sys_wait_h=yes
-ac_cv_header_time=yes
-ac_cv_header_time_h=yes
-ac_cv_header_unistd_h=yes
-ac_cv_header_vfork_h=no
-ac_cv_host=x86_64-pc-linux-gnu
-ac_cv_objext=o
-ac_cv_os_cray=no
-ac_cv_path_EGREP='/bin/grep -E'
-ac_cv_path_GREP=/bin/grep
-ac_cv_prog_AR=ar
-ac_cv_prog_CC=gcc
-ac_cv_prog_CPP='gcc -E'
-ac_cv_prog_MAKEINFO='makeinfo --split-size=5000000'
-ac_cv_prog_PERL=perl
-ac_cv_prog_RANLIB=ranlib
-ac_cv_prog_cc_c89=
-ac_cv_prog_cc_g=yes
-ac_cv_prog_cc_gcc_c_o=yes
-ac_cv_safe_to_define___extensions__=yes
-ac_cv_search_strerror='none required'
-ac_cv_sizeof_int=4
-ac_cv_sizeof_long=8
-ac_cv_sizeof_long_long=8
-ac_cv_sizeof_size_t=8
-ac_cv_sys_file_offset_bits=no
-ac_cv_sys_largefile_CC=no
-ac_cv_type_intptr_t=yes
-ac_cv_type_long_long=yes
-ac_cv_type_pid_t=yes
-ac_cv_type_ssize_t=yes
-ac_cv_type_uintptr_t=yes
-acx_cv_prog_cc_pedantic_=yes
-acx_cv_prog_cc_warning__W=yes
-acx_cv_prog_cc_warning__Wall=yes
-acx_cv_prog_cc_warning__Wcpp_compat=yes
-acx_cv_prog_cc_warning__Wshadow_local=yes
-acx_cv_prog_cc_warning__Wstrict_prototypes=yes
-acx_cv_prog_cc_warning__Wwrite_strings=yes
-liberty_cv_uint64=uint64_t
-libiberty_cv_decl_needed_canonicalize_file_name=no
-libiberty_cv_declare_errno=no
-libiberty_cv_var_sys_errlist=yes
-libiberty_cv_var_sys_nerr=yes
-libiberty_cv_var_sys_siglist=yes
-
-## ----------------- ##
-## Output variables. ##
-## ----------------- ##
-
-AR='ar'
-BUILD_INFO='info'
-CC='gcc'
-CFLAGS='-g -O2'
-CHECK='really-check'
-CPP='gcc -E'
-CPPFLAGS=''
-DEFS='-DHAVE_CONFIG_H'
-ECHO_C=''
-ECHO_N='-n'
-ECHO_T=''
-EGREP='/bin/grep -E'
-EXEEXT=''
-GREP='/bin/grep'
-HAVE_PERL=''
-INSTALL_DATA='/usr/bin/install -c -m 644'
-INSTALL_DEST='libdir'
-INSTALL_PROGRAM='/usr/bin/install -c'
-INSTALL_SCRIPT='/usr/bin/install -c'
-LDFLAGS='-static-libstdc++ -static-libgcc '
-LIBOBJS=' ${LIBOBJDIR}./setproctitle$U.o'
-LIBS=''
-LTLIBOBJS=' ${LIBOBJDIR}./setproctitle$U.lo'
-MAINT='#'
-MAKEINFO='makeinfo --split-size=5000000'
-NOASANFLAG=''
-NOTMAINT=''
-NO_MINUS_C_MINUS_O=''
-OBJEXT='o'
-OUTPUT_OPTION='-o $@'
-PACKAGE_BUGREPORT=''
-PACKAGE_NAME=''
-PACKAGE_STRING=''
-PACKAGE_TARNAME=''
-PACKAGE_URL=''
-PACKAGE_VERSION=''
-PATH_SEPARATOR=':'
-PERL='perl'
-PICFLAG=''
-RANLIB='ranlib'
-SHELL='/bin/bash'
-ac_ct_CC=''
-ac_libiberty_warn_cflags='-W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic '
-bindir='${exec_prefix}/bin'
-build='x86_64-pc-linux-gnu'
-build_alias='x86_64-pc-linux-gnu'
-build_cpu='x86_64'
-build_os='linux-gnu'
-build_vendor='pc'
-datadir='${datarootdir}'
-datarootdir='${prefix}/share'
-docdir='${datarootdir}/doc/${PACKAGE}'
-dvidir='${docdir}'
-exec_prefix='${prefix}'
-host='x86_64-pc-linux-gnu'
-host_alias='x86_64-pc-linux-gnu'
-host_cpu='x86_64'
-host_os='linux-gnu'
-host_vendor='pc'
-htmldir='${docdir}'
-includedir='${prefix}/include'
-infodir='${datarootdir}/info'
-libdir='${exec_prefix}/lib'
-libexecdir='${exec_prefix}/libexec'
-libiberty_topdir='./..'
-localedir='${datarootdir}/locale'
-localstatedir='${prefix}/var'
-mandir='${datarootdir}/man'
-oldincludedir='/usr/include'
-pdfdir='${docdir}'
-pexecute='pex-unix'
-prefix='/usr/local'
-program_transform_name='s,y,y,'
-psdir='${docdir}'
-sbindir='${exec_prefix}/sbin'
-sharedstatedir='${prefix}/com'
-sysconfdir='${prefix}/etc'
-target_alias='x86_64-pc-linux-gnu'
-target_header_dir=''
-
-## ------------------- ##
-## File substitutions. ##
-## ------------------- ##
-
-host_makefile_frag='xhost-mkfrag'
-
-## ----------- ##
-## confdefs.h. ##
-## ----------- ##
-
-/* confdefs.h */
-#define PACKAGE_NAME ""
-#define PACKAGE_TARNAME ""
-#define PACKAGE_VERSION ""
-#define PACKAGE_STRING ""
-#define PACKAGE_BUGREPORT ""
-#define PACKAGE_URL ""
-#define STDC_HEADERS 1
-#define HAVE_SYS_TYPES_H 1
-#define HAVE_SYS_STAT_H 1
-#define HAVE_STDLIB_H 1
-#define HAVE_STRING_H 1
-#define HAVE_MEMORY_H 1
-#define HAVE_STRINGS_H 1
-#define HAVE_INTTYPES_H 1
-#define HAVE_STDINT_H 1
-#define HAVE_UNISTD_H 1
-#define __EXTENSIONS__ 1
-#define _ALL_SOURCE 1
-#define _GNU_SOURCE 1
-#define _POSIX_PTHREAD_SEMANTICS 1
-#define _TANDEM_SOURCE 1
-#define HAVE_SYS_FILE_H 1
-#define HAVE_SYS_PARAM_H 1
-#define HAVE_LIMITS_H 1
-#define HAVE_STDLIB_H 1
-#define HAVE_MALLOC_H 1
-#define HAVE_STRING_H 1
-#define HAVE_UNISTD_H 1
-#define HAVE_STRINGS_H 1
-#define HAVE_SYS_TIME_H 1
-#define HAVE_TIME_H 1
-#define HAVE_SYS_RESOURCE_H 1
-#define HAVE_SYS_STAT_H 1
-#define HAVE_SYS_MMAN_H 1
-#define HAVE_FCNTL_H 1
-#define HAVE_ALLOCA_H 1
-#define HAVE_SYS_SYSINFO_H 1
-#define HAVE_SYS_SYSCTL_H 1
-#define HAVE_STDINT_H 1
-#define HAVE_STDIO_EXT_H 1
-#define HAVE_SYS_PRCTL_H 1
-#define HAVE_SYS_WAIT_H 1
-#define TIME_WITH_SYS_TIME 1
-#define SIZEOF_INT 4
-#define SIZEOF_LONG 8
-#define SIZEOF_SIZE_T 8
-#define HAVE_LONG_LONG 1
-#define SIZEOF_LONG_LONG 8
-#define UNSIGNED_64BIT_TYPE uint64_t
-#define HAVE_INTPTR_T 1
-#define HAVE_UINTPTR_T 1
-#define HAVE_UINTPTR_T 1
-#define HAVE_ASPRINTF 1
-#define HAVE_ATEXIT 1
-#define HAVE_BASENAME 1
-#define HAVE_BCMP 1
-#define HAVE_BCOPY 1
-#define HAVE_BSEARCH 1
-#define HAVE_BZERO 1
-#define HAVE_CALLOC 1
-#define HAVE_CLOCK 1
-#define HAVE_FFS 1
-#define HAVE_GETCWD 1
-#define HAVE_GETPAGESIZE 1
-#define HAVE_GETTIMEOFDAY 1
-#define HAVE_INDEX 1
-#define HAVE_INSQUE 1
-#define HAVE_MEMCHR 1
-#define HAVE_MEMCMP 1
-#define HAVE_MEMCPY 1
-#define HAVE_MEMMEM 1
-#define HAVE_MEMMOVE 1
-#define HAVE_MEMPCPY 1
-#define HAVE_MEMSET 1
-#define HAVE_MKSTEMPS 1
-#define HAVE_PUTENV 1
-#define HAVE_RANDOM 1
-#define HAVE_RENAME 1
-#define HAVE_RINDEX 1
-#define HAVE_SETENV 1
-#define HAVE_SNPRINTF 1
-#define HAVE_SIGSETMASK 1
-#define HAVE_STPCPY 1
-#define HAVE_STPNCPY 1
-#define HAVE_STRCASECMP 1
-#define HAVE_STRCHR 1
-#define HAVE_STRDUP 1
-#define HAVE_STRNCASECMP 1
-#define HAVE_STRNDUP 1
-#define HAVE_STRNLEN 1
-#define HAVE_STRRCHR 1
-#define HAVE_STRSTR 1
-#define HAVE_STRTOD 1
-#define HAVE_STRTOL 1
-#define HAVE_STRTOUL 1
-#define HAVE_STRTOLL 1
-#define HAVE_STRTOULL 1
-#define HAVE_STRVERSCMP 1
-#define HAVE_TMPNAM 1
-#define HAVE_VASPRINTF 1
-#define HAVE_VFPRINTF 1
-#define HAVE_VPRINTF 1
-#define HAVE_VSNPRINTF 1
-#define HAVE_VSPRINTF 1
-#define HAVE_WAITPID 1
-#define STACK_DIRECTION -1
-#define HAVE_FORK 1
-#define HAVE_VFORK 1
-#define HAVE_WORKING_VFORK 1
-#define HAVE_WORKING_FORK 1
-#define HAVE_SYS_ERRLIST 1
-#define HAVE_SYS_NERR 1
-#define HAVE_SYS_SIGLIST 1
-#define HAVE___FSETLOCKING 1
-#define HAVE_CANONICALIZE_FILE_NAME 1
-#define HAVE_DUP3 1
-#define HAVE_GETRLIMIT 1
-#define HAVE_GETRUSAGE 1
-#define HAVE_GETTIMEOFDAY 1
-#define HAVE_ON_EXIT 1
-#define HAVE_PSIGNAL 1
-#define HAVE_REALPATH 1
-#define HAVE_SETRLIMIT 1
-#define HAVE_SBRK 1
-#define HAVE_STRERROR 1
-#define HAVE_STRSIGNAL 1
-#define HAVE_SYSCONF 1
-#define HAVE_SYSCTL 1
-#define HAVE_TIMES 1
-#define HAVE_WAIT3 1
-#define HAVE_WAIT4 1
-#define HAVE_DECL_BASENAME 1
-#define HAVE_DECL_FFS 1
-#define HAVE_DECL_ASPRINTF 1
-#define HAVE_DECL_VASPRINTF 1
-#define HAVE_DECL_SNPRINTF 1
-#define HAVE_DECL_VSNPRINTF 1
-#define HAVE_DECL_CALLOC 1
-#define HAVE_DECL_GETENV 1
-#define HAVE_DECL_GETOPT 1
-#define HAVE_DECL_MALLOC 1
-#define HAVE_DECL_REALLOC 1
-#define HAVE_DECL_SBRK 1
-#define HAVE_DECL_STRTOL 1
-#define HAVE_DECL_STRTOUL 1
-#define HAVE_DECL_STRTOLL 1
-#define HAVE_DECL_STRTOULL 1
-#define HAVE_DECL_STRVERSCMP 1
-#define HAVE_DECL_STRNLEN 1
-#define HAVE_STDLIB_H 1
-#define HAVE_UNISTD_H 1
-#define HAVE_GETPAGESIZE 1
-#define HAVE_MMAP 1
-
-configure: exit 0
-
-## ---------------------- ##
-## Running config.status. ##
-## ---------------------- ##
-
-This file was extended by config.status, which was
-generated by GNU Autoconf 2.64. Invocation command line was
-
- CONFIG_FILES =
- CONFIG_HEADERS = config.h:./config.in
- CONFIG_LINKS =
- CONFIG_COMMANDS =
- $ ./config.status
-
-on xavier-asus
-
-config.status:1010: creating config.h
-config.status:1195: executing default commands
diff --git a/support/sdbinutils/libiberty/config.status b/support/sdbinutils/libiberty/config.status
deleted file mode 100755
index 70e1d16..0000000
--- a/support/sdbinutils/libiberty/config.status
+++ /dev/null
@@ -1,1216 +0,0 @@
-#! /bin/bash
-# Generated by configure.
-# Run this file to recreate the current configuration.
-# Compiler output produced by configure, useful for debugging
-# configure, is in config.log if it exists.
-
-debug=false
-ac_cs_recheck=false
-ac_cs_silent=false
-
-SHELL=${CONFIG_SHELL-/bin/bash}
-export SHELL
-## -------------------- ##
-## M4sh Initialization. ##
-## -------------------- ##
-
-# Be more Bourne compatible
-DUALCASE=1; export DUALCASE # for MKS sh
-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
- emulate sh
- NULLCMD=:
- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
- # is contrary to our usage. Disable this feature.
- alias -g '${1+"$@"}'='"$@"'
- setopt NO_GLOB_SUBST
-else
- case `(set -o) 2>/dev/null` in #(
- *posix*) :
- set -o posix ;; #(
- *) :
- ;;
-esac
-fi
-
-
-as_nl='
-'
-export as_nl
-# Printing a long string crashes Solaris 7 /usr/bin/printf.
-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
-# Prefer a ksh shell builtin over an external printf program on Solaris,
-# but without wasting forks for bash or zsh.
-if test -z "$BASH_VERSION$ZSH_VERSION" \
- && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='print -r --'
- as_echo_n='print -rn --'
-elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='printf %s\n'
- as_echo_n='printf %s'
-else
- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
- as_echo_n='/usr/ucb/echo -n'
- else
- as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
- as_echo_n_body='eval
- arg=$1;
- case $arg in #(
- *"$as_nl"*)
- expr "X$arg" : "X\\(.*\\)$as_nl";
- arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
- esac;
- expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
- '
- export as_echo_n_body
- as_echo_n='sh -c $as_echo_n_body as_echo'
- fi
- export as_echo_body
- as_echo='sh -c $as_echo_body as_echo'
-fi
-
-# The user is always right.
-if test "${PATH_SEPARATOR+set}" != set; then
- PATH_SEPARATOR=:
- (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
- (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
- PATH_SEPARATOR=';'
- }
-fi
-
-
-# IFS
-# We need space, tab and new line, in precisely that order. Quoting is
-# there to prevent editors from complaining about space-tab.
-# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-# splitting by setting IFS to empty value.)
-IFS=" "" $as_nl"
-
-# Find who we are. Look in the path if we contain no directory separator.
-case $0 in #((
- *[\\/]* ) as_myself=$0 ;;
- *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- done
-IFS=$as_save_IFS
-
- ;;
-esac
-# We did not find ourselves, most probably we were run as `sh COMMAND'
-# in which case we are not to be found in the path.
-if test "x$as_myself" = x; then
- as_myself=$0
-fi
-if test ! -f "$as_myself"; then
- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
- exit 1
-fi
-
-# Unset variables that we do not need and which cause bugs (e.g. in
-# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
-# suppresses any "Segmentation fault" message there. '((' could
-# trigger a bug in pdksh 5.2.14.
-for as_var in BASH_ENV ENV MAIL MAILPATH
-do eval test x\${$as_var+set} = xset \
- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
-done
-PS1='$ '
-PS2='> '
-PS4='+ '
-
-# NLS nuisances.
-LC_ALL=C
-export LC_ALL
-LANGUAGE=C
-export LANGUAGE
-
-# CDPATH.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-
-# as_fn_error ERROR [LINENO LOG_FD]
-# ---------------------------------
-# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with status $?, using 1 if that was 0.
-as_fn_error ()
-{
- as_status=$?; test $as_status -eq 0 && as_status=1
- if test "$3"; then
- as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
- fi
- $as_echo "$as_me: error: $1" >&2
- as_fn_exit $as_status
-} # as_fn_error
-
-
-# as_fn_set_status STATUS
-# -----------------------
-# Set $? to STATUS, without forking.
-as_fn_set_status ()
-{
- return $1
-} # as_fn_set_status
-
-# as_fn_exit STATUS
-# -----------------
-# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
-as_fn_exit ()
-{
- set +e
- as_fn_set_status $1
- exit $1
-} # as_fn_exit
-
-# as_fn_unset VAR
-# ---------------
-# Portably unset VAR.
-as_fn_unset ()
-{
- { eval $1=; unset $1;}
-}
-as_unset=as_fn_unset
-# as_fn_append VAR VALUE
-# ----------------------
-# Append the text in VALUE to the end of the definition contained in VAR. Take
-# advantage of any shell optimizations that allow amortized linear growth over
-# repeated appends, instead of the typical quadratic growth present in naive
-# implementations.
-if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
- eval 'as_fn_append ()
- {
- eval $1+=\$2
- }'
-else
- as_fn_append ()
- {
- eval $1=\$$1\$2
- }
-fi # as_fn_append
-
-# as_fn_arith ARG...
-# ------------------
-# Perform arithmetic evaluation on the ARGs, and store the result in the
-# global $as_val. Take advantage of shells that can avoid forks. The arguments
-# must be portable across $(()) and expr.
-if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
- eval 'as_fn_arith ()
- {
- as_val=$(( $* ))
- }'
-else
- as_fn_arith ()
- {
- as_val=`expr "$@" || test $? -eq 1`
- }
-fi # as_fn_arith
-
-
-if expr a : '\(a\)' >/dev/null 2>&1 &&
- test "X`expr 00001 : '.*\(...\)'`" = X001; then
- as_expr=expr
-else
- as_expr=false
-fi
-
-if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
- as_basename=basename
-else
- as_basename=false
-fi
-
-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
- as_dirname=dirname
-else
- as_dirname=false
-fi
-
-as_me=`$as_basename -- "$0" ||
-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
- X"$0" : 'X\(//\)$' \| \
- X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X/"$0" |
- sed '/^.*\/\([^/][^/]*\)\/*$/{
- s//\1/
- q
- }
- /^X\/\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\/\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
-
-# Avoid depending upon Character Ranges.
-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-as_cr_digits='0123456789'
-as_cr_alnum=$as_cr_Letters$as_cr_digits
-
-ECHO_C= ECHO_N= ECHO_T=
-case `echo -n x` in #(((((
--n*)
- case `echo 'xy\c'` in
- *c*) ECHO_T=' ';; # ECHO_T is single tab character.
- xy) ECHO_C='\c';;
- *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
- ECHO_T=' ';;
- esac;;
-*)
- ECHO_N='-n';;
-esac
-
-rm -f conf$$ conf$$.exe conf$$.file
-if test -d conf$$.dir; then
- rm -f conf$$.dir/conf$$.file
-else
- rm -f conf$$.dir
- mkdir conf$$.dir 2>/dev/null
-fi
-if (echo >conf$$.file) 2>/dev/null; then
- if ln -s conf$$.file conf$$ 2>/dev/null; then
- as_ln_s='ln -s'
- # ... but there are two gotchas:
- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
- # In both cases, we have to default to `cp -p'.
- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
- as_ln_s='cp -p'
- elif ln conf$$.file conf$$ 2>/dev/null; then
- as_ln_s=ln
- else
- as_ln_s='cp -p'
- fi
-else
- as_ln_s='cp -p'
-fi
-rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-rmdir conf$$.dir 2>/dev/null
-
-
-# as_fn_mkdir_p
-# -------------
-# Create "$as_dir" as a directory, including parents if necessary.
-as_fn_mkdir_p ()
-{
-
- case $as_dir in #(
- -*) as_dir=./$as_dir;;
- esac
- test -d "$as_dir" || eval $as_mkdir_p || {
- as_dirs=
- while :; do
- case $as_dir in #(
- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
- *) as_qdir=$as_dir;;
- esac
- as_dirs="'$as_qdir' $as_dirs"
- as_dir=`$as_dirname -- "$as_dir" ||
-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$as_dir" : 'X\(//\)[^/]' \| \
- X"$as_dir" : 'X\(//\)$' \| \
- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$as_dir" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- test -d "$as_dir" && break
- done
- test -z "$as_dirs" || eval "mkdir $as_dirs"
- } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
-
-
-} # as_fn_mkdir_p
-if mkdir -p . 2>/dev/null; then
- as_mkdir_p='mkdir -p "$as_dir"'
-else
- test -d ./-p && rmdir ./-p
- as_mkdir_p=false
-fi
-
-if test -x / >/dev/null 2>&1; then
- as_test_x='test -x'
-else
- if ls -dL / >/dev/null 2>&1; then
- as_ls_L_option=L
- else
- as_ls_L_option=
- fi
- as_test_x='
- eval sh -c '\''
- if test -d "$1"; then
- test -d "$1/.";
- else
- case $1 in #(
- -*)set "./$1";;
- esac;
- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
- ???[sx]*):;;*)false;;esac;fi
- '\'' sh
- '
-fi
-as_executable_p=$as_test_x
-
-# Sed expression to map a string onto a valid CPP name.
-as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-
-# Sed expression to map a string onto a valid variable name.
-as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-
-
-exec 6>&1
-## ----------------------------------- ##
-## Main body of $CONFIG_STATUS script. ##
-## ----------------------------------- ##
-# Save the log message, to keep $0 and so on meaningful, and to
-# report actual input values of CONFIG_FILES etc. instead of their
-# values after options handling.
-ac_log="
-This file was extended by $as_me, which was
-generated by GNU Autoconf 2.64. Invocation command line was
-
- CONFIG_FILES = $CONFIG_FILES
- CONFIG_HEADERS = $CONFIG_HEADERS
- CONFIG_LINKS = $CONFIG_LINKS
- CONFIG_COMMANDS = $CONFIG_COMMANDS
- $ $0 $@
-
-on `(hostname || uname -n) 2>/dev/null | sed 1q`
-"
-
-# Files that config.status was made for.
-config_files=" Makefile testsuite/Makefile"
-config_headers=" config.h:config.in"
-config_commands=" default"
-
-ac_cs_usage="\
-\`$as_me' instantiates files and other configuration actions
-from templates according to the current configuration. Unless the files
-and actions are specified as TAGs, all are instantiated by default.
-
-Usage: $0 [OPTION]... [TAG]...
-
- -h, --help print this help, then exit
- -V, --version print version number and configuration settings, then exit
- -q, --quiet, --silent
- do not print progress messages
- -d, --debug don't remove temporary files
- --recheck update $as_me by reconfiguring in the same conditions
- --file=FILE[:TEMPLATE]
- instantiate the configuration file FILE
- --header=FILE[:TEMPLATE]
- instantiate the configuration header FILE
-
-Configuration files:
-$config_files
-
-Configuration headers:
-$config_headers
-
-Configuration commands:
-$config_commands
-
-Report bugs to the package provider."
-
-ac_cs_version="\
-config.status
-configured by /home/xavier/sdcc_gas/support/sdbinutils/libiberty/configure, generated by GNU Autoconf 2.64,
- with options \"'--srcdir=.././libiberty' '--cache-file=./config.cache' '--with-system-zlib' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '--cache-file=/dev/null' '--program-transform-name=s,y,y,' '--disable-option-checking' '--build=x86_64-pc-linux-gnu' '--host=x86_64-pc-linux-gnu' '--target=x86_64-pc-linux-gnu' 'build_alias=x86_64-pc-linux-gnu' 'host_alias=x86_64-pc-linux-gnu' 'target_alias=x86_64-pc-linux-gnu' 'CC=gcc' 'CFLAGS=-g -O2' 'LDFLAGS=-static-libstdc++ -static-libgcc '\"
-
-Copyright (C) 2009 Free Software Foundation, Inc.
-This config.status script is free software; the Free Software Foundation
-gives unlimited permission to copy, distribute and modify it."
-
-ac_pwd='/home/xavier/sdcc_gas/support/sdbinutils/libiberty'
-srcdir='.'
-INSTALL='/usr/bin/install -c'
-test -n "$AWK" || AWK=awk
-# The default lists apply if the user does not specify any file.
-ac_need_defaults=:
-while test $# != 0
-do
- case $1 in
- --*=*)
- ac_option=`expr "X$1" : 'X\([^=]*\)='`
- ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
- ac_shift=:
- ;;
- *)
- ac_option=$1
- ac_optarg=$2
- ac_shift=shift
- ;;
- esac
-
- case $ac_option in
- # Handling of the options.
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
- ac_cs_recheck=: ;;
- --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
- $as_echo "$ac_cs_version"; exit ;;
- --debug | --debu | --deb | --de | --d | -d )
- debug=: ;;
- --file | --fil | --fi | --f )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- esac
- as_fn_append CONFIG_FILES " '$ac_optarg'"
- ac_need_defaults=false;;
- --header | --heade | --head | --hea )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- esac
- as_fn_append CONFIG_HEADERS " '$ac_optarg'"
- ac_need_defaults=false;;
- --he | --h)
- # Conflict between --help and --header
- as_fn_error "ambiguous option: \`$1'
-Try \`$0 --help' for more information.";;
- --help | --hel | -h )
- $as_echo "$ac_cs_usage"; exit ;;
- -q | -quiet | --quiet | --quie | --qui | --qu | --q \
- | -silent | --silent | --silen | --sile | --sil | --si | --s)
- ac_cs_silent=: ;;
-
- # This is an error.
- -*) as_fn_error "unrecognized option: \`$1'
-Try \`$0 --help' for more information." ;;
-
- *) as_fn_append ac_config_targets " $1"
- ac_need_defaults=false ;;
-
- esac
- shift
-done
-
-ac_configure_extra_args=
-
-if $ac_cs_silent; then
- exec 6>/dev/null
- ac_configure_extra_args="$ac_configure_extra_args --silent"
-fi
-
-if $ac_cs_recheck; then
- set X '/bin/bash' '/home/xavier/sdcc_gas/support/sdbinutils/libiberty/configure' '--srcdir=.././libiberty' '--cache-file=./config.cache' '--with-system-zlib' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '--cache-file=/dev/null' '--program-transform-name=s,y,y,' '--disable-option-checking' '--build=x86_64-pc-linux-gnu' '--host=x86_64-pc-linux-gnu' '--target=x86_64-pc-linux-gnu' 'build_alias=x86_64-pc-linux-gnu' 'host_alias=x86_64-pc-linux-gnu' 'target_alias=x86_64-pc-linux-gnu' 'CC=gcc' 'CFLAGS=-g -O2' 'LDFLAGS=-static-libstdc++ -static-libgcc ' $ac_configure_extra_args --no-create --no-recursion
- shift
- $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
- CONFIG_SHELL='/bin/bash'
- export CONFIG_SHELL
- exec "$@"
-fi
-
-exec 5>>config.log
-{
- echo
- sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
-## Running $as_me. ##
-_ASBOX
- $as_echo "$ac_log"
-} >&5
-
-#
-# INIT-COMMANDS
-#
-srcdir=.
-host=x86_64-pc-linux-gnu
-target=x86_64-pc-linux-gnu
-with_target_subdir=
-with_multisubdir=
-ac_configure_args="--enable-multilib '--srcdir=.././libiberty' '--cache-file=./config.cache' '--with-system-zlib' '--prefix=/usr/local' '--disable-mcs51-port' '--disable-z80-port' '--disable-z180-port' '--disable-r2k-port' '--disable-r3ka-port' '--disable-gbz80-port' '--disable-tlcs90-port' '--disable-ez80_z80-port' '--disable-ds390-port' '--disable-ds400-port' '--disable-pic14-port' '--disable-pic16-port' '--disable-hc08-port' '--disable-s08-port' '--disable-pdk13-port' '--disable-pdk14-port' '--disable-pdk15-port' '--enable-pdk16-port' '--disable-ucsim' '--disable-device-lib' '--disable-packihx' '--disable-pdk16-port' '--cache-file=/dev/null' '--program-transform-name=s,y,y,' '--disable-option-checking' '--build=x86_64-pc-linux-gnu' '--host=x86_64-pc-linux-gnu' '--target=x86_64-pc-linux-gnu' 'build_alias=x86_64-pc-linux-gnu' 'host_alias=x86_64-pc-linux-gnu' 'target_alias=x86_64-pc-linux-gnu' 'CC=gcc' 'CFLAGS=-g -O2' 'LDFLAGS=-static-libstdc++ -static-libgcc '"
-CONFIG_SHELL=/bin/bash
-ORIGINAL_LD_FOR_MULTILIBS="ld"
-libiberty_topdir=./..
-
-
-
-# Handling of arguments.
-for ac_config_target in $ac_config_targets
-do
- case $ac_config_target in
- "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;;
- "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
- "testsuite/Makefile") CONFIG_FILES="$CONFIG_FILES testsuite/Makefile" ;;
- "default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
-
- *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
- esac
-done
-
-
-# If the user did not use the arguments to specify the items to instantiate,
-# then the envvar interface is used. Set only those that are not.
-# We use the long form for the default assignment because of an extremely
-# bizarre bug on SunOS 4.1.3.
-if $ac_need_defaults; then
- test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
- test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
- test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
-fi
-
-# Have a temporary directory for convenience. Make it in the build tree
-# simply because there is no reason against having it here, and in addition,
-# creating and moving files from /tmp can sometimes cause problems.
-# Hook for its removal unless debugging.
-# Note that there is a small window in which the directory will not be cleaned:
-# after its creation but before its name has been assigned to `$tmp'.
-$debug ||
-{
- tmp=
- trap 'exit_status=$?
- { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
-' 0
- trap 'as_fn_exit 1' 1 2 13 15
-}
-# Create a (secure) tmp directory for tmp files.
-
-{
- tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
- test -n "$tmp" && test -d "$tmp"
-} ||
-{
- tmp=./conf$$-$RANDOM
- (umask 077 && mkdir "$tmp")
-} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
-
-# Set up the scripts for CONFIG_FILES section.
-# No need to generate them if there are no CONFIG_FILES.
-# This happens for instance with `./config.status config.h'.
-if test -n "$CONFIG_FILES"; then
-
-if $AWK 'BEGIN { getline <"/dev/null" }' </dev/null 2>/dev/null; then
- ac_cs_awk_getline=:
- ac_cs_awk_pipe_init=
- ac_cs_awk_read_file='
- while ((getline aline < (F[key])) > 0)
- print(aline)
- close(F[key])'
- ac_cs_awk_pipe_fini=
-else
- ac_cs_awk_getline=false
- ac_cs_awk_pipe_init="print \"cat <<'|#_!!_#|' &&\""
- ac_cs_awk_read_file='
- print "|#_!!_#|"
- print "cat " F[key] " &&"
- '$ac_cs_awk_pipe_init
- # The final `:' finishes the AND list.
- ac_cs_awk_pipe_fini='END { print "|#_!!_#|"; print ":" }'
-fi
-ac_cr=`echo X | tr X '\015'`
-# On cygwin, bash can eat \r inside `` if the user requested igncr.
-# But we know of no other shell where ac_cr would be empty at this
-# point, so we can use a bashism as a fallback.
-if test "x$ac_cr" = x; then
- eval ac_cr=\$\'\\r\'
-fi
-ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
- ac_cs_awk_cr='\r'
-else
- ac_cs_awk_cr=$ac_cr
-fi
-
-echo 'BEGIN {' >"$tmp/subs1.awk" &&
-cat >>"$tmp/subs1.awk" <<\_ACAWK &&
-F["host_makefile_frag"]="xhost-mkfrag"
-_ACAWK
-cat >>"$tmp/subs1.awk" <<\_ACAWK &&
-S["LTLIBOBJS"]=" ${LIBOBJDIR}./setproctitle$U.lo"
-S["INSTALL_DEST"]="libdir"
-S["pexecute"]="pex-unix"
-S["target_header_dir"]=""
-S["CHECK"]="really-check"
-S["LIBOBJS"]=" ${LIBOBJDIR}./setproctitle$U.o"
-S["NOASANFLAG"]=""
-S["PICFLAG"]=""
-S["INSTALL_DATA"]="/usr/bin/install -c -m 644"
-S["INSTALL_SCRIPT"]="/usr/bin/install -c"
-S["INSTALL_PROGRAM"]="/usr/bin/install -c"
-S["OUTPUT_OPTION"]="-o $@"
-S["NO_MINUS_C_MINUS_O"]=""
-S["ac_libiberty_warn_cflags"]="-W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -Wshadow=local -pedantic "
-S["EGREP"]="/bin/grep -E"
-S["GREP"]="/bin/grep"
-S["CPP"]="gcc -E"
-S["OBJEXT"]="o"
-S["EXEEXT"]=""
-S["ac_ct_CC"]=""
-S["CPPFLAGS"]=""
-S["LDFLAGS"]="-static-libstdc++ -static-libgcc "
-S["CFLAGS"]="-g -O2"
-S["CC"]="gcc"
-S["RANLIB"]="ranlib"
-S["AR"]="ar"
-S["host_os"]="linux-gnu"
-S["host_vendor"]="pc"
-S["host_cpu"]="x86_64"
-S["host"]="x86_64-pc-linux-gnu"
-S["build_os"]="linux-gnu"
-S["build_vendor"]="pc"
-S["build_cpu"]="x86_64"
-S["build"]="x86_64-pc-linux-gnu"
-S["HAVE_PERL"]=""
-S["PERL"]="perl"
-S["BUILD_INFO"]="info"
-S["MAKEINFO"]="makeinfo --split-size=5000000"
-S["NOTMAINT"]=""
-S["MAINT"]="#"
-S["libiberty_topdir"]="./.."
-S["target_alias"]="x86_64-pc-linux-gnu"
-S["host_alias"]="x86_64-pc-linux-gnu"
-S["build_alias"]="x86_64-pc-linux-gnu"
-S["LIBS"]=""
-S["ECHO_T"]=""
-S["ECHO_N"]="-n"
-S["ECHO_C"]=""
-S["DEFS"]="-DHAVE_CONFIG_H"
-S["mandir"]="${datarootdir}/man"
-S["localedir"]="${datarootdir}/locale"
-S["libdir"]="${exec_prefix}/lib"
-S["psdir"]="${docdir}"
-S["pdfdir"]="${docdir}"
-S["dvidir"]="${docdir}"
-S["htmldir"]="${docdir}"
-S["infodir"]="${datarootdir}/info"
-S["docdir"]="${datarootdir}/doc/${PACKAGE}"
-S["oldincludedir"]="/usr/include"
-S["includedir"]="${prefix}/include"
-S["localstatedir"]="${prefix}/var"
-S["sharedstatedir"]="${prefix}/com"
-S["sysconfdir"]="${prefix}/etc"
-S["datadir"]="${datarootdir}"
-S["datarootdir"]="${prefix}/share"
-S["libexecdir"]="${exec_prefix}/libexec"
-S["sbindir"]="${exec_prefix}/sbin"
-S["bindir"]="${exec_prefix}/bin"
-S["program_transform_name"]="s,y,y,"
-S["prefix"]="/usr/local"
-S["exec_prefix"]="${prefix}"
-S["PACKAGE_URL"]=""
-S["PACKAGE_BUGREPORT"]=""
-S["PACKAGE_STRING"]=""
-S["PACKAGE_VERSION"]=""
-S["PACKAGE_TARNAME"]=""
-S["PACKAGE_NAME"]=""
-S["PATH_SEPARATOR"]=":"
-S["SHELL"]="/bin/bash"
-_ACAWK
-cat >>"$tmp/subs1.awk" <<_ACAWK &&
- for (key in S) S_is_set[key] = 1
- FS = ""
- $ac_cs_awk_pipe_init
-}
-{
- line = $ 0
- nfields = split(line, field, "@")
- substed = 0
- len = length(field[1])
- for (i = 2; i < nfields; i++) {
- key = field[i]
- keylen = length(key)
- if (S_is_set[key]) {
- value = S[key]
- line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
- len += length(value) + length(field[++i])
- substed = 1
- } else
- len += 1 + keylen
- }
- if (nfields == 3 && !substed) {
- key = field[2]
- if (F[key] != "" && line ~ /^[ ]*@.*@[ ]*$/) {
- $ac_cs_awk_read_file
- next
- }
- }
- print line
-}
-$ac_cs_awk_pipe_fini
-_ACAWK
-if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
- sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
-else
- cat
-fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
- || as_fn_error "could not setup config files machinery" "$LINENO" 5
-fi # test -n "$CONFIG_FILES"
-
-# Set up the scripts for CONFIG_HEADERS section.
-# No need to generate them if there are no CONFIG_HEADERS.
-# This happens for instance with `./config.status Makefile'.
-if test -n "$CONFIG_HEADERS"; then
-cat >"$tmp/defines.awk" <<\_ACAWK ||
-BEGIN {
-D["PACKAGE_NAME"]=" \"\""
-D["PACKAGE_TARNAME"]=" \"\""
-D["PACKAGE_VERSION"]=" \"\""
-D["PACKAGE_STRING"]=" \"\""
-D["PACKAGE_BUGREPORT"]=" \"\""
-D["PACKAGE_URL"]=" \"\""
-D["STDC_HEADERS"]=" 1"
-D["HAVE_SYS_TYPES_H"]=" 1"
-D["HAVE_SYS_STAT_H"]=" 1"
-D["HAVE_STDLIB_H"]=" 1"
-D["HAVE_STRING_H"]=" 1"
-D["HAVE_MEMORY_H"]=" 1"
-D["HAVE_STRINGS_H"]=" 1"
-D["HAVE_INTTYPES_H"]=" 1"
-D["HAVE_STDINT_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["__EXTENSIONS__"]=" 1"
-D["_ALL_SOURCE"]=" 1"
-D["_GNU_SOURCE"]=" 1"
-D["_POSIX_PTHREAD_SEMANTICS"]=" 1"
-D["_TANDEM_SOURCE"]=" 1"
-D["HAVE_SYS_FILE_H"]=" 1"
-D["HAVE_SYS_PARAM_H"]=" 1"
-D["HAVE_LIMITS_H"]=" 1"
-D["HAVE_STDLIB_H"]=" 1"
-D["HAVE_MALLOC_H"]=" 1"
-D["HAVE_STRING_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["HAVE_STRINGS_H"]=" 1"
-D["HAVE_SYS_TIME_H"]=" 1"
-D["HAVE_TIME_H"]=" 1"
-D["HAVE_SYS_RESOURCE_H"]=" 1"
-D["HAVE_SYS_STAT_H"]=" 1"
-D["HAVE_SYS_MMAN_H"]=" 1"
-D["HAVE_FCNTL_H"]=" 1"
-D["HAVE_ALLOCA_H"]=" 1"
-D["HAVE_SYS_SYSINFO_H"]=" 1"
-D["HAVE_SYS_SYSCTL_H"]=" 1"
-D["HAVE_STDINT_H"]=" 1"
-D["HAVE_STDIO_EXT_H"]=" 1"
-D["HAVE_SYS_PRCTL_H"]=" 1"
-D["HAVE_SYS_WAIT_H"]=" 1"
-D["TIME_WITH_SYS_TIME"]=" 1"
-D["SIZEOF_INT"]=" 4"
-D["SIZEOF_LONG"]=" 8"
-D["SIZEOF_SIZE_T"]=" 8"
-D["HAVE_LONG_LONG"]=" 1"
-D["SIZEOF_LONG_LONG"]=" 8"
-D["UNSIGNED_64BIT_TYPE"]=" uint64_t"
-D["HAVE_INTPTR_T"]=" 1"
-D["HAVE_UINTPTR_T"]=" 1"
-D["HAVE_UINTPTR_T"]=" 1"
-D["HAVE_ASPRINTF"]=" 1"
-D["HAVE_ATEXIT"]=" 1"
-D["HAVE_BASENAME"]=" 1"
-D["HAVE_BCMP"]=" 1"
-D["HAVE_BCOPY"]=" 1"
-D["HAVE_BSEARCH"]=" 1"
-D["HAVE_BZERO"]=" 1"
-D["HAVE_CALLOC"]=" 1"
-D["HAVE_CLOCK"]=" 1"
-D["HAVE_FFS"]=" 1"
-D["HAVE_GETCWD"]=" 1"
-D["HAVE_GETPAGESIZE"]=" 1"
-D["HAVE_GETTIMEOFDAY"]=" 1"
-D["HAVE_INDEX"]=" 1"
-D["HAVE_INSQUE"]=" 1"
-D["HAVE_MEMCHR"]=" 1"
-D["HAVE_MEMCMP"]=" 1"
-D["HAVE_MEMCPY"]=" 1"
-D["HAVE_MEMMEM"]=" 1"
-D["HAVE_MEMMOVE"]=" 1"
-D["HAVE_MEMPCPY"]=" 1"
-D["HAVE_MEMSET"]=" 1"
-D["HAVE_MKSTEMPS"]=" 1"
-D["HAVE_PUTENV"]=" 1"
-D["HAVE_RANDOM"]=" 1"
-D["HAVE_RENAME"]=" 1"
-D["HAVE_RINDEX"]=" 1"
-D["HAVE_SETENV"]=" 1"
-D["HAVE_SNPRINTF"]=" 1"
-D["HAVE_SIGSETMASK"]=" 1"
-D["HAVE_STPCPY"]=" 1"
-D["HAVE_STPNCPY"]=" 1"
-D["HAVE_STRCASECMP"]=" 1"
-D["HAVE_STRCHR"]=" 1"
-D["HAVE_STRDUP"]=" 1"
-D["HAVE_STRNCASECMP"]=" 1"
-D["HAVE_STRNDUP"]=" 1"
-D["HAVE_STRNLEN"]=" 1"
-D["HAVE_STRRCHR"]=" 1"
-D["HAVE_STRSTR"]=" 1"
-D["HAVE_STRTOD"]=" 1"
-D["HAVE_STRTOL"]=" 1"
-D["HAVE_STRTOUL"]=" 1"
-D["HAVE_STRTOLL"]=" 1"
-D["HAVE_STRTOULL"]=" 1"
-D["HAVE_STRVERSCMP"]=" 1"
-D["HAVE_TMPNAM"]=" 1"
-D["HAVE_VASPRINTF"]=" 1"
-D["HAVE_VFPRINTF"]=" 1"
-D["HAVE_VPRINTF"]=" 1"
-D["HAVE_VSNPRINTF"]=" 1"
-D["HAVE_VSPRINTF"]=" 1"
-D["HAVE_WAITPID"]=" 1"
-D["STACK_DIRECTION"]=" -1"
-D["HAVE_FORK"]=" 1"
-D["HAVE_VFORK"]=" 1"
-D["HAVE_WORKING_VFORK"]=" 1"
-D["HAVE_WORKING_FORK"]=" 1"
-D["HAVE_SYS_ERRLIST"]=" 1"
-D["HAVE_SYS_NERR"]=" 1"
-D["HAVE_SYS_SIGLIST"]=" 1"
-D["HAVE___FSETLOCKING"]=" 1"
-D["HAVE_CANONICALIZE_FILE_NAME"]=" 1"
-D["HAVE_DUP3"]=" 1"
-D["HAVE_GETRLIMIT"]=" 1"
-D["HAVE_GETRUSAGE"]=" 1"
-D["HAVE_GETTIMEOFDAY"]=" 1"
-D["HAVE_ON_EXIT"]=" 1"
-D["HAVE_PSIGNAL"]=" 1"
-D["HAVE_REALPATH"]=" 1"
-D["HAVE_SETRLIMIT"]=" 1"
-D["HAVE_SBRK"]=" 1"
-D["HAVE_STRERROR"]=" 1"
-D["HAVE_STRSIGNAL"]=" 1"
-D["HAVE_SYSCONF"]=" 1"
-D["HAVE_SYSCTL"]=" 1"
-D["HAVE_TIMES"]=" 1"
-D["HAVE_WAIT3"]=" 1"
-D["HAVE_WAIT4"]=" 1"
-D["HAVE_DECL_BASENAME"]=" 1"
-D["HAVE_DECL_FFS"]=" 1"
-D["HAVE_DECL_ASPRINTF"]=" 1"
-D["HAVE_DECL_VASPRINTF"]=" 1"
-D["HAVE_DECL_SNPRINTF"]=" 1"
-D["HAVE_DECL_VSNPRINTF"]=" 1"
-D["HAVE_DECL_CALLOC"]=" 1"
-D["HAVE_DECL_GETENV"]=" 1"
-D["HAVE_DECL_GETOPT"]=" 1"
-D["HAVE_DECL_MALLOC"]=" 1"
-D["HAVE_DECL_REALLOC"]=" 1"
-D["HAVE_DECL_SBRK"]=" 1"
-D["HAVE_DECL_STRTOL"]=" 1"
-D["HAVE_DECL_STRTOUL"]=" 1"
-D["HAVE_DECL_STRTOLL"]=" 1"
-D["HAVE_DECL_STRTOULL"]=" 1"
-D["HAVE_DECL_STRVERSCMP"]=" 1"
-D["HAVE_DECL_STRNLEN"]=" 1"
-D["HAVE_STDLIB_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["HAVE_GETPAGESIZE"]=" 1"
-D["HAVE_MMAP"]=" 1"
- for (key in D) D_is_set[key] = 1
- FS = ""
-}
-/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
- line = $ 0
- split(line, arg, " ")
- if (arg[1] == "#") {
- defundef = arg[2]
- mac1 = arg[3]
- } else {
- defundef = substr(arg[1], 2)
- mac1 = arg[2]
- }
- split(mac1, mac2, "(") #)
- macro = mac2[1]
- prefix = substr(line, 1, index(line, defundef) - 1)
- if (D_is_set[macro]) {
- # Preserve the white space surrounding the "#".
- print prefix "define", macro P[macro] D[macro]
- next
- } else {
- # Replace #undef with comments. This is necessary, for example,
- # in the case of _POSIX_SOURCE, which is predefined and required
- # on some systems where configure will not decide to define it.
- if (defundef == "undef") {
- print "/*", prefix defundef, macro, "*/"
- next
- }
- }
-}
-{ print }
-_ACAWK
- as_fn_error "could not setup config headers machinery" "$LINENO" 5
-fi # test -n "$CONFIG_HEADERS"
-
-
-eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
-shift
-for ac_tag
-do
- case $ac_tag in
- :[FHLC]) ac_mode=$ac_tag; continue;;
- esac
- case $ac_mode$ac_tag in
- :[FHL]*:*);;
- :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
- :[FH]-) ac_tag=-:-;;
- :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
- esac
- ac_save_IFS=$IFS
- IFS=:
- set x $ac_tag
- IFS=$ac_save_IFS
- shift
- ac_file=$1
- shift
-
- case $ac_mode in
- :L) ac_source=$1;;
- :[FH])
- ac_file_inputs=
- for ac_f
- do
- case $ac_f in
- -) ac_f="$tmp/stdin";;
- *) # Look for the file first in the build tree, then in the source tree
- # (if the path is not absolute). The absolute path cannot be DOS-style,
- # because $ac_f cannot contain `:'.
- test -f "$ac_f" ||
- case $ac_f in
- [\\/$]*) false;;
- *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
- esac ||
- as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
- esac
- case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
- as_fn_append ac_file_inputs " '$ac_f'"
- done
-
- # Let's still pretend it is `configure' which instantiates (i.e., don't
- # use $as_me), people would be surprised to read:
- # /* config.h. Generated by config.status. */
- configure_input='Generated from '`
- $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
- `' by configure.'
- if test x"$ac_file" != x-; then
- configure_input="$ac_file. $configure_input"
- { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
-$as_echo "$as_me: creating $ac_file" >&6;}
- fi
- # Neutralize special characters interpreted by sed in replacement strings.
- case $configure_input in #(
- *\&* | *\|* | *\\* )
- ac_sed_conf_input=`$as_echo "$configure_input" |
- sed 's/[\\\\&|]/\\\\&/g'`;; #(
- *) ac_sed_conf_input=$configure_input;;
- esac
-
- case $ac_tag in
- *:-:* | *:-) cat >"$tmp/stdin" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
- esac
- ;;
- esac
-
- ac_dir=`$as_dirname -- "$ac_file" ||
-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$ac_file" : 'X\(//\)[^/]' \| \
- X"$ac_file" : 'X\(//\)$' \| \
- X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$ac_file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- as_dir="$ac_dir"; as_fn_mkdir_p
- ac_builddir=.
-
-case "$ac_dir" in
-.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-*)
- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
- # A ".." for each directory in $ac_dir_suffix.
- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
- case $ac_top_builddir_sub in
- "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
- *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
- esac ;;
-esac
-ac_abs_top_builddir=$ac_pwd
-ac_abs_builddir=$ac_pwd$ac_dir_suffix
-# for backward compatibility:
-ac_top_builddir=$ac_top_build_prefix
-
-case $srcdir in
- .) # We are building in place.
- ac_srcdir=.
- ac_top_srcdir=$ac_top_builddir_sub
- ac_abs_top_srcdir=$ac_pwd ;;
- [\\/]* | ?:[\\/]* ) # Absolute name.
- ac_srcdir=$srcdir$ac_dir_suffix;
- ac_top_srcdir=$srcdir
- ac_abs_top_srcdir=$srcdir ;;
- *) # Relative name.
- ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
- ac_top_srcdir=$ac_top_build_prefix$srcdir
- ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-esac
-ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-
-
- case $ac_mode in
- :F)
- #
- # CONFIG_FILE
- #
-
- case $INSTALL in
- [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
- *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
- esac
-# If the template does not know about datarootdir, expand it.
-# FIXME: This hack should be removed a few years after 2.60.
-ac_datarootdir_hack=; ac_datarootdir_seen=
-ac_sed_dataroot='
-/datarootdir/ {
- p
- q
-}
-/@datadir@/p
-/@docdir@/p
-/@infodir@/p
-/@localedir@/p
-/@mandir@/p'
-case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
-*datarootdir*) ac_datarootdir_seen=yes;;
-*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
-$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
- ac_datarootdir_hack='
- s&@datadir@&${datarootdir}&g
- s&@docdir@&${datarootdir}/doc/${PACKAGE}&g
- s&@infodir@&${datarootdir}/info&g
- s&@localedir@&${datarootdir}/locale&g
- s&@mandir@&${datarootdir}/man&g
- s&\${datarootdir}&${prefix}/share&g' ;;
-esac
-ac_sed_extra="/^[ ]*VPATH[ ]*=/{
-s/:*\$(srcdir):*/:/
-s/:*\${srcdir}:*/:/
-s/:*@srcdir@:*/:/
-s/^\([^=]*=[ ]*\):*/\1/
-s/:*$//
-s/^[^=]*=[ ]*$//
-}
-
-:t
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-s|@configure_input@|$ac_sed_conf_input|;t t
-s&@top_builddir@&$ac_top_builddir_sub&;t t
-s&@top_build_prefix@&$ac_top_build_prefix&;t t
-s&@srcdir@&$ac_srcdir&;t t
-s&@abs_srcdir@&$ac_abs_srcdir&;t t
-s&@top_srcdir@&$ac_top_srcdir&;t t
-s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
-s&@builddir@&$ac_builddir&;t t
-s&@abs_builddir@&$ac_abs_builddir&;t t
-s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
-s&@INSTALL@&$ac_INSTALL&;t t
-$ac_datarootdir_hack
-"
-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" |
-if $ac_cs_awk_getline; then
- $AWK -f "$tmp/subs.awk"
-else
- $AWK -f "$tmp/subs.awk" | $SHELL
-fi >$tmp/out \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
-
-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
- { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined." >&5
-$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined." >&2;}
-
- rm -f "$tmp/stdin"
- case $ac_file in
- -) cat "$tmp/out" && rm -f "$tmp/out";;
- *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
- esac \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
- ;;
- :H)
- #
- # CONFIG_HEADER
- #
- if test x"$ac_file" != x-; then
- {
- $as_echo "/* $configure_input */" \
- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
- } >"$tmp/config.h" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
- if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
-$as_echo "$as_me: $ac_file is unchanged" >&6;}
- else
- rm -f "$ac_file"
- mv "$tmp/config.h" "$ac_file" \
- || as_fn_error "could not create $ac_file" "$LINENO" 5
- fi
- else
- $as_echo "/* $configure_input */" \
- && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
- || as_fn_error "could not create -" "$LINENO" 5
- fi
- ;;
-
- :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
-$as_echo "$as_me: executing $ac_file commands" >&6;}
- ;;
- esac
-
-
- case $ac_file$ac_mode in
- "default":C) test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
-if test -n "$CONFIG_FILES"; then
- if test -n "${with_target_subdir}"; then
- # FIXME: We shouldn't need to set ac_file
- ac_file=Makefile
- LD="${ORIGINAL_LD_FOR_MULTILIBS}"
- . ${libiberty_topdir}/config-ml.in
- fi
-fi ;;
-
- esac
-done # for ac_tag
-
-
-as_fn_exit 0
diff --git a/support/valdiag/Makefile b/support/valdiag/Makefile
deleted file mode 100644
index af97388..0000000
--- a/support/valdiag/Makefile
+++ /dev/null
@@ -1,54 +0,0 @@
-.SILENT:
-
-PYTHON = python3.6
-
-srcdir = .
-top_srcdir = ../..
-top_builddir = ../..
-
-TESTS_DIR = $(srcdir)/tests
-RESULTS_DIR = results
-PORTS_DIR = $(srcdir)/ports
-BUILD_DIR = gen
-ALL_PORTS = mcs51 mcs51-large mcs51-stack-auto ds390 z80 z180 r2k gbz80 tlcs90 hc08 s08 stm8 pdk14
-
-ALL_TESTS = $(shell find $(TESTS_DIR) -name "*.c")
-
-PORT_RESULTS_DIR = $(RESULTS_DIR)/$(PORT)
-PORT_RESULTS = $(ALL_TESTS:$(TESTS_DIR)/%.c=$(PORT_RESULTS_DIR)/%.out)
-PORT_BUILD_DIR = $(BUILD_DIR)/$(PORT)
-
-all: test-ports
-
-test-ports:
- for i in $(ALL_PORTS); do $(MAKE) test-port PORT=$$i; done
-
-test-mcs51:
- $(MAKE) test-port PORT=mcs51
-
-test-port: port-results
-
-clean: clean-gen
- rm -rf $(RESULTS_DIR) *.pyc
- rm -rf $(BUILD_DIR)
-
-distclean: clean
- rm -r Makefile
-
-clean-gen:
- for i in $(ALL_PORTS); do $(MAKE) clean-port PORT=$$i; done
-
-clean-port:
- rm -rf $(PORT_BUILD_DIR)
-
-$(PORT_RESULTS_DIR)/%.out: $(TESTS_DIR)/%.c
- $(PYTHON) $(srcdir)/valdiag.py $(PORT) $< $(PORT_BUILD_DIR)/$* $(srcdir)/../../device/include > $@
- grep FAIL $@ ; true
- cat $@ | $(PYTHON) $(srcdir)/../regression/compact-results.py
-
-port-results: port-dirs $(PORT_RESULTS)
- cat $(PORT_RESULTS) | $(PYTHON) $(srcdir)/../regression/collate-results.py $(PORT)
-
-port-dirs:
- mkdir -p $(PORT_RESULTS_DIR)
- mkdir -p $(PORT_BUILD_DIR)