diff options
| author | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-24 23:17:51 +0200 |
|---|---|---|
| committer | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-24 23:18:52 +0200 |
| commit | 9e93944f18de5d7e38c15651df0235156d9c6d4e (patch) | |
| tree | fc4f9b788698849e547bb2c1ec82ec7d2742fd83 | |
| parent | d5577a84aadd0195a95b5b4d83e49b40af49425b (diff) | |
Removed intermediate files
73 files changed, 0 insertions, 69854 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 43021ed..0000000 --- a/Makefile +++ /dev/null @@ -1,317 +0,0 @@ -# -# sdcc project main Makefile -# - -SHELL = /bin/sh - - -srcdir = . -top_builddir = . -top_srcdir = . - -EXEEXT = - -include Makefile.common - -SDCC_LIBS = support/makebin -SDCC_SCRIPTS = support/scripts -SDCC_DOC = doc - -# Parts that are not normally compiled but need to be cleaned -SDCC_EXTRA = support/regression support/valdiag - -SDCC_PACKIHX = support/packihx -SDCC_SDBINUTILS = support/sdbinutils - -ifneq ($(OPT_DISABLE_HC08)$(OPT_DISABLE_S08), 11) -SDCC_AS += sdas/as6808 -SDCC_LD += sdcc-ld6808 -endif - -ifeq ($(OPT_DISABLE_STM8), 0) -SDCC_AS += sdas/asstm8 -SDCC_LD += sdcc-ldstm8 -endif - -ifneq ($(OPT_DISABLE_DS390)$(OPT_DISABLE_DS400), 11) -SDCC_AS += sdas/as8xcxxx -endif - -ifeq ($(OPT_DISABLE_MCS51), 0) -SDCC_AS += sdas/as8051 -SDCC_LD += sdcc-ld8051 -SDCC_MISC += debugger/mcs51 -endif - -ifneq ($(OPT_DISABLE_Z80)$(OPT_DISABLE_Z180), 11) -SDCC_AS += sdas/asz80 -SDCC_LD += sdcc-ldz80 -endif - -ifneq ($(OPT_DISABLE_R2K)$(OPT_DISABLE_R3KA), 11) -SDCC_AS += sdas/asrab -SDCC_LD += sdcc-ldz80 -endif - -ifeq ($(OPT_DISABLE_TLCS90), 0) -SDCC_AS += sdas/astlcs90 -endif - -ifeq ($(OPT_DISABLE_GBZ80), 0) -SDCC_AS += sdas/asgb -SDCC_LD += sdcc-ldgb -endif - -ifeq ($(OPT_DISABLE_PDK13), 0) -SDCC_AS += sdas/aspdk13 -SDCC_LD += sdcc-ldpdk -endif - -ifeq ($(OPT_DISABLE_PDK14), 0) -SDCC_AS += sdas/aspdk14 -SDCC_LD += sdcc-ldpdk -endif - -ifeq ($(OPT_DISABLE_PDK15), 0) -SDCC_AS += sdas/aspdk15 -SDCC_LD += sdcc-ldpdk -endif - -ifeq ($(OPT_DISABLE_PDK16), 0) -SDCC_AS += sdas/aspdk16 -SDCC_LD += sdcc-ldpdk -endif - - -ifeq ($(OPT_DISABLE_UCSIM), 0) -TARGETS += sdcc-misc -SDCC_MISC += sim/ucsim -PKGS += $(SDCC_MISC) -endif - -SDCC_BINUTILS = -ifeq ($(OPT_DISABLE_SDBINUTILS), 0) -TARGETS += sdcc-sdbinutils -PKGS += $(SDCC_SDBINUTILS) -SDBINUTILS_BINS = sdar$(EXEEXT) sdranlib$(EXEEXT) sdnm$(EXEEXT) sdobjcopy$(EXEEXT) -SDCC_BINUTILS = sdcc-sdbinutils -endif - -ifeq ($(OPT_DISABLE_DEVICE_LIB), 0) -TARGETS += sdcc-device-lib -PKGS += device/lib -ifeq ($(OPT_DISABLE_NON_FREE), 0) -PKGS += device/non-free/lib -endif -endif - -ifeq ($(OPT_DISABLE_PACKIHX), 0) -TARGETS += sdcc-packihx -PKGS += $(SDCC_PACKIHX) -endif - -ifeq ($(OPT_ENABLE_DOC), 1) -TARGETS += sdcc-doc -endif -# always install docs, which don't need to be built -PKGS += $(SDCC_DOC) - -ifeq ($(OPT_DISABLE_SDCPP), 0) -SDCC_LIBS += support/cpp -endif - -TARGETS += sdcc-libs sdcc-cc sdcc-device-inc sdcc-as sdcc-ld sdcc-scripts - -PKGS += $(SDCC_LIBS) src device/include -ifeq ($(OPT_DISABLE_NON_FREE), 0) -PKGS += device/non-free/include -endif -PKGS += $(SDCC_AS) sdas/linksrc $(SDCC_SCRIPTS) - -PORTS = $(shell cat ports.build) -ALLPORTS = $(shell cat ports.all) - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf sdcc - -tini: checkconf sdcc-tini - -sdcc-libs: sdcc-sdbinutils - for lib in $(SDCC_LIBS); do $(MAKE) -C $$lib; done - -sdcc-cc: sdcc-libs - $(MAKE) -C src - -sdcc-as: - $(foreach as, $(SDCC_AS), $(MAKE) -C $(as) &&) echo "Assemblers built successfully." - -sdcc-ld: - $(MAKE) -C sdas/linksrc $(SDCC_LD) - -sdcc-misc: - for misc in $(SDCC_MISC); do $(MAKE) -C $$misc ; done - -sdcc-scripts: - $(MAKE) -C $(SDCC_SCRIPTS) - -sdcc-packihx: - $(MAKE) -C $(SDCC_PACKIHX) - -sdcc-sdbinutils: - $(MAKE) -C $(SDCC_SDBINUTILS) - # in some cases (cygwin) the real binaries are in .libs - for bin in $(SDBINUTILS_BINS); do \ - if [ -f $(SDCC_SDBINUTILS)/binutils/.libs/$$bin ]; then \ - cp $(SDCC_SDBINUTILS)/binutils/.libs/$$bin bin; \ - else \ - cp $(SDCC_SDBINUTILS)/binutils/$$bin bin; \ - fi \ - done - -sdcc-device-inc: - $(MAKE) -C device/include -ifeq ($(OPT_DISABLE_NON_FREE), 0) - $(MAKE) -C device/non-free/include -endif - -sdcc-device-lib: sdcc-cc sdcc-as sdcc-ld $(SDCC_BINUTILS) - $(MAKE) -C device/lib -ifeq ($(OPT_DISABLE_NON_FREE), 0) - $(MAKE) -C device/non-free/lib -endif - -sdcc-device-tini: - $(MAKE) -C device/include -ifeq ($(OPT_DISABLE_NON_FREE), 0) - $(MAKE) -C device/non-free/include -endif - $(MAKE) -C device/lib model-ds390 model-ds400 - -# doc depends on latex and latex2html -sdcc-doc: - $(MAKE) -C doc - -sdcc: $(TARGETS) - -sdcc-tini: sdcc-cc sdcc-as sdcc-ld sdcc-device-tini sdcc-packihx - $(MAKE) -f main.mk all - -# Some interesting sub rules -sdcc-bin: sdcc-cc sdcc-as sdcc-ld sdcc-misc - -sdcc-base: sdcc-cc sdcc-as sdcc-ld - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: checkconf sdcc - $(MAKE) -f main.mk install - @for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg install ;\ - done - -# Deleting all the installed files -# -------------------------------- -uninstall: - $(MAKE) -f main.mk uninstall - @for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg uninstall ;\ - done - -# Deleting all files created by building the program -# -------------------------------------------------- -clean: - @echo "+ Cleaning root of the project..." - $(MAKE) -f $(srcdir)/clean.mk clean - @echo "+ Cleaning packages in their directories..." - for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg PORTS="$(PORTS)" EXEEXT=$(EXEEXT) clean ;\ - done - -# Deleting all files created by configuring or building the program -# ----------------------------------------------------------------- -distclean: - @echo "+ DistCleaning packages using clean.mk..." - for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg PORTS="$(PORTS)" EXEEXT=$(EXEEXT) distclean ;\ - done - for pkg in $(SDCC_EXTRA); do \ - $(MAKE) -C $$pkg distclean; \ - done - @echo "+ DistCleaning root of the project..." - $(MAKE) -f $(srcdir)/clean.mk distclean - -# Like clean but some files may still exist -# ----------------------------------------- -mostlyclean: clean - $(MAKE) -f $(srcdir)/clean.mk mostlyclean - for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg PORTS="$(PORTS)" EXEEXT=$(EXEEXT) mostlyclean ;\ - done - -# Deleting everything that can reconstructed by this Makefile. It deletes -# everything deleted by distclean plus files created by bison, stc. -# ----------------------------------------------------------------------- -realclean: distclean - $(MAKE) -f $(srcdir)/clean.mk realclean - for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg PORTS="$(PORTS)" EXEEXT=$(EXEEXT) realclean ;\ - done - -# Performing self-test -# -------------------- -check: - -# Performing installation test -# ---------------------------- -installcheck: - -# Creating dependencies -# --------------------- -dep: $(SDCC_LIBS) - $(MAKE) -f main.mk dep - @for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg dep ;\ - done - -# My rules -# -------- -newer: distclean - @if [ -f start ]; then \ - tar cvf - \ - `find . -newer start -type f -print` |\ - gzip -9c >`date '+%m%d%H%M'`.tgz; \ - else \ - echo "start file not found.\n"; \ - exit 1; \ - fi - -putcopyright: - 'put(c)' -s $(STARTYEAR) *.cc *.h *.y *.l - -# Remaking configuration -# ---------------------- -configure: configure.in - $(SHELL) $(AUTOCONF) - -main.mk: $(srcdir)/main_in.mk $(srcdir)/configure.in config.status - $(SHELL) ./config.status - -Makefiles: makefiles - -makefiles: config.status - -config.status: configure - $(SHELL) ./config.status --recheck - -makefiles: - $(SHELL) ./config.status - -freshconf: main.mk - -checkconf: - @if [ -f devel ]; then\ - $(MAKE) freshconf;\ - fi - -# End of Makefile diff --git a/Makefile.common b/Makefile.common deleted file mode 100644 index 5f8687d..0000000 --- a/Makefile.common +++ /dev/null @@ -1,96 +0,0 @@ -# -# -# - -# Version -PACKAGE = sdcc -VERSION = 0.0.0 -VERSIONHI = 0 -VERSIONLO = 0 -VERSIONP = 0 - -# Programs -SHELL = /bin/sh -CC = ccache gcc -CPP = ccache gcc -E -CXX = ccache g++ -AR = ar -RANLIB = ranlib -INSTALL = /usr/bin/install -c -YACC = bison -y -PYTHON = python3.6 -LEX = flex -AWK = gawk -STRIP = strip -MAKEDEP = g++ -MM -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = ${datarootdir}/info -docdir = ${datarootdir}/doc/${PACKAGE} -DESTDIR = - -include_dir_suffix = sdcc/include -lib_dir_suffix = sdcc/lib - -# Modules to enable/disable -OPT_DISABLE_AVR = 1 -OPT_DISABLE_DS390 = 1 -OPT_DISABLE_DS400 = 1 -OPT_DISABLE_HC08 = 1 -OPT_DISABLE_S08 = 1 -OPT_DISABLE_MCS51 = 1 -OPT_DISABLE_PIC14 = 1 -OPT_DISABLE_PIC16 = 1 -OPT_DISABLE_XA51 = @OPT_DISABLE_XA51@ -OPT_DISABLE_Z80 = 1 -OPT_DISABLE_Z180 = 1 -OPT_DISABLE_R2K = 1 -OPT_DISABLE_R3KA = 1 -OPT_DISABLE_TLCS90 = 1 -OPT_DISABLE_GBZ80 = 1 -OPT_DISABLE_STM8 = 0 -OPT_DISABLE_PDK13 = 1 -OPT_DISABLE_PDK14 = 1 -OPT_DISABLE_PDK15 = 1 -OPT_DISABLE_PDK16 = 1 - -OPT_ENABLE_DOC = 0 - -OPT_DISABLE_DEVICE_LIB = 1 -OPT_DISABLE_PACKIHX = 1 -OPT_DISABLE_SDBINUTILS = 0 -OPT_DISABLE_SDCPP = 0 -OPT_DISABLE_UCSIM = 1 -OPT_DISABLE_NON_FREE = 0 - -SLIB = $(top_builddir)/support/util - -EXEEXT = -transform = s,x,x, - -# Flags - -DEFS += $(subs -DHAVE_CONFIG_H,,-DHAVE_CONFIG_H) -CPPFLAGS += $(INCLUDEFLAGS) -I. -I$(top_builddir) -I$(srcdir)/$(SLIB) -I$(srcdir) -CFLAGS += -pipe -ggdb -g -Og -Wall -Wno-parentheses -CXXFLAGS += -pipe -ggdb -g -Og -LDFLAGS += - -EXTRALIBS += - -# Shared settings between all the sub Makefiles -# Done here so that we don't have to start a Make from the top levelport -# directory. - -# Library compilation options -CLEANSPEC = *.lst *.asm *.sym *~ *.cdb *.dep *.rul - -OBJ = $(SOURCES:.c=.o) $(CXXSOURCES:.cc=.o) diff --git a/Makefile.common.in b/Makefile.common.in deleted file mode 100644 index 412fd5a..0000000 --- a/Makefile.common.in +++ /dev/null @@ -1,96 +0,0 @@ -# -# -# - -# Version -PACKAGE = @PACKAGE@ -VERSION = @VERSION@ -VERSIONHI = @VERSIONHI@ -VERSIONLO = @VERSIONLO@ -VERSIONP = @VERSIONP@ - -# Programs -SHELL = /bin/sh -CC = @CCACHE@ @CC@ -CPP = @CCACHE@ @CPP@ -CXX = @CCACHE@ @CXX@ -AR = @AR@ -RANLIB = @RANLIB@ -INSTALL = @INSTALL@ -YACC = @YACC@ -PYTHON = @PYTHON@ -LEX = @LEX@ -AWK = @AWK@ -STRIP = @STRIP@ -MAKEDEP = @MAKEDEP@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ -bindir = @bindir@ -libdir = @libdir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -includedir = @includedir@ -mandir = @mandir@ -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @infodir@ -docdir = @docdir@ -DESTDIR = - -include_dir_suffix = @include_dir_suffix@ -lib_dir_suffix = @lib_dir_suffix@ - -# Modules to enable/disable -OPT_DISABLE_AVR = @OPT_DISABLE_AVR@ -OPT_DISABLE_DS390 = @OPT_DISABLE_DS390@ -OPT_DISABLE_DS400 = @OPT_DISABLE_DS400@ -OPT_DISABLE_HC08 = @OPT_DISABLE_HC08@ -OPT_DISABLE_S08 = @OPT_DISABLE_S08@ -OPT_DISABLE_MCS51 = @OPT_DISABLE_MCS51@ -OPT_DISABLE_PIC14 = @OPT_DISABLE_PIC14@ -OPT_DISABLE_PIC16 = @OPT_DISABLE_PIC16@ -OPT_DISABLE_XA51 = @OPT_DISABLE_XA51@ -OPT_DISABLE_Z80 = @OPT_DISABLE_Z80@ -OPT_DISABLE_Z180 = @OPT_DISABLE_Z180@ -OPT_DISABLE_R2K = @OPT_DISABLE_R2K@ -OPT_DISABLE_R3KA = @OPT_DISABLE_R3KA@ -OPT_DISABLE_TLCS90 = @OPT_DISABLE_TLCS90@ -OPT_DISABLE_GBZ80 = @OPT_DISABLE_GBZ80@ -OPT_DISABLE_STM8 = @OPT_DISABLE_STM8@ -OPT_DISABLE_PDK13 = @OPT_DISABLE_PDK13@ -OPT_DISABLE_PDK14 = @OPT_DISABLE_PDK14@ -OPT_DISABLE_PDK15 = @OPT_DISABLE_PDK15@ -OPT_DISABLE_PDK16 = @OPT_DISABLE_PDK16@ - -OPT_ENABLE_DOC = @OPT_ENABLE_DOC@ - -OPT_DISABLE_DEVICE_LIB = @OPT_DISABLE_DEVICE_LIB@ -OPT_DISABLE_PACKIHX = @OPT_DISABLE_PACKIHX@ -OPT_DISABLE_SDBINUTILS = @OPT_DISABLE_SDBINUTILS@ -OPT_DISABLE_SDCPP = @OPT_DISABLE_SDCPP@ -OPT_DISABLE_UCSIM = @OPT_DISABLE_UCSIM@ -OPT_DISABLE_NON_FREE = @OPT_DISABLE_NON_FREE@ - -SLIB = $(top_builddir)/support/util - -EXEEXT = @EXEEXT@ -transform = @program_transform_name@ - -# Flags - -DEFS += $(subs -DHAVE_CONFIG_H,,@DEFS@) -CPPFLAGS += @CPPFLAGS@ $(INCLUDEFLAGS) -I. -I$(top_builddir) -I$(srcdir)/$(SLIB) -I$(srcdir) -CFLAGS += @CFLAGS@ @WALL_FLAG@ -CXXFLAGS += @CXXFLAGS@ -LDFLAGS += @LDFLAGS@ - -EXTRALIBS += @LIBS@ - -# Shared settings between all the sub Makefiles -# Done here so that we don't have to start a Make from the top levelport -# directory. - -# Library compilation options -CLEANSPEC = *.lst *.asm *.sym *~ *.cdb *.dep *.rul - -OBJ = $(SOURCES:.c=.o) $(CXXSOURCES:.cc=.o) diff --git a/Makefile.in b/Makefile.in deleted file mode 100644 index f3b028d..0000000 --- a/Makefile.in +++ /dev/null @@ -1,317 +0,0 @@ -# -# sdcc project main Makefile -# - -SHELL = /bin/sh - -VPATH = @srcdir@ -srcdir = @srcdir@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ - -EXEEXT = @EXEEXT@ - -include Makefile.common - -SDCC_LIBS = support/makebin -SDCC_SCRIPTS = support/scripts -SDCC_DOC = doc - -# Parts that are not normally compiled but need to be cleaned -SDCC_EXTRA = support/regression support/valdiag - -SDCC_PACKIHX = support/packihx -SDCC_SDBINUTILS = support/sdbinutils - -ifneq ($(OPT_DISABLE_HC08)$(OPT_DISABLE_S08), 11) -SDCC_AS += sdas/as6808 -SDCC_LD += sdcc-ld6808 -endif - -ifeq ($(OPT_DISABLE_STM8), 0) -SDCC_AS += sdas/asstm8 -SDCC_LD += sdcc-ldstm8 -endif - -ifneq ($(OPT_DISABLE_DS390)$(OPT_DISABLE_DS400), 11) -SDCC_AS += sdas/as8xcxxx -endif - -ifeq ($(OPT_DISABLE_MCS51), 0) -SDCC_AS += sdas/as8051 -SDCC_LD += sdcc-ld8051 -SDCC_MISC += debugger/mcs51 -endif - -ifneq ($(OPT_DISABLE_Z80)$(OPT_DISABLE_Z180), 11) -SDCC_AS += sdas/asz80 -SDCC_LD += sdcc-ldz80 -endif - -ifneq ($(OPT_DISABLE_R2K)$(OPT_DISABLE_R3KA), 11) -SDCC_AS += sdas/asrab -SDCC_LD += sdcc-ldz80 -endif - -ifeq ($(OPT_DISABLE_TLCS90), 0) -SDCC_AS += sdas/astlcs90 -endif - -ifeq ($(OPT_DISABLE_GBZ80), 0) -SDCC_AS += sdas/asgb -SDCC_LD += sdcc-ldgb -endif - -ifeq ($(OPT_DISABLE_PDK13), 0) -SDCC_AS += sdas/aspdk13 -SDCC_LD += sdcc-ldpdk -endif - -ifeq ($(OPT_DISABLE_PDK14), 0) -SDCC_AS += sdas/aspdk14 -SDCC_LD += sdcc-ldpdk -endif - -ifeq ($(OPT_DISABLE_PDK15), 0) -SDCC_AS += sdas/aspdk15 -SDCC_LD += sdcc-ldpdk -endif - -ifeq ($(OPT_DISABLE_PDK16), 0) -SDCC_AS += sdas/aspdk16 -SDCC_LD += sdcc-ldpdk -endif - - -ifeq ($(OPT_DISABLE_UCSIM), 0) -TARGETS += sdcc-misc -SDCC_MISC += sim/ucsim -PKGS += $(SDCC_MISC) -endif - -SDCC_BINUTILS = -ifeq ($(OPT_DISABLE_SDBINUTILS), 0) -TARGETS += sdcc-sdbinutils -PKGS += $(SDCC_SDBINUTILS) -SDBINUTILS_BINS = sdar$(EXEEXT) sdranlib$(EXEEXT) sdnm$(EXEEXT) sdobjcopy$(EXEEXT) -SDCC_BINUTILS = sdcc-sdbinutils -endif - -ifeq ($(OPT_DISABLE_DEVICE_LIB), 0) -TARGETS += sdcc-device-lib -PKGS += device/lib -ifeq ($(OPT_DISABLE_NON_FREE), 0) -PKGS += device/non-free/lib -endif -endif - -ifeq ($(OPT_DISABLE_PACKIHX), 0) -TARGETS += sdcc-packihx -PKGS += $(SDCC_PACKIHX) -endif - -ifeq ($(OPT_ENABLE_DOC), 1) -TARGETS += sdcc-doc -endif -# always install docs, which don't need to be built -PKGS += $(SDCC_DOC) - -ifeq ($(OPT_DISABLE_SDCPP), 0) -SDCC_LIBS += support/cpp -endif - -TARGETS += sdcc-libs sdcc-cc sdcc-device-inc sdcc-as sdcc-ld sdcc-scripts - -PKGS += $(SDCC_LIBS) src device/include -ifeq ($(OPT_DISABLE_NON_FREE), 0) -PKGS += device/non-free/include -endif -PKGS += $(SDCC_AS) sdas/linksrc $(SDCC_SCRIPTS) - -PORTS = $(shell cat ports.build) -ALLPORTS = $(shell cat ports.all) - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf sdcc - -tini: checkconf sdcc-tini - -sdcc-libs: sdcc-sdbinutils - for lib in $(SDCC_LIBS); do $(MAKE) -C $$lib; done - -sdcc-cc: sdcc-libs - $(MAKE) -C src - -sdcc-as: - $(foreach as, $(SDCC_AS), $(MAKE) -C $(as) &&) echo "Assemblers built successfully." - -sdcc-ld: - $(MAKE) -C sdas/linksrc $(SDCC_LD) - -sdcc-misc: - for misc in $(SDCC_MISC); do $(MAKE) -C $$misc ; done - -sdcc-scripts: - $(MAKE) -C $(SDCC_SCRIPTS) - -sdcc-packihx: - $(MAKE) -C $(SDCC_PACKIHX) - -sdcc-sdbinutils: - $(MAKE) -C $(SDCC_SDBINUTILS) - # in some cases (cygwin) the real binaries are in .libs - for bin in $(SDBINUTILS_BINS); do \ - if [ -f $(SDCC_SDBINUTILS)/binutils/.libs/$$bin ]; then \ - cp $(SDCC_SDBINUTILS)/binutils/.libs/$$bin bin; \ - else \ - cp $(SDCC_SDBINUTILS)/binutils/$$bin bin; \ - fi \ - done - -sdcc-device-inc: - $(MAKE) -C device/include -ifeq ($(OPT_DISABLE_NON_FREE), 0) - $(MAKE) -C device/non-free/include -endif - -sdcc-device-lib: sdcc-cc sdcc-as sdcc-ld $(SDCC_BINUTILS) - $(MAKE) -C device/lib -ifeq ($(OPT_DISABLE_NON_FREE), 0) - $(MAKE) -C device/non-free/lib -endif - -sdcc-device-tini: - $(MAKE) -C device/include -ifeq ($(OPT_DISABLE_NON_FREE), 0) - $(MAKE) -C device/non-free/include -endif - $(MAKE) -C device/lib model-ds390 model-ds400 - -# doc depends on latex and latex2html -sdcc-doc: - $(MAKE) -C doc - -sdcc: $(TARGETS) - -sdcc-tini: sdcc-cc sdcc-as sdcc-ld sdcc-device-tini sdcc-packihx - $(MAKE) -f main.mk all - -# Some interesting sub rules -sdcc-bin: sdcc-cc sdcc-as sdcc-ld sdcc-misc - -sdcc-base: sdcc-cc sdcc-as sdcc-ld - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: checkconf sdcc - $(MAKE) -f main.mk install - @for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg install ;\ - done - -# Deleting all the installed files -# -------------------------------- -uninstall: - $(MAKE) -f main.mk uninstall - @for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg uninstall ;\ - done - -# Deleting all files created by building the program -# -------------------------------------------------- -clean: - @echo "+ Cleaning root of the project..." - $(MAKE) -f $(srcdir)/clean.mk clean - @echo "+ Cleaning packages in their directories..." - for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg PORTS="$(PORTS)" EXEEXT=$(EXEEXT) clean ;\ - done - -# Deleting all files created by configuring or building the program -# ----------------------------------------------------------------- -distclean: - @echo "+ DistCleaning packages using clean.mk..." - for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg PORTS="$(PORTS)" EXEEXT=$(EXEEXT) distclean ;\ - done - for pkg in $(SDCC_EXTRA); do \ - $(MAKE) -C $$pkg distclean; \ - done - @echo "+ DistCleaning root of the project..." - $(MAKE) -f $(srcdir)/clean.mk distclean - -# Like clean but some files may still exist -# ----------------------------------------- -mostlyclean: clean - $(MAKE) -f $(srcdir)/clean.mk mostlyclean - for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg PORTS="$(PORTS)" EXEEXT=$(EXEEXT) mostlyclean ;\ - done - -# Deleting everything that can reconstructed by this Makefile. It deletes -# everything deleted by distclean plus files created by bison, stc. -# ----------------------------------------------------------------------- -realclean: distclean - $(MAKE) -f $(srcdir)/clean.mk realclean - for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg PORTS="$(PORTS)" EXEEXT=$(EXEEXT) realclean ;\ - done - -# Performing self-test -# -------------------- -check: - -# Performing installation test -# ---------------------------- -installcheck: - -# Creating dependencies -# --------------------- -dep: $(SDCC_LIBS) - $(MAKE) -f main.mk dep - @for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg dep ;\ - done - -# My rules -# -------- -newer: distclean - @if [ -f start ]; then \ - tar cvf - \ - `find . -newer start -type f -print` |\ - gzip -9c >`date '+%m%d%H%M'`.tgz; \ - else \ - echo "start file not found.\n"; \ - exit 1; \ - fi - -putcopyright: - 'put(c)' -s $(STARTYEAR) *.cc *.h *.y *.l - -# Remaking configuration -# ---------------------- -configure: configure.in - $(SHELL) $(AUTOCONF) - -main.mk: $(srcdir)/main_in.mk $(srcdir)/configure.in config.status - $(SHELL) ./config.status - -Makefiles: makefiles - -makefiles: config.status - -config.status: configure - $(SHELL) ./config.status --recheck - -makefiles: - $(SHELL) ./config.status - -freshconf: main.mk - -checkconf: - @if [ -f devel ]; then\ - $(MAKE) freshconf;\ - fi - -# End of Makefile diff --git a/autom4te.cache/output.0 b/autom4te.cache/output.0 deleted file mode 100644 index 7280fe2..0000000 --- a/autom4te.cache/output.0 +++ /dev/null @@ -1,10810 +0,0 @@ -@%:@! /bin/sh -@%:@ Guess values for system-dependent variables and create Makefiles. -@%:@ Generated by GNU Autoconf 2.69. -@%:@ -@%:@ -@%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. -@%:@ -@%:@ -@%:@ This configure script is free software; the Free Software Foundation -@%:@ gives unlimited permission to copy, distribute and modify it. -## -------------------- ## -## 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 - -# Use a proper internal environment variable to ensure we don't fall - # into an infinite loop, continuously re-executing ourselves. - if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then - _as_can_reexec=no; export _as_can_reexec; - # We cannot yet assume a decent shell, so we have to provide a -# neutralization value for shells without unset; and this also -# works around shells that cannot unset nonexistent variables. -# Preserve -v and -x to the replacement shell. -BASH_ENV=/dev/null -ENV=/dev/null -(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -case $- in @%:@ (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; -esac -exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -# Admittedly, this is quite paranoid, since all the known shells bail -# out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -as_fn_exit 255 - fi - # We don't want this to propagate to other subprocesses. - { _as_can_reexec=; unset _as_can_reexec;} -if test "x$CONFIG_SHELL" = x; then - as_bourne_compatible="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_required="as_fn_return () { (exit \$1); } -as_fn_success () { as_fn_return 0; } -as_fn_failure () { as_fn_return 1; } -as_fn_ret_success () { return 0; } -as_fn_ret_failure () { return 1; } - -exitcode=0 -as_fn_success || { exitcode=1; echo as_fn_success failed.; } -as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } -as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } -as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : - -else - exitcode=1; echo positional parameters were not saved. -fi -test x\$exitcode = x0 || exit 1 -test -x / || exit 1" - as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO - as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO - eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && - test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 -test \$(( 1 + 1 )) = 2 || exit 1" - if (eval "$as_required") 2>/dev/null; then : - as_have_required=yes -else - as_have_required=no -fi - if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : - -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -as_found=false -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - as_found=: - case $as_dir in @%:@( - /*) - for as_base in sh bash ksh sh5; do - # Try only shells that exist, to save several forks. - as_shell=$as_dir/$as_base - if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : - CONFIG_SHELL=$as_shell as_have_required=yes - if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : - break 2 -fi -fi - done;; - esac - as_found=false -done -$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : - CONFIG_SHELL=$SHELL as_have_required=yes -fi; } -IFS=$as_save_IFS - - - if test "x$CONFIG_SHELL" != x; then : - export CONFIG_SHELL - # We cannot yet assume a decent shell, so we have to provide a -# neutralization value for shells without unset; and this also -# works around shells that cannot unset nonexistent variables. -# Preserve -v and -x to the replacement shell. -BASH_ENV=/dev/null -ENV=/dev/null -(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -case $- in @%:@ (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; -esac -exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -# Admittedly, this is quite paranoid, since all the known shells bail -# out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -exit 255 -fi - - if test x$as_have_required = xno; then : - $as_echo "$0: This script requires a shell more modern than all" - $as_echo "$0: the shells that I found on your system." - if test x${ZSH_VERSION+set} = xset ; then - $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" - $as_echo "$0: be upgraded to zsh 4.3.4 or later." - else - $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, -$0: including any error possibly output before this -$0: message. Then install a modern shell, or manually run -$0: the script under such a shell if you do have one." - fi - exit 1 -fi -fi -fi -SHELL=${CONFIG_SHELL-/bin/sh} -export SHELL -# Unset more variables known to interfere with behavior of common tools. -CLICOLOR_FORCE= GREP_OPTIONS= -unset CLICOLOR_FORCE GREP_OPTIONS - -## --------------------- ## -## M4sh Shell Functions. ## -## --------------------- ## -@%:@ as_fn_unset VAR -@%:@ --------------- -@%:@ Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset - -@%:@ as_fn_set_status STATUS -@%:@ ----------------------- -@%:@ Set @S|@? 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_mkdir_p -@%:@ ------------- -@%:@ Create "@S|@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 - -@%:@ 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_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 @S|@as_val. Take advantage of shells that can avoid forks. The arguments -@%:@ must be portable across @S|@(()) 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 - - -@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] -@%:@ ---------------------------------------- -@%:@ Output "`basename @S|@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 - -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 - - - as_lineno_1=$LINENO as_lineno_1a=$LINENO - as_lineno_2=$LINENO as_lineno_2a=$LINENO - eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && - test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { - # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } - - # If we had to re-execute with $CONFIG_SHELL, we're ensured to have - # already done that, so ensure we don't try to do so again and fall - # in an infinite loop. This has already happened in practice. - _as_can_reexec=no; export _as_can_reexec - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - -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 - -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_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'" - - -test -n "$DJDIR" || exec 7<&0 </dev/null -exec 6>&1 - -# Name of the host. -# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_clean_files= -ac_config_libobj_dir=. -LIB@&t@OBJS= -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= - -# Identity of this package. -PACKAGE_NAME= -PACKAGE_TARNAME= -PACKAGE_VERSION= -PACKAGE_STRING= -PACKAGE_BUGREPORT= -PACKAGE_URL= - -ac_unique_file=".version" -ac_unique_file="Makefile.in" -# Factoring default headers for most tests. -ac_includes_default="\ -#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" - -enable_option_checking=no -ac_subst_vars='LTLIBOBJS -LIB@&t@OBJS -subdirs -OPT_ENABLE_LIBGC -MAKEINDEX -PDFLATEX -DVIPDFM -LATEX -LATEX2HTML -LYX -OPT_ENABLE_DOC -OPT_DISABLE_NON_FREE -OPT_DISABLE_SDBINUTILS -OPT_DISABLE_SDCDB -OPT_DISABLE_SDCPP -OPT_DISABLE_PACKIHX -OPT_DISABLE_DEVICE_LIB -OPT_DISABLE_UCSIM -OPT_DISABLE_AVR -OPT_DISABLE_PDK16 -OPT_DISABLE_PDK15 -OPT_DISABLE_PDK14 -OPT_DISABLE_PDK13 -OPT_DISABLE_STM8 -OPT_DISABLE_S08 -OPT_DISABLE_HC08 -OPT_DISABLE_PIC16 -OPT_DISABLE_PIC14 -OPT_DISABLE_DS400 -OPT_DISABLE_DS390 -OPT_DISABLE_EZ80_Z80 -OPT_DISABLE_TLCS90 -OPT_DISABLE_GBZ80 -OPT_DISABLE_R3KA -OPT_DISABLE_R2K -OPT_DISABLE_Z180 -OPT_DISABLE_Z80 -OPT_DISABLE_MCS51 -non_free_lib_dir_suffix -lib_dir_suffix -non_free_include_dir_suffix -non_free_inclib_dir_suffix -include_dir_suffix -inclib_dir_suffix -LIB_TYPE -sdccconf_h_dir_separator -C99_FLAG -WALL_FLAG -MAKEDEP -HAVE_CXX11 -CCACHE -CXXCPP -EGREP -GREP -PYTHON -YACC -LEX -M4 -AR -CP -AS -STRIP -AUTOCONF -RANLIB -INSTALL_DATA -INSTALL_SCRIPT -INSTALL_PROGRAM -ac_ct_CXX -CXXFLAGS -CXX -CPP -OBJEXT -EXEEXT -ac_ct_CC -CPPFLAGS -LDFLAGS -CFLAGS -CC -VERSIONP -VERSIONLO -VERSIONHI -VERSION -PACKAGE -AWK -host_os -host_vendor -host_cpu -host -build_os -build_vendor -build_cpu -build -target_alias -host_alias -build_alias -LIBS -ECHO_T -ECHO_N -ECHO_C -DEFS -mandir -localedir -libdir -psdir -pdfdir -dvidir -htmldir -infodir -docdir -oldincludedir -includedir -runstatedir -localstatedir -sharedstatedir -sysconfdir -datadir -datarootdir -libexecdir -sbindir -bindir -program_transform_name -prefix -exec_prefix -PACKAGE_URL -PACKAGE_BUGREPORT -PACKAGE_STRING -PACKAGE_VERSION -PACKAGE_TARNAME -PACKAGE_NAME -PATH_SEPARATOR -SHELL' -ac_subst_files='' -ac_user_opts=' -enable_option_checking -with_ccache -enable_mcs51_port -enable_z80_port -enable_z180_port -enable_r2k_port -enable_r3ka_port -enable_gbz80_port -enable_tlcs90_port -enable_ez80_z80_port -enable_ds390_port -enable_ds400_port -enable_pic14_port -enable_pic16_port -enable_hc08_port -enable_s08_port -enable_stm8_port -enable_pdk13_port -enable_pdk14_port -enable_pdk15_port -enable_pdk16_port -enable_ucsim -enable_device_lib -enable_packihx -enable_sdcpp -enable_sdcdb -enable_sdbinutils -enable_non_free -enable_doc -enable_libgc -' - ac_precious_vars='build_alias -host_alias -target_alias -CC -CFLAGS -LDFLAGS -LIBS -CPPFLAGS -CPP -CXX -CXXFLAGS -CCC -CXXCPP -sdccconf_h_dir_separator -LIB_TYPE -inclib_dir_suffix -include_dir_suffix -non_free_inclib_dir_suffix -non_free_include_dir_suffix -lib_dir_suffix -non_free_lib_dir_suffix -docdir' -ac_subdirs_all='support/cpp -support/packihx -sim/ucsim -debugger/mcs51 -support/sdbinutils -device/lib/pic14 -device/non-free/lib/pic14 -device/lib/pic16 -device/non-free/lib/pic16' - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -ac_unrecognized_opts= -ac_unrecognized_sep= -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -# (The list follows the same order as the GNU Coding Standards.) -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datarootdir='${prefix}/share' -datadir='${datarootdir}' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -runstatedir='${localstatedir}/run' -includedir='${prefix}/include' -oldincludedir='/usr/include' -docdir='${datarootdir}/doc/${PACKAGE}' -infodir='${datarootdir}/info' -htmldir='${docdir}' -dvidir='${docdir}' -pdfdir='${docdir}' -psdir='${docdir}' -libdir='${exec_prefix}/lib' -localedir='${datarootdir}/locale' -mandir='${datarootdir}/man' - -ac_prev= -ac_dashdash= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval $ac_prev=\$ac_option - ac_prev= - continue - fi - - case $ac_option in - *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *=) ac_optarg= ;; - *) ac_optarg=yes ;; - esac - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_dashdash$ac_option in - --) - ac_dashdash=yes ;; - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=*) - datadir=$ac_optarg ;; - - -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ - | --dataroo | --dataro | --datar) - ac_prev=datarootdir ;; - -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ - | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) - datarootdir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=no ;; - - -docdir | --docdir | --docdi | --doc | --do) - ac_prev=docdir ;; - -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) - docdir=$ac_optarg ;; - - -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) - ac_prev=dvidir ;; - -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) - dvidir=$ac_optarg ;; - - -enable-* | --enable-*) - ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=\$ac_optarg ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) - ac_prev=htmldir ;; - -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ - | --ht=*) - htmldir=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localedir | --localedir | --localedi | --localed | --locale) - ac_prev=localedir ;; - -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) - localedir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst | --locals) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) - ac_prev=pdfdir ;; - -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) - pdfdir=$ac_optarg ;; - - -psdir | --psdir | --psdi | --psd | --ps) - ac_prev=psdir ;; - -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) - psdir=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -runstatedir | --runstatedir | --runstatedi | --runstated \ - | --runstate | --runstat | --runsta | --runst | --runs \ - | --run | --ru | --r) - ac_prev=runstatedir ;; - -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ - | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ - | --run=* | --ru=* | --r=*) - runstatedir=$ac_optarg ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=\$ac_optarg ;; - - -without-* | --without-*) - ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=no ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) as_fn_error $? "unrecognized option: \`$ac_option' -Try \`$0 --help' for more information" - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - case $ac_envvar in #( - '' | [0-9]* | *[!_$as_cr_alnum]* ) - as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; - esac - eval $ac_envvar=\$ac_optarg - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - as_fn_error $? "missing argument to $ac_option" -fi - -if test -n "$ac_unrecognized_opts"; then - case $enable_option_checking in - no) ;; - fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; - *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; - esac -fi - -# Check all directory arguments for consistency. -for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ - datadir sysconfdir sharedstatedir localstatedir includedir \ - oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir runstatedir -do - eval ac_val=\$$ac_var - # Remove trailing slashes. - case $ac_val in - */ ) - ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` - eval $ac_var=\$ac_val;; - esac - # Be sure to have absolute directory names. - case $ac_val in - [\\/$]* | ?:[\\/]* ) continue;; - NONE | '' ) case $ac_var in *prefix ) continue;; esac;; - esac - as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -ac_pwd=`pwd` && test -n "$ac_pwd" && -ac_ls_di=`ls -di .` && -ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - as_fn_error $? "working directory cannot be determined" -test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - as_fn_error $? "pwd does not report name of working directory" - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then the parent directory. - ac_confdir=`$as_dirname -- "$as_myself" || -$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_myself" : 'X\(//\)[^/]' \| \ - X"$as_myself" : 'X\(//\)$' \| \ - X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_myself" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r "$srcdir/$ac_unique_file"; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r "$srcdir/$ac_unique_file"; then - test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" -fi -ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" - pwd)` -# When building in place, set srcdir=. -if test "$ac_abs_confdir" = "$ac_pwd"; then - srcdir=. -fi -# Remove unnecessary trailing slashes from srcdir. -# Double slashes in file names in object file debugging info -# mess up M-x gdb in Emacs. -case $srcdir in -*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -esac -for ac_var in $ac_precious_vars; do - eval ac_env_${ac_var}_set=\${${ac_var}+set} - eval ac_env_${ac_var}_value=\$${ac_var} - eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} - eval ac_cv_env_${ac_var}_value=\$${ac_var} -done - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures this package to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking ...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - @<:@@S|@ac_default_prefix@:>@ - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - @<:@PREFIX@:>@ - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] - --datadir=DIR read-only architecture-independent data [DATAROOTDIR] - --infodir=DIR info documentation [DATAROOTDIR/info] - --localedir=DIR locale-dependent data [DATAROOTDIR/locale] - --mandir=DIR man documentation [DATAROOTDIR/man] - --docdir=DIR documentation root @<:@DATAROOTDIR/doc/PACKAGE@:>@ - --htmldir=DIR html documentation [DOCDIR] - --dvidir=DIR dvi documentation [DOCDIR] - --pdfdir=DIR pdf documentation [DOCDIR] - --psdir=DIR ps documentation [DOCDIR] -_ACEOF - - cat <<\_ACEOF - -Program names: - --program-prefix=PREFIX prepend PREFIX to installed program names - --program-suffix=SUFFIX append SUFFIX to installed program names - --program-transform-name=PROGRAM run sed PROGRAM on installed program names - -System types: - --build=BUILD configure for building on BUILD [guessed] - --host=HOST cross-compile to build programs to run on HOST [BUILD] -_ACEOF -fi - -if test -n "$ac_init_help"; then - - cat <<\_ACEOF - -Optional Features: - --disable-option-checking ignore unrecognized --enable/--with options - --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) - --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --disable-mcs51-port Excludes the Intel mcs51 port - --disable-z80-port Excludes the Z80 port - --disable-z180-port Excludes the Z180 port - --disable-r2k-port Excludes the Rabbit 2000 port - --disable-r3ka-port Excludes the Rabbit 3000A port - --disable-gbz80-port Excludes the Gameboy gbz80 port - --disable-tlcs90-port Excludes the TLCS-90 port - --disable-ez80_z80-port Excludes the EZ80-Z80 port - --disable-ds390-port Excludes the DS390 port - --disable-ds400-port Excludes the DS400 port - --disable-pic14-port Excludes the PIC14 port - --disable-pic16-port Excludes the PIC16 port - --disable-hc08-port Excludes the HC08 port - --disable-s08-port Excludes the S08 port - --disable-stm8-port Excludes the STM8 port - --disable-pdk13-port Excludes the PDK13 port - --disable-pdk14-port Excludes the PDK14 port - --disable-pdk15-port Excludes the PDK15 port - --enable-pdk16-port Includes the PDK16 port - --disable-ucsim Disables configuring and building of ucsim - --disable-device-lib Disables building device libraries - --disable-packihx Disables building packihx - --disable-sdcpp Disables building sdcpp - --disable-sdcdb Disables building sdcdb - --disable-sdbinutils Disables configuring and building of sdbinutils - --disable-non-free Disables non-free runtime library parts - --enable-doc Enables building the documentation - --enable-libgc Use the Bohem memory allocator. Lower runtime - footprint. - -Optional Packages: - --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] - --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --without-ccache do not use ccache even if available - -Some influential environment variables: - CC C compiler command - CFLAGS C compiler flags - LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a - nonstandard directory <lib dir> - LIBS libraries to pass to the linker, e.g. -l<library> - CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if - you have headers in a nonstandard directory <include dir> - CPP C preprocessor - CXX C++ compiler command - CXXFLAGS C++ compiler flags - CXXCPP C++ preprocessor - sdccconf_h_dir_separator - needed in sdccconf.h: either "/" (default) or "\\" - LIB_TYPE library type: LIB, SDCCLIB, AR or RANLIB (default) - inclib_dir_suffix - appended to datadir to define SDCC's include/lib directory - include_dir_suffix - appended to datadir to define SDCC's include directory - non_free_inclib_dir_suffix - appended to datadir to define SDCC's non-free include/lib - directory - non_free_include_dir_suffix - appended to datadir to define SDCC's non-free include directory - lib_dir_suffix - appended to datadir to define SDCC's library root directory - non_free_lib_dir_suffix - appended to datadir to define SDCC's non-free library root - directory - docdir documentation installation directory - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -Report bugs to the package provider. -_ACEOF -ac_status=$? -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d "$ac_dir" || - { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || - continue - 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 - - cd "$ac_dir" || { ac_status=$?; continue; } - # Check for guested configure. - if test -f "$ac_srcdir/configure.gnu"; then - echo && - $SHELL "$ac_srcdir/configure.gnu" --help=recursive - elif test -f "$ac_srcdir/configure"; then - echo && - $SHELL "$ac_srcdir/configure" --help=recursive - else - $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi || ac_status=$? - cd "$ac_pwd" || { ac_status=$?; break; } - done -fi - -test -n "$ac_init_help" && exit $ac_status -if $ac_init_version; then - cat <<\_ACEOF -configure -generated by GNU Autoconf 2.69 - -Copyright (C) 2012 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit -fi - -## ------------------------ ## -## Autoconf initialization. ## -## ------------------------ ## - -@%:@ ac_fn_c_try_compile LINENO -@%:@ -------------------------- -@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_c_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_c_try_compile - -@%:@ ac_fn_c_try_cpp LINENO -@%:@ ---------------------- -@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_c_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_c_try_cpp - -@%:@ ac_fn_cxx_try_compile LINENO -@%:@ ---------------------------- -@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_cxx_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_cxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_cxx_try_compile - -@%:@ ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES -@%:@ ------------------------------------------------------- -@%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using -@%:@ the include files in INCLUDES and setting the cache variable VAR -@%:@ accordingly. -ac_fn_c_check_header_mongrel () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if eval \${$3+:} false; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -else - # Is the header compilable? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -$as_echo_n "checking $2 usability... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -@%:@include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_header_compiler=yes -else - ac_header_compiler=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; } - -# Is the header present? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -$as_echo_n "checking $2 presence... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include <$2> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - ac_header_preproc=yes -else - ac_header_preproc=no -fi -rm -f conftest.err conftest.i conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( - yes:no: ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; - no:yes:* ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 -$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; -esac - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=\$ac_header_compiler" -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} @%:@ ac_fn_c_check_header_mongrel - -@%:@ ac_fn_c_try_run LINENO -@%:@ ---------------------- -@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes -@%:@ that executables *can* be run. -ac_fn_c_try_run () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then : - ac_retval=0 -else - $as_echo "$as_me: program exited with status $ac_status" >&5 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=$ac_status -fi - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_c_try_run - -@%:@ ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES -@%:@ ------------------------------------------------------- -@%:@ Tests whether HEADER exists and can be compiled using the include files in -@%:@ INCLUDES, setting the cache variable VAR accordingly. -ac_fn_c_check_header_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -@%:@include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} @%:@ ac_fn_c_check_header_compile - -@%:@ ac_fn_cxx_try_cpp LINENO -@%:@ ------------------------ -@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_cxx_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_cxx_try_cpp - -@%:@ ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES -@%:@ --------------------------------------------------------- -@%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using -@%:@ the include files in INCLUDES and setting the cache variable VAR -@%:@ accordingly. -ac_fn_cxx_check_header_mongrel () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if eval \${$3+:} false; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -else - # Is the header compilable? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -$as_echo_n "checking $2 usability... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -@%:@include <$2> -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_header_compiler=yes -else - ac_header_compiler=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; } - -# Is the header present? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -$as_echo_n "checking $2 presence... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include <$2> -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - ac_header_preproc=yes -else - ac_header_preproc=no -fi -rm -f conftest.err conftest.i conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #(( - yes:no: ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; - no:yes:* ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 -$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; -esac - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=\$ac_header_compiler" -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} @%:@ ac_fn_cxx_check_header_mongrel - -@%:@ ac_fn_c_try_link LINENO -@%:@ ----------------------- -@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_c_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - test -x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_c_try_link - -@%:@ ac_fn_c_check_func LINENO FUNC VAR -@%:@ ---------------------------------- -@%:@ Tests whether FUNC exists, setting the cache variable VAR accordingly -ac_fn_c_check_func () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -/* Define $2 to an innocuous variant, in case <limits.h> declares $2. - For example, HP-UX 11i <limits.h> declares gettimeofday. */ -#define $2 innocuous_$2 - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $2 (); 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 $2 - -/* 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 $2 (); -/* 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_$2 || defined __stub___$2 -choke me -#endif - -int -main () -{ -return $2 (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} @%:@ ac_fn_c_check_func - -@%:@ ac_fn_c_compute_int LINENO EXPR VAR INCLUDES -@%:@ -------------------------------------------- -@%:@ Tries to find the compile-time value of EXPR in a program that includes -@%:@ INCLUDES, setting VAR accordingly. Returns whether the value could be -@%:@ computed -ac_fn_c_compute_int () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if test "$cross_compiling" = yes; then - # Depending upon the size, compute the lo and hi bounds. -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -static int test_array @<:@1 - 2 * !(($2) >= 0)@:>@; -test_array @<:@0@:>@ = 0; -return test_array @<:@0@:>@; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_lo=0 ac_mid=0 - while :; do - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -static int test_array @<:@1 - 2 * !(($2) <= $ac_mid)@:>@; -test_array @<:@0@:>@ = 0; -return test_array @<:@0@:>@; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_hi=$ac_mid; break -else - as_fn_arith $ac_mid + 1 && ac_lo=$as_val - if test $ac_lo -le $ac_mid; then - ac_lo= ac_hi= - break - fi - as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -static int test_array @<:@1 - 2 * !(($2) < 0)@:>@; -test_array @<:@0@:>@ = 0; -return test_array @<:@0@:>@; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_hi=-1 ac_mid=-1 - while :; do - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -static int test_array @<:@1 - 2 * !(($2) >= $ac_mid)@:>@; -test_array @<:@0@:>@ = 0; -return test_array @<:@0@:>@; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_lo=$ac_mid; break -else - as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val - if test $ac_mid -le $ac_hi; then - ac_lo= ac_hi= - break - fi - as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - done -else - ac_lo= ac_hi= -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -# Binary search between lo and hi bounds. -while test "x$ac_lo" != "x$ac_hi"; do - as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -static int test_array @<:@1 - 2 * !(($2) <= $ac_mid)@:>@; -test_array @<:@0@:>@ = 0; -return test_array @<:@0@:>@; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_hi=$ac_mid -else - as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -done -case $ac_lo in @%:@(( -?*) eval "$3=\$ac_lo"; ac_retval=0 ;; -'') ac_retval=1 ;; -esac - else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -static long int longval () { return $2; } -static unsigned long int ulongval () { return $2; } -@%:@include <stdio.h> -@%:@include <stdlib.h> -int -main () -{ - - FILE *f = fopen ("conftest.val", "w"); - if (! f) - return 1; - if (($2) < 0) - { - long int i = longval (); - if (i != ($2)) - return 1; - fprintf (f, "%ld", i); - } - else - { - unsigned long int i = ulongval (); - if (i != ($2)) - return 1; - fprintf (f, "%lu", i); - } - /* Do not output a trailing newline, as this causes \r\n confusion - on some platforms. */ - return ferror (f) || fclose (f) != 0; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - echo >>conftest.val; read $3 <conftest.val; ac_retval=0 -else - ac_retval=1 -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -rm -f conftest.val - - fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_c_compute_int -cat >config.log <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by $as_me, which was -generated by GNU Autoconf 2.69. Invocation command line was - - $ $0 $@ - -_ACEOF -exec 5>>config.log -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - $as_echo "PATH: $as_dir" - done -IFS=$as_save_IFS - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *\'*) - ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; - 2) - as_fn_append ac_configure_args1 " '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - as_fn_append ac_configure_args " '$ac_arg'" - ;; - esac - done -done -{ ac_configure_args0=; unset ac_configure_args0;} -{ ac_configure_args1=; unset ac_configure_args1;} - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Use '\'' to represent an apostrophe within the trap. -# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - $as_echo "## ---------------- ## -## Cache variables. ## -## ---------------- ##" - echo - # The following way of writing the cache mishandles newlines in values, -( - for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - (set) 2>&1 | - case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - sed -n \ - "s/'\''/'\''\\\\'\'''\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" - ;; #( - *) - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) - echo - - $as_echo "## ----------------- ## -## Output variables. ## -## ----------------- ##" - echo - for ac_var in $ac_subst_vars - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - - if test -n "$ac_subst_files"; then - $as_echo "## ------------------- ## -## File substitutions. ## -## ------------------- ##" - echo - for ac_var in $ac_subst_files - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - fi - - if test -s confdefs.h; then - $as_echo "## ----------- ## -## confdefs.h. ## -## ----------- ##" - echo - cat confdefs.h - echo - fi - test "$ac_signal" != 0 && - $as_echo "$as_me: caught signal $ac_signal" - $as_echo "$as_me: exit $exit_status" - } >&5 - rm -f core *.core core.conftest.* && - rm -f -r conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status -' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -f -r conftest* confdefs.h - -$as_echo "/* confdefs.h */" > confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_URL "$PACKAGE_URL" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer an explicitly selected file to automatically selected ones. -ac_site_file1=NONE -ac_site_file2=NONE -if test -n "$CONFIG_SITE"; then - # We do not want a PATH search for config.site. - case $CONFIG_SITE in @%:@(( - -*) ac_site_file1=./$CONFIG_SITE;; - */*) ac_site_file1=$CONFIG_SITE;; - *) ac_site_file1=./$CONFIG_SITE;; - esac -elif test "x$prefix" != xNONE; then - ac_site_file1=$prefix/share/config.site - ac_site_file2=$prefix/etc/config.site -else - ac_site_file1=$ac_default_prefix/share/config.site - ac_site_file2=$ac_default_prefix/etc/config.site -fi -for ac_site_file in "$ac_site_file1" "$ac_site_file2" -do - test "x$ac_site_file" = xNONE && continue - if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 -$as_echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" \ - || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "failed to load site script $ac_site_file -See \`config.log' for more details" "$LINENO" 5; } - fi -done - -if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special files - # actually), so we avoid doing that. DJGPP emulates it as a regular file. - if test /dev/null != "$cache_file" && test -f "$cache_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 -$as_echo "$as_me: loading cache $cache_file" >&6;} - case $cache_file in - [\\/]* | ?:[\\/]* ) . "$cache_file";; - *) . "./$cache_file";; - esac - fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 -$as_echo "$as_me: creating cache $cache_file" >&6;} - >$cache_file -fi - -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val=\$ac_cv_env_${ac_var}_value - eval ac_new_val=\$ac_env_${ac_var}_value - case $ac_old_set,$ac_new_set in - set,) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - # differences in whitespace do not lead to failure. - ac_old_val_w=`echo x $ac_old_val` - ac_new_val_w=`echo x $ac_new_val` - if test "$ac_old_val_w" != "$ac_new_val_w"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 -$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - ac_cache_corrupted=: - else - { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 -$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} - eval $ac_var=\$ac_old_val - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 -$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 -$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) as_fn_append ac_configure_args " '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 -$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 -fi -## -------------------- ## -## Main body of script. ## -## -------------------- ## - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - -# Determine the host and build type. -# =========================================================================== -ac_aux_dir= -for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do - if test -f "$ac_dir/install-sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f "$ac_dir/install.sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f "$ac_dir/shtool"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi -done -if test -z "$ac_aux_dir"; then - as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 -fi - -# These three variables are undocumented and unsupported, -# and are intended to be withdrawn in a future Autoconf release. -# They can cause serious problems if a builder's source tree is in a directory -# whose full name contains unusual characters. -ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. - - -# Make sure we can run config.sub. -$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 -$as_echo_n "checking build system type... " >&6; } -if ${ac_cv_build+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_build_alias=$build_alias -test "x$ac_build_alias" = x && - ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` -test "x$ac_build_alias" = x && - as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 -ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 -$as_echo "$ac_cv_build" >&6; } -case $ac_cv_build in -*-*-*) ;; -*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; -esac -build=$ac_cv_build -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_build -shift -build_cpu=$1 -build_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -build_os=$* -IFS=$ac_save_IFS -case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 -$as_echo_n "checking host system type... " >&6; } -if ${ac_cv_host+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "x$host_alias" = x; then - ac_cv_host=$ac_cv_build -else - ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 -$as_echo "$ac_cv_host" >&6; } -case $ac_cv_host in -*-*-*) ;; -*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; -esac -host=$ac_cv_host -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_host -shift -host_cpu=$1 -host_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -host_os=$* -IFS=$ac_save_IFS -case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac - - - -ac_config_headers="$ac_config_headers sdccconf.h:sdccconf_in.h sdas/linksrc/asxxxx_config.h" - - -for ac_prog in gawk mawk nawk awk -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AWK+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AWK"; then - ac_cv_prog_AWK="$AWK" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AWK="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -AWK=$ac_cv_prog_AWK -if test -n "$AWK"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 -$as_echo "$AWK" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$AWK" && break -done - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking version of the package" >&5 -$as_echo_n "checking version of the package... " >&6; } -if test -f ${srcdir}/.version; then - { read VERSION; } < ${srcdir}/.version - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $VERSION" >&5 -$as_echo "$VERSION" >&6; } -elif test -f ../.version; then - { read VERSION; } < ../.version - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $VERSION" >&5 -$as_echo "$VERSION" >&6; } -else - VERSION="0.0.0" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unknown using 0.0.0" >&5 -$as_echo "unknown using 0.0.0" >&6; } -fi -VERSIONHI=`echo $VERSION|$AWK 'BEGIN {FS="."} {print $1}'` -VERSIONLO=`echo $VERSION|$AWK 'BEGIN {FS="."} {print $2}'` -VERSIONP=`echo $VERSION|$AWK 'BEGIN {FS="."} {print $3}'` - -PACKAGE=sdcc - - - - - - -cat >>confdefs.h <<_ACEOF -@%:@define SDCC_VERSION_LO ${VERSIONLO} -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define SDCC_VERSION_HI ${VERSIONHI} -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define SDCC_VERSION_P ${VERSIONP} -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define SDCC_VERSION_STR "${VERSION}" -_ACEOF - -test "$program_prefix" != NONE && - program_transform_name="s&^&$program_prefix&;$program_transform_name" -# Use a double $ so make ignores it. -test "$program_suffix" != NONE && - program_transform_name="s&\$&$program_suffix&;$program_transform_name" -# Double any \ or $. -# By default was `s,x,x', remove it if useless. -ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' -program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` - -sdcc_cv_version=$VERSION -sdcc_cv_versionhi=$VERSIONHI -sdcc_cv_versionlo=$VERSIONLO -sdcc_cv_versionp=$VERSIONP - - -# Required programs -# =========================================================================== -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $@%:@ != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CC" && break -done - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -fi - -fi - - -test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "no acceptable C compiler found in \$PATH -See \`config.log' for more details" "$LINENO" 5; } - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -$as_echo_n "checking whether the C compiler works... " >&6; } -ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` - -# The possible output files: -ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" - -ac_rmfiles= -for ac_file in $ac_files -do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - * ) ac_rmfiles="$ac_rmfiles $ac_file";; - esac -done -rm -f $ac_rmfiles - -if { { ac_try="$ac_link_default" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link_default") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. -# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' -# in a Makefile. We should not override ac_cv_exeext if it was cached, -# so that the user can short-circuit this test for compilers unknown to -# Autoconf. -for ac_file in $ac_files '' -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; - then :; else - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - fi - # We set ac_cv_exeext here because the later test for it is not - # safe: cross compilers may not add the suffix if given an `-o' - # argument, so we may need to know it at that point already. - # Even if this section looks crufty: it has the advantage of - # actually working. - break;; - * ) - break;; - esac -done -test "$ac_cv_exeext" = no && ac_cv_exeext= - -else - ac_file='' -fi -if test -z "$ac_file"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -$as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "C compiler cannot create executables -See \`config.log' for more details" "$LINENO" 5; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 -$as_echo_n "checking for C compiler default output file name... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } -ac_exeext=$ac_cv_exeext - -rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 -$as_echo_n "checking for suffix of executables... " >&6; } -if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - break;; - * ) break;; - esac -done -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details" "$LINENO" 5; } -fi -rm -f conftest conftest$ac_cv_exeext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 -$as_echo "$ac_cv_exeext" >&6; } - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include <stdio.h> -int -main () -{ -FILE *f = fopen ("conftest.out", "w"); - return ferror (f) || fclose (f) != 0; - - ; - return 0; -} -_ACEOF -ac_clean_files="$ac_clean_files conftest.out" -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } -if test "$cross_compiling" != yes; then - { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - if { ac_try='./conftest$ac_cv_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details" "$LINENO" 5; } - fi - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } - -rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 -$as_echo_n "checking for suffix of object files... " >&6; } -if ${ac_cv_objext+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - for ac_file in conftest.o conftest.obj conftest.*; do - test -f "$ac_file" || continue; - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of object files: cannot compile -See \`config.log' for more details" "$LINENO" 5; } -fi -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 -$as_echo "$ac_cv_objext" >&6; } -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if ${ac_cv_c_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -$as_echo "$ac_cv_c_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GCC=yes -else - GCC= -fi -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -$as_echo_n "checking whether $CC accepts -g... " >&6; } -if ${ac_cv_prog_cc_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - ac_cv_prog_cc_g=no - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -else - CFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - ac_c_werror_flag=$ac_save_c_werror_flag - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$ac_save_c_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -$as_echo "$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if ${ac_cv_prog_cc_c89+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_prog_cc_c89=no -ac_save_CC=$CC -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <stdarg.h> -#include <stdio.h> -struct stat; -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_c89=$ac_arg -fi -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c89" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -$as_echo "none needed" >&6; } ;; - xno) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -$as_echo "unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c89" != xno; then : - -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 -$as_echo_n "checking how to run the C preprocessor... " >&6; } -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then - CPP= -fi -if test -z "$CPP"; then - if ${ac_cv_prog_CPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CPP needs to be expanded - for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" - do - ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - # <limits.h> exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@ifdef __STDC__ -@%:@ include <limits.h> -@%:@else -@%:@ include <assert.h> -@%:@endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include <ac_nonexistent.h> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CPP=$CPP - -fi - CPP=$ac_cv_prog_CPP -else - ac_cv_prog_CPP=$CPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 -$as_echo "$CPP" >&6; } -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - # <limits.h> exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@ifdef __STDC__ -@%:@ include <limits.h> -@%:@else -@%:@ include <assert.h> -@%:@endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include <ac_nonexistent.h> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -z "$CXX"; then - if test -n "$CCC"; then - CXX=$CCC - else - if test -n "$ac_tool_prefix"; then - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 -$as_echo "$CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 -$as_echo "$ac_ct_CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CXX" && break -done - - if test "x$ac_ct_CXX" = x; then - CXX="g++" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CXX=$ac_ct_CXX - fi -fi - - fi -fi -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 -$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } -if ${ac_cv_cxx_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 -$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GXX=yes -else - GXX= -fi -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 -$as_echo_n "checking whether $CXX accepts -g... " >&6; } -if ${ac_cv_prog_cxx_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_cxx_werror_flag=$ac_cxx_werror_flag - ac_cxx_werror_flag=yes - ac_cv_prog_cxx_g=no - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -else - CXXFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - -else - ac_cxx_werror_flag=$ac_save_cxx_werror_flag - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_cxx_werror_flag=$ac_save_cxx_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 -$as_echo "$ac_cv_prog_cxx_g" >&6; } -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -# Find a good install program. We prefer a C program (faster), -# so one script is as good as another. But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -# Reject install programs that cannot install multiple files. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 -$as_echo_n "checking for a BSD-compatible install... " >&6; } -if test -z "$INSTALL"; then -if ${ac_cv_path_install+:} false; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in @%:@(( - ./ | .// | /[cC]/* | \ - /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ - /usr/ucb/* ) ;; - *) - # OSF1 and SCO ODT 3.0 have their own names for install. - # Don't use installbsd from OSF since it installs stuff as root - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. - : - elif test $ac_prog = install && - grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # program-specific install script used by HP pwplus--don't use. - : - else - rm -rf conftest.one conftest.two conftest.dir - echo one > conftest.one - echo two > conftest.two - mkdir conftest.dir - if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && - test -s conftest.one && test -s conftest.two && - test -s conftest.dir/conftest.one && - test -s conftest.dir/conftest.two - then - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 - fi - fi - fi - done - done - ;; -esac - - done -IFS=$as_save_IFS - -rm -rf conftest.one conftest.two conftest.dir - -fi - if test "${ac_cv_path_install+set}" = set; then - INSTALL=$ac_cv_path_install - else - # As a last resort, use the slow shell script. Don't cache a - # value for INSTALL within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - INSTALL=$ac_install_sh - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 -$as_echo "$INSTALL" >&6; } - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$RANLIB"; then - ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -RANLIB=$ac_cv_prog_RANLIB -if test -n "$RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 -$as_echo "$RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_RANLIB"; then - ac_ct_RANLIB=$RANLIB - # Extract the first word of "ranlib", so it can be a program name with args. -set dummy ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_RANLIB"; then - ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_RANLIB="ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB -if test -n "$ac_ct_RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 -$as_echo "$ac_ct_RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_RANLIB" = x; then - RANLIB=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - RANLIB=$ac_ct_RANLIB - fi -else - RANLIB="$ac_cv_prog_RANLIB" -fi - -# Extract the first word of "autoconf", so it can be a program name with args. -set dummy autoconf; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AUTOCONF+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AUTOCONF"; then - ac_cv_prog_AUTOCONF="$AUTOCONF" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AUTOCONF="autoconf" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_AUTOCONF" && ac_cv_prog_AUTOCONF=":" -fi -fi -AUTOCONF=$ac_cv_prog_AUTOCONF -if test -n "$AUTOCONF"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AUTOCONF" >&5 -$as_echo "$AUTOCONF" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_STRIP" && ac_cv_prog_STRIP=":" -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "as", so it can be a program name with args. -set dummy as; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AS+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AS"; then - ac_cv_prog_AS="$AS" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AS="as" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_AS" && ac_cv_prog_AS=":" -fi -fi -AS=$ac_cv_prog_AS -if test -n "$AS"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AS" >&5 -$as_echo "$AS" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "cp", so it can be a program name with args. -set dummy cp; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CP"; then - ac_cv_prog_CP="$CP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CP="cp" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_CP" && ac_cv_prog_CP=":" -fi -fi -CP=$ac_cv_prog_CP -if test -n "$CP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CP" >&5 -$as_echo "$CP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "ar", so it can be a program name with args. -set dummy ar; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AR"; then - ac_cv_prog_AR="$AR" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AR="ar" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_AR" && ac_cv_prog_AR=":" -fi -fi -AR=$ac_cv_prog_AR -if test -n "$AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 -$as_echo "$AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "gm4", so it can be a program name with args. -set dummy gm4; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_M4+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$M4"; then - ac_cv_prog_M4="$M4" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_M4="gm4" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_M4" && ac_cv_prog_M4="m4" -fi -fi -M4=$ac_cv_prog_M4 -if test -n "$M4"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $M4" >&5 -$as_echo "$M4" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - -for ac_prog in flex lex -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_LEX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$LEX"; then - ac_cv_prog_LEX="$LEX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_LEX="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -LEX=$ac_cv_prog_LEX -if test -n "$LEX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LEX" >&5 -$as_echo "$LEX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$LEX" && break -done -test -n "$LEX" || LEX=":" - - -for ac_prog in 'bison -y' byacc yacc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_YACC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$YACC"; then - ac_cv_prog_YACC="$YACC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_YACC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -YACC=$ac_cv_prog_YACC -if test -n "$YACC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YACC" >&5 -$as_echo "$YACC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$YACC" && break -done -test -n "$YACC" || YACC=":" - - -for ac_prog in python3.6 python2.7 python2 python3 -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_PYTHON+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$PYTHON"; then - ac_cv_prog_PYTHON="$PYTHON" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_PYTHON="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -PYTHON=$ac_cv_prog_PYTHON -if test -n "$PYTHON"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 -$as_echo "$PYTHON" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$PYTHON" && break -done -test -n "$PYTHON" || PYTHON="python" - - - - -if test "$YACC" = ":"; then - as_fn_error $? "Cannot find required program bison." "$LINENO" 5 - fi - -if test "$LEX" = ":"; then - as_fn_error $? "Cannot find required program flex." "$LINENO" 5 - fi - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if ${ac_cv_path_GREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$GREP"; then - ac_path_GREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_GREP" || continue -# Check for GNU ac_path_GREP and select it if it is found. - # Check for GNU $ac_path_GREP -case `"$ac_path_GREP" --version 2>&1` in -*GNU*) - ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'GREP' >> "conftest.nl" - "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_GREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_GREP="$ac_path_GREP" - ac_path_GREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_GREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_GREP"; then - as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_GREP=$GREP -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -$as_echo "$ac_cv_path_GREP" >&6; } - GREP="$ac_cv_path_GREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -$as_echo_n "checking for egrep... " >&6; } -if ${ac_cv_path_EGREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 - then ac_cv_path_EGREP="$GREP -E" - else - if test -z "$EGREP"; then - ac_path_EGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_EGREP" || continue -# Check for GNU ac_path_EGREP and select it if it is found. - # Check for GNU $ac_path_EGREP -case `"$ac_path_EGREP" --version 2>&1` in -*GNU*) - ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'EGREP' >> "conftest.nl" - "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_EGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_EGREP="$ac_path_EGREP" - ac_path_EGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_EGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_EGREP"; then - as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_EGREP=$EGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -$as_echo "$ac_cv_path_EGREP" >&6; } - EGREP="$ac_cv_path_EGREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <stdlib.h> -#include <stdarg.h> -#include <string.h> -#include <float.h> - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_stdc=yes -else - ac_cv_header_stdc=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <string.h> - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <stdlib.h> - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then : - : -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <ctype.h> -#include <stdlib.h> -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - -else - ac_cv_header_stdc=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then - -$as_echo "@%:@define STDC_HEADERS 1" >>confdefs.h - -fi - -# On IRIX 5.3, sys/types and inttypes.h are conflicting. -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - -for ac_header in endian.h sys/endian.h machine/endian.h sys/isa_defs.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 -$as_echo_n "checking how to run the C++ preprocessor... " >&6; } -if test -z "$CXXCPP"; then - if ${ac_cv_prog_CXXCPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CXXCPP needs to be expanded - for CXXCPP in "$CXX -E" "/lib/cpp" - do - ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - # <limits.h> exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@ifdef __STDC__ -@%:@ include <limits.h> -@%:@else -@%:@ include <assert.h> -@%:@endif - Syntax error -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include <ac_nonexistent.h> -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CXXCPP=$CXXCPP - -fi - CXXCPP=$ac_cv_prog_CXXCPP -else - ac_cv_prog_CXXCPP=$CXXCPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 -$as_echo "$CXXCPP" >&6; } -ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - # <limits.h> exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@ifdef __STDC__ -@%:@ include <limits.h> -@%:@else -@%:@ include <assert.h> -@%:@endif - Syntax error -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include <ac_nonexistent.h> -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } -fi - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -for ac_header in treedec/combinations.hpp -do : - ac_fn_cxx_check_header_mongrel "$LINENO" "treedec/combinations.hpp" "ac_cv_header_treedec_combinations_hpp" "$ac_includes_default" -if test "x$ac_cv_header_treedec_combinations_hpp" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_TREEDEC_COMBINATIONS_HPP 1 -_ACEOF - -else - { $as_echo "$as_me:${as_lineno-$LINENO}: treedec library missing, falling back to Thorup." >&5 -$as_echo "$as_me: treedec library missing, falling back to Thorup." >&6;} -fi - -done - -for ac_header in gala/graph.h -do : - ac_fn_cxx_check_header_mongrel "$LINENO" "gala/graph.h" "ac_cv_header_gala_graph_h" "$ac_includes_default" -if test "x$ac_cv_header_gala_graph_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_GALA_GRAPH_H 1 -_ACEOF - -fi - -done - -for ac_header in boost/graph/adjacency_list.hpp -do : - ac_fn_cxx_check_header_mongrel "$LINENO" "boost/graph/adjacency_list.hpp" "ac_cv_header_boost_graph_adjacency_list_hpp" "$ac_includes_default" -if test "x$ac_cv_header_boost_graph_adjacency_list_hpp" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP 1 -_ACEOF - -else - as_fn_error $? "boost library not found (boost/graph/adjacency_list.hpp)." "$LINENO" 5 -fi - -done - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - -@%:@ Check whether --with-ccache was given. -if test "${with_ccache+set}" = set; then : - withval=$with_ccache; -fi - -case x${with_ccache-yes} in - xyes) # Extract the first word of "ccache", so it can be a program name with args. -set dummy ccache; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CCACHE+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CCACHE"; then - ac_cv_prog_CCACHE="$CCACHE" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CCACHE="ccache" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CCACHE=$ac_cv_prog_CCACHE -if test -n "$CCACHE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CCACHE" >&5 -$as_echo "$CCACHE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - ;; - xno) ;; - *) CCACHE=$with_ccache - ;; -esac - - -# Checking for functions -# =========================================================================== -for ac_func in strerror mkstemp strndup setrlimit backtrace_symbols_fd -do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - -fi -done - - - -# Macro definitions -# =========================================================================== - -# _sdcc_EXECUTE_IFELSE_BODY(COMMAND) -# ----------------------- -# Shell function body for _AC_EXECUTE_IFELSE. -# _sdcc_EXECUTE_IFELSE_BODY - -# sdcc_EXECUTE_IFELSE(COMMAND[ACTION-IF-TRUE], [ACTION-IF-FALSE]) -# ---------------------------------------------------------------- -# Try to execute COMMAND. -# sdcc_EXECUTE_IFELSE - -# Check whether the compiler for the current language is SunPRO. - - - -# sdcc_IS_VALID_OPTION macro checks if the current compiler, selected by -# AC_LANG, supports option specified as the 1st parameter. The test fails if -# the compiler returns an error or in case something is writeen to stderr. -# For example: sdcc_VALID_OPT(-fPIC) - - - -# This macro expands DIR and assigns it to RET. -# If DIR is NONE, then it's replaced by DEFAULT. -# -# Based on AC_DEFINE_DIR -# -# Examples: -# -# adl_EXPAND(prefix, "/usr/local", expanded_prefix) - - - -# adl_NORMALIZE_PATH -# -# - empty paths are changed to '.' -# - trailing slashes are removed -# - repeated slashes are squeezed except a leading doubled slash '//' -# (which might indicate a networked disk on some OS). -# -# -# REFERENCE_STRING is used to turn '/' into '\' and vice-versa: if -# REFERENCE_STRING contains some backslashes, all slashes and backslashes -# are turned into backslashes, otherwise they are all turned into slashes. -# -# This makes processing of DOS filenames quite easier, because you can turn a -# filename to the Unix notation, make your processing, and turn it back to -# original notation. - - - - -# adl_COMPUTE_RELATIVE_PATH -# -# PATH_LIST is a space-separated list of colon-separated triplets of the form -# 'FROM:TO:RESULT'. This function iterates over these triplets and set $RESULT -# to the relative path from $FROM to $TO. Note that $FROM and $TO needs to be -# absolute filenames for this macro to success. - - - -## Note: -## ***** -## The following helper macros are too fragile to be used out -## of adl_COMPUTE_RELATIVE_PATHS (mainly because they assume that -## paths are normalized), that's why I'm keeping them in the same file. -## Still, some of them maybe worth to reuse. - - - - - - - - - - - - - - - - - ax_cxx_compile_alternatives="11 0x" ax_cxx_compile_cxx11_required=true - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - ac_success=no - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features by default" >&5 -$as_echo_n "checking whether $CXX supports C++11 features by default... " >&6; } -if ${ax_cv_cxx_compile_cxx11+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -// If the compiler admits that it is not ready for C++11, why torture it? -// Hopefully, this will speed up the test. - -#ifndef __cplusplus - -#error "This is not a C++ compiler" - -#elif __cplusplus < 201103L - -#error "This is not a C++11 compiler" - -#else - -namespace cxx11 -{ - - namespace test_static_assert - { - - template <typename T> - struct check - { - static_assert(sizeof(int) <= sizeof(T), "not big enough"); - }; - - } - - namespace test_final_override - { - - struct Base - { - virtual void f() {} - }; - - struct Derived : public Base - { - virtual void f() override {} - }; - - } - - namespace test_double_right_angle_brackets - { - - template < typename T > - struct check {}; - - typedef check<void> single_type; - typedef check<check<void>> double_type; - typedef check<check<check<void>>> triple_type; - typedef check<check<check<check<void>>>> quadruple_type; - - } - - namespace test_decltype - { - - int - f() - { - int a = 1; - decltype(a) b = 2; - return a + b; - } - - } - - namespace test_type_deduction - { - - template < typename T1, typename T2 > - struct is_same - { - static const bool value = false; - }; - - template < typename T > - struct is_same<T, T> - { - static const bool value = true; - }; - - template < typename T1, typename T2 > - auto - add(T1 a1, T2 a2) -> decltype(a1 + a2) - { - return a1 + a2; - } - - int - test(const int c, volatile int v) - { - static_assert(is_same<int, decltype(0)>::value == true, ""); - static_assert(is_same<int, decltype(c)>::value == false, ""); - static_assert(is_same<int, decltype(v)>::value == false, ""); - auto ac = c; - auto av = v; - auto sumi = ac + av + 'x'; - auto sumf = ac + av + 1.0; - static_assert(is_same<int, decltype(ac)>::value == true, ""); - static_assert(is_same<int, decltype(av)>::value == true, ""); - static_assert(is_same<int, decltype(sumi)>::value == true, ""); - static_assert(is_same<int, decltype(sumf)>::value == false, ""); - static_assert(is_same<int, decltype(add(c, v))>::value == true, ""); - return (sumf > 0.0) ? sumi : add(c, v); - } - - } - - namespace test_noexcept - { - - int f() { return 0; } - int g() noexcept { return 0; } - - static_assert(noexcept(f()) == false, ""); - static_assert(noexcept(g()) == true, ""); - - } - - namespace test_constexpr - { - - template < typename CharT > - unsigned long constexpr - strlen_c_r(const CharT *const s, const unsigned long acc) noexcept - { - return *s ? strlen_c_r(s + 1, acc + 1) : acc; - } - - template < typename CharT > - unsigned long constexpr - strlen_c(const CharT *const s) noexcept - { - return strlen_c_r(s, 0UL); - } - - static_assert(strlen_c("") == 0UL, ""); - static_assert(strlen_c("1") == 1UL, ""); - static_assert(strlen_c("example") == 7UL, ""); - static_assert(strlen_c("another\0example") == 7UL, ""); - - } - - namespace test_rvalue_references - { - - template < int N > - struct answer - { - static constexpr int value = N; - }; - - answer<1> f(int&) { return answer<1>(); } - answer<2> f(const int&) { return answer<2>(); } - answer<3> f(int&&) { return answer<3>(); } - - void - test() - { - int i = 0; - const int c = 0; - static_assert(decltype(f(i))::value == 1, ""); - static_assert(decltype(f(c))::value == 2, ""); - static_assert(decltype(f(0))::value == 3, ""); - } - - } - - namespace test_uniform_initialization - { - - struct test - { - static const int zero {}; - static const int one {1}; - }; - - static_assert(test::zero == 0, ""); - static_assert(test::one == 1, ""); - - } - - namespace test_lambdas - { - - void - test1() - { - auto lambda1 = [](){}; - auto lambda2 = lambda1; - lambda1(); - lambda2(); - } - - int - test2() - { - auto a = [](int i, int j){ return i + j; }(1, 2); - auto b = []() -> int { return '0'; }(); - auto c = [=](){ return a + b; }(); - auto d = [&](){ return c; }(); - auto e = [a, &b](int x) mutable { - const auto identity = [](int y){ return y; }; - for (auto i = 0; i < a; ++i) - a += b--; - return x + identity(a + b); - }(0); - return a + b + c + d + e; - } - - int - test3() - { - const auto nullary = [](){ return 0; }; - const auto unary = [](int x){ return x; }; - using nullary_t = decltype(nullary); - using unary_t = decltype(unary); - const auto higher1st = [](nullary_t f){ return f(); }; - const auto higher2nd = [unary](nullary_t f1){ - return [unary, f1](unary_t f2){ return f2(unary(f1())); }; - }; - return higher1st(nullary) + higher2nd(nullary)(unary); - } - - } - - namespace test_variadic_templates - { - - template <int...> - struct sum; - - template <int N0, int... N1toN> - struct sum<N0, N1toN...> - { - static constexpr auto value = N0 + sum<N1toN...>::value; - }; - - template <> - struct sum<> - { - static constexpr auto value = 0; - }; - - static_assert(sum<>::value == 0, ""); - static_assert(sum<1>::value == 1, ""); - static_assert(sum<23>::value == 23, ""); - static_assert(sum<1, 2>::value == 3, ""); - static_assert(sum<5, 5, 11>::value == 21, ""); - static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); - - } - - // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae - // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function - // because of this. - namespace test_template_alias_sfinae - { - - struct foo {}; - - template<typename T> - using member = typename T::member_type; - - template<typename T> - void func(...) {} - - template<typename T> - void func(member<T>*) {} - - void test(); - - void test() { func<foo>(0); } - - } - -} // namespace cxx11 - -#endif // __cplusplus >= 201103L - - - -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_cxx_compile_cxx11=yes -else - ax_cv_cxx_compile_cxx11=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_cxx_compile_cxx11" >&5 -$as_echo "$ax_cv_cxx_compile_cxx11" >&6; } - if test x$ax_cv_cxx_compile_cxx11 = xyes; then - ac_success=yes - fi - - if test x$ac_success = xno; then - for alternative in ${ax_cxx_compile_alternatives}; do - switch="-std=gnu++${alternative}" - cachevar=`$as_echo "ax_cv_cxx_compile_cxx11_$switch" | $as_tr_sh` - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features with $switch" >&5 -$as_echo_n "checking whether $CXX supports C++11 features with $switch... " >&6; } -if eval \${$cachevar+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_CXX="$CXX" - CXX="$CXX $switch" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -// If the compiler admits that it is not ready for C++11, why torture it? -// Hopefully, this will speed up the test. - -#ifndef __cplusplus - -#error "This is not a C++ compiler" - -#elif __cplusplus < 201103L - -#error "This is not a C++11 compiler" - -#else - -namespace cxx11 -{ - - namespace test_static_assert - { - - template <typename T> - struct check - { - static_assert(sizeof(int) <= sizeof(T), "not big enough"); - }; - - } - - namespace test_final_override - { - - struct Base - { - virtual void f() {} - }; - - struct Derived : public Base - { - virtual void f() override {} - }; - - } - - namespace test_double_right_angle_brackets - { - - template < typename T > - struct check {}; - - typedef check<void> single_type; - typedef check<check<void>> double_type; - typedef check<check<check<void>>> triple_type; - typedef check<check<check<check<void>>>> quadruple_type; - - } - - namespace test_decltype - { - - int - f() - { - int a = 1; - decltype(a) b = 2; - return a + b; - } - - } - - namespace test_type_deduction - { - - template < typename T1, typename T2 > - struct is_same - { - static const bool value = false; - }; - - template < typename T > - struct is_same<T, T> - { - static const bool value = true; - }; - - template < typename T1, typename T2 > - auto - add(T1 a1, T2 a2) -> decltype(a1 + a2) - { - return a1 + a2; - } - - int - test(const int c, volatile int v) - { - static_assert(is_same<int, decltype(0)>::value == true, ""); - static_assert(is_same<int, decltype(c)>::value == false, ""); - static_assert(is_same<int, decltype(v)>::value == false, ""); - auto ac = c; - auto av = v; - auto sumi = ac + av + 'x'; - auto sumf = ac + av + 1.0; - static_assert(is_same<int, decltype(ac)>::value == true, ""); - static_assert(is_same<int, decltype(av)>::value == true, ""); - static_assert(is_same<int, decltype(sumi)>::value == true, ""); - static_assert(is_same<int, decltype(sumf)>::value == false, ""); - static_assert(is_same<int, decltype(add(c, v))>::value == true, ""); - return (sumf > 0.0) ? sumi : add(c, v); - } - - } - - namespace test_noexcept - { - - int f() { return 0; } - int g() noexcept { return 0; } - - static_assert(noexcept(f()) == false, ""); - static_assert(noexcept(g()) == true, ""); - - } - - namespace test_constexpr - { - - template < typename CharT > - unsigned long constexpr - strlen_c_r(const CharT *const s, const unsigned long acc) noexcept - { - return *s ? strlen_c_r(s + 1, acc + 1) : acc; - } - - template < typename CharT > - unsigned long constexpr - strlen_c(const CharT *const s) noexcept - { - return strlen_c_r(s, 0UL); - } - - static_assert(strlen_c("") == 0UL, ""); - static_assert(strlen_c("1") == 1UL, ""); - static_assert(strlen_c("example") == 7UL, ""); - static_assert(strlen_c("another\0example") == 7UL, ""); - - } - - namespace test_rvalue_references - { - - template < int N > - struct answer - { - static constexpr int value = N; - }; - - answer<1> f(int&) { return answer<1>(); } - answer<2> f(const int&) { return answer<2>(); } - answer<3> f(int&&) { return answer<3>(); } - - void - test() - { - int i = 0; - const int c = 0; - static_assert(decltype(f(i))::value == 1, ""); - static_assert(decltype(f(c))::value == 2, ""); - static_assert(decltype(f(0))::value == 3, ""); - } - - } - - namespace test_uniform_initialization - { - - struct test - { - static const int zero {}; - static const int one {1}; - }; - - static_assert(test::zero == 0, ""); - static_assert(test::one == 1, ""); - - } - - namespace test_lambdas - { - - void - test1() - { - auto lambda1 = [](){}; - auto lambda2 = lambda1; - lambda1(); - lambda2(); - } - - int - test2() - { - auto a = [](int i, int j){ return i + j; }(1, 2); - auto b = []() -> int { return '0'; }(); - auto c = [=](){ return a + b; }(); - auto d = [&](){ return c; }(); - auto e = [a, &b](int x) mutable { - const auto identity = [](int y){ return y; }; - for (auto i = 0; i < a; ++i) - a += b--; - return x + identity(a + b); - }(0); - return a + b + c + d + e; - } - - int - test3() - { - const auto nullary = [](){ return 0; }; - const auto unary = [](int x){ return x; }; - using nullary_t = decltype(nullary); - using unary_t = decltype(unary); - const auto higher1st = [](nullary_t f){ return f(); }; - const auto higher2nd = [unary](nullary_t f1){ - return [unary, f1](unary_t f2){ return f2(unary(f1())); }; - }; - return higher1st(nullary) + higher2nd(nullary)(unary); - } - - } - - namespace test_variadic_templates - { - - template <int...> - struct sum; - - template <int N0, int... N1toN> - struct sum<N0, N1toN...> - { - static constexpr auto value = N0 + sum<N1toN...>::value; - }; - - template <> - struct sum<> - { - static constexpr auto value = 0; - }; - - static_assert(sum<>::value == 0, ""); - static_assert(sum<1>::value == 1, ""); - static_assert(sum<23>::value == 23, ""); - static_assert(sum<1, 2>::value == 3, ""); - static_assert(sum<5, 5, 11>::value == 21, ""); - static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); - - } - - // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae - // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function - // because of this. - namespace test_template_alias_sfinae - { - - struct foo {}; - - template<typename T> - using member = typename T::member_type; - - template<typename T> - void func(...) {} - - template<typename T> - void func(member<T>*) {} - - void test(); - - void test() { func<foo>(0); } - - } - -} // namespace cxx11 - -#endif // __cplusplus >= 201103L - - - -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - eval $cachevar=yes -else - eval $cachevar=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXX="$ac_save_CXX" -fi -eval ac_res=\$$cachevar - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - if eval test x\$$cachevar = xyes; then - CXX="$CXX $switch" - if test -n "$CXXCPP" ; then - CXXCPP="$CXXCPP $switch" - fi - ac_success=yes - break - fi - done - fi - - if test x$ac_success = xno; then - for alternative in ${ax_cxx_compile_alternatives}; do - for switch in -std=c++${alternative} +std=c++${alternative} "-h std=c++${alternative}"; do - cachevar=`$as_echo "ax_cv_cxx_compile_cxx11_$switch" | $as_tr_sh` - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features with $switch" >&5 -$as_echo_n "checking whether $CXX supports C++11 features with $switch... " >&6; } -if eval \${$cachevar+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_CXX="$CXX" - CXX="$CXX $switch" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -// If the compiler admits that it is not ready for C++11, why torture it? -// Hopefully, this will speed up the test. - -#ifndef __cplusplus - -#error "This is not a C++ compiler" - -#elif __cplusplus < 201103L - -#error "This is not a C++11 compiler" - -#else - -namespace cxx11 -{ - - namespace test_static_assert - { - - template <typename T> - struct check - { - static_assert(sizeof(int) <= sizeof(T), "not big enough"); - }; - - } - - namespace test_final_override - { - - struct Base - { - virtual void f() {} - }; - - struct Derived : public Base - { - virtual void f() override {} - }; - - } - - namespace test_double_right_angle_brackets - { - - template < typename T > - struct check {}; - - typedef check<void> single_type; - typedef check<check<void>> double_type; - typedef check<check<check<void>>> triple_type; - typedef check<check<check<check<void>>>> quadruple_type; - - } - - namespace test_decltype - { - - int - f() - { - int a = 1; - decltype(a) b = 2; - return a + b; - } - - } - - namespace test_type_deduction - { - - template < typename T1, typename T2 > - struct is_same - { - static const bool value = false; - }; - - template < typename T > - struct is_same<T, T> - { - static const bool value = true; - }; - - template < typename T1, typename T2 > - auto - add(T1 a1, T2 a2) -> decltype(a1 + a2) - { - return a1 + a2; - } - - int - test(const int c, volatile int v) - { - static_assert(is_same<int, decltype(0)>::value == true, ""); - static_assert(is_same<int, decltype(c)>::value == false, ""); - static_assert(is_same<int, decltype(v)>::value == false, ""); - auto ac = c; - auto av = v; - auto sumi = ac + av + 'x'; - auto sumf = ac + av + 1.0; - static_assert(is_same<int, decltype(ac)>::value == true, ""); - static_assert(is_same<int, decltype(av)>::value == true, ""); - static_assert(is_same<int, decltype(sumi)>::value == true, ""); - static_assert(is_same<int, decltype(sumf)>::value == false, ""); - static_assert(is_same<int, decltype(add(c, v))>::value == true, ""); - return (sumf > 0.0) ? sumi : add(c, v); - } - - } - - namespace test_noexcept - { - - int f() { return 0; } - int g() noexcept { return 0; } - - static_assert(noexcept(f()) == false, ""); - static_assert(noexcept(g()) == true, ""); - - } - - namespace test_constexpr - { - - template < typename CharT > - unsigned long constexpr - strlen_c_r(const CharT *const s, const unsigned long acc) noexcept - { - return *s ? strlen_c_r(s + 1, acc + 1) : acc; - } - - template < typename CharT > - unsigned long constexpr - strlen_c(const CharT *const s) noexcept - { - return strlen_c_r(s, 0UL); - } - - static_assert(strlen_c("") == 0UL, ""); - static_assert(strlen_c("1") == 1UL, ""); - static_assert(strlen_c("example") == 7UL, ""); - static_assert(strlen_c("another\0example") == 7UL, ""); - - } - - namespace test_rvalue_references - { - - template < int N > - struct answer - { - static constexpr int value = N; - }; - - answer<1> f(int&) { return answer<1>(); } - answer<2> f(const int&) { return answer<2>(); } - answer<3> f(int&&) { return answer<3>(); } - - void - test() - { - int i = 0; - const int c = 0; - static_assert(decltype(f(i))::value == 1, ""); - static_assert(decltype(f(c))::value == 2, ""); - static_assert(decltype(f(0))::value == 3, ""); - } - - } - - namespace test_uniform_initialization - { - - struct test - { - static const int zero {}; - static const int one {1}; - }; - - static_assert(test::zero == 0, ""); - static_assert(test::one == 1, ""); - - } - - namespace test_lambdas - { - - void - test1() - { - auto lambda1 = [](){}; - auto lambda2 = lambda1; - lambda1(); - lambda2(); - } - - int - test2() - { - auto a = [](int i, int j){ return i + j; }(1, 2); - auto b = []() -> int { return '0'; }(); - auto c = [=](){ return a + b; }(); - auto d = [&](){ return c; }(); - auto e = [a, &b](int x) mutable { - const auto identity = [](int y){ return y; }; - for (auto i = 0; i < a; ++i) - a += b--; - return x + identity(a + b); - }(0); - return a + b + c + d + e; - } - - int - test3() - { - const auto nullary = [](){ return 0; }; - const auto unary = [](int x){ return x; }; - using nullary_t = decltype(nullary); - using unary_t = decltype(unary); - const auto higher1st = [](nullary_t f){ return f(); }; - const auto higher2nd = [unary](nullary_t f1){ - return [unary, f1](unary_t f2){ return f2(unary(f1())); }; - }; - return higher1st(nullary) + higher2nd(nullary)(unary); - } - - } - - namespace test_variadic_templates - { - - template <int...> - struct sum; - - template <int N0, int... N1toN> - struct sum<N0, N1toN...> - { - static constexpr auto value = N0 + sum<N1toN...>::value; - }; - - template <> - struct sum<> - { - static constexpr auto value = 0; - }; - - static_assert(sum<>::value == 0, ""); - static_assert(sum<1>::value == 1, ""); - static_assert(sum<23>::value == 23, ""); - static_assert(sum<1, 2>::value == 3, ""); - static_assert(sum<5, 5, 11>::value == 21, ""); - static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); - - } - - // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae - // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function - // because of this. - namespace test_template_alias_sfinae - { - - struct foo {}; - - template<typename T> - using member = typename T::member_type; - - template<typename T> - void func(...) {} - - template<typename T> - void func(member<T>*) {} - - void test(); - - void test() { func<foo>(0); } - - } - -} // namespace cxx11 - -#endif // __cplusplus >= 201103L - - - -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - eval $cachevar=yes -else - eval $cachevar=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXX="$ac_save_CXX" -fi -eval ac_res=\$$cachevar - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - if eval test x\$$cachevar = xyes; then - CXX="$CXX $switch" - if test -n "$CXXCPP" ; then - CXXCPP="$CXXCPP $switch" - fi - ac_success=yes - break - fi - done - if test x$ac_success = xyes; then - break - fi - done - fi - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - if test x$ax_cxx_compile_cxx11_required = xtrue; then - if test x$ac_success = xno; then - as_fn_error $? "*** A compiler with support for C++11 language features is required." "$LINENO" 5 - fi - fi - if test x$ac_success = xno; then - HAVE_CXX11=0 - { $as_echo "$as_me:${as_lineno-$LINENO}: No compiler with C++11 support was found" >&5 -$as_echo "$as_me: No compiler with C++11 support was found" >&6;} - else - HAVE_CXX11=1 - -$as_echo "@%:@define HAVE_CXX11 1" >>confdefs.h - - fi - - - - -# Checking characteristics of compilers and other programs -# =========================================================================== -if test "$ac_cv_c_compiler_gnu" = "yes"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether preprocessor accepts -MM or -M" >&5 -$as_echo_n "checking whether preprocessor accepts -MM or -M... " >&6; } -if ${sdcc_cv_MM+:} false; then : - $as_echo_n "(cached) " >&6 -else - echo "#include <stdio.h>" >_test_.c - echo "" >>_test_.c - $CPP -v -MM _test_.c 1>&5 2>&5 - if test "$?" = "0"; then - sdcc_cv_MM="-MM" - else - sdcc_cv_MM="-M" - fi - rm -f _test_.* -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sdcc_cv_MM" >&5 -$as_echo "$sdcc_cv_MM" >&6; } - - # This is the first time when CFLAGS are set/modified!! - arg1=`echo -ggdb | sed -e"s/^-*//" -e"s/-/_/"` -ac_test_CFLAGS=${CFLAGS+set} -sdcc_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C accepts -ggdb" >&5 -$as_echo_n "checking whether C accepts -ggdb... " >&6; } -if eval \${sdcc_cv_c_$arg1+:} false; then : - $as_echo_n "(cached) " >&6 -else - sdcc_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - - CFLAGS="-ggdb" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval sdcc_cv_c_$arg1=yes -else - eval sdcc_cv_c_$arg1=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$sdcc_save_c_werror_flag -fi -eval ac_res=\$sdcc_cv_c_$arg1 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - CFLAGS=$sdcc_save_CFLAGS - - if test "$sdcc_cv_c_ggdb" = "yes"; then - CFLAGS="-ggdb ${CFLAGS}" - CXXFLAGS="-ggdb ${CXXFLAGS}" - fi - - arg1=`echo -pipe | sed -e"s/^-*//" -e"s/-/_/"` -ac_test_CFLAGS=${CFLAGS+set} -sdcc_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C accepts -pipe" >&5 -$as_echo_n "checking whether C accepts -pipe... " >&6; } -if eval \${sdcc_cv_c_$arg1+:} false; then : - $as_echo_n "(cached) " >&6 -else - sdcc_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - - CFLAGS="-pipe" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval sdcc_cv_c_$arg1=yes -else - eval sdcc_cv_c_$arg1=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$sdcc_save_c_werror_flag -fi -eval ac_res=\$sdcc_cv_c_$arg1 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - CFLAGS=$sdcc_save_CFLAGS - - if test "$sdcc_cv_c_pipe" = "yes"; then - CFLAGS="-pipe ${CFLAGS}" - # Don't use "-pipe" on x86 Solaris g++, since src/z80/ralloc2.cc dies with: - # Assembler: ralloc2.cc - # "<stdin>", line 117637 : Internal: Out of symbol table - if test `uname` != "SunOS" -o \( `uname` = "SunOS" -a `uname -m` != "i86pc" \); then - CXXFLAGS="-pipe ${CXXFLAGS}" - fi - fi - - WALL_FLAG="-Wall -Wno-parentheses" - C99_FLAG="--std=c99" - # We use CXX instead of CC here, since some of the C++ source files require a C++ compiler even during dependency generation. - MAKEDEP="$CXX $sdcc_cv_MM" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the SunPRO C compiler" >&5 -$as_echo_n "checking whether we are using the SunPRO C compiler... " >&6; } -if ${sdcc_cv_c_compiler_sunpro+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#if !defined __SUNPRO_C && !defined __SUNPRO_CC - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - sdcc_cv_c_compiler_sunpro=yes -else - sdcc_cv_c_compiler_sunpro=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sdcc_cv_c_compiler_sunpro" >&5 -$as_echo "$sdcc_cv_c_compiler_sunpro" >&6; } - if test "$sdcc_cv_c_compiler_sunpro" = "yes"; then - C99_FLAG="-xc99" - CFLAGS="-xO2 ${C99_FLAG} ${CFLAGS}" - CXXFLAGS="-xO2 ${CXXFLAGS}" - WALL_FLAG= - MAKEDEP="$CC ${C99_FLAG} -xM1" - fi -fi - - - - - -# Try to append a c99 flag -# ------------------------------------------------------------------------- - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C99" >&5 -$as_echo_n "checking for $CC option to accept ISO C99... " >&6; } -if ${ac_cv_prog_cc_c99+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_prog_cc_c99=no -ac_save_CC=$CC -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <stdarg.h> -#include <stdbool.h> -#include <stdlib.h> -#include <wchar.h> -#include <stdio.h> - -// Check varargs macros. These examples are taken from C99 6.10.3.5. -#define debug(...) fprintf (stderr, __VA_ARGS__) -#define showlist(...) puts (#__VA_ARGS__) -#define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) -static void -test_varargs_macros (void) -{ - int x = 1234; - int y = 5678; - debug ("Flag"); - debug ("X = %d\n", x); - showlist (The first, second, and third items.); - report (x>y, "x is %d but y is %d", x, y); -} - -// Check long long types. -#define BIG64 18446744073709551615ull -#define BIG32 4294967295ul -#define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) -#if !BIG_OK - your preprocessor is broken; -#endif -#if BIG_OK -#else - your preprocessor is broken; -#endif -static long long int bignum = -9223372036854775807LL; -static unsigned long long int ubignum = BIG64; - -struct incomplete_array -{ - int datasize; - double data[]; -}; - -struct named_init { - int number; - const wchar_t *name; - double average; -}; - -typedef const char *ccp; - -static inline int -test_restrict (ccp restrict text) -{ - // See if C++-style comments work. - // Iterate through items via the restricted pointer. - // Also check for declarations in for loops. - for (unsigned int i = 0; *(text+i) != '\0'; ++i) - continue; - return 0; -} - -// Check varargs and va_copy. -static void -test_varargs (const char *format, ...) -{ - va_list args; - va_start (args, format); - va_list args_copy; - va_copy (args_copy, args); - - const char *str; - int number; - float fnumber; - - while (*format) - { - switch (*format++) - { - case 's': // string - str = va_arg (args_copy, const char *); - break; - case 'd': // int - number = va_arg (args_copy, int); - break; - case 'f': // float - fnumber = va_arg (args_copy, double); - break; - default: - break; - } - } - va_end (args_copy); - va_end (args); -} - -int -main () -{ - - // Check bool. - _Bool success = false; - - // Check restrict. - if (test_restrict ("String literal") == 0) - success = true; - char *restrict newvar = "Another string"; - - // Check varargs. - test_varargs ("s, d' f .", "string", 65, 34.234); - test_varargs_macros (); - - // Check flexible array members. - struct incomplete_array *ia = - malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); - ia->datasize = 10; - for (int i = 0; i < ia->datasize; ++i) - ia->data[i] = i * 1.234; - - // Check named initializers. - struct named_init ni = { - .number = 34, - .name = L"Test wide string", - .average = 543.34343, - }; - - ni.number = 58; - - int dynamic_array[ni.number]; - dynamic_array[ni.number - 1] = 543; - - // work around unused variable warnings - return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' - || dynamic_array[ni.number - 1] != 543); - - ; - return 0; -} -_ACEOF -for ac_arg in '' -std=gnu99 -std=c99 -c99 -AC99 -D_STDC_C99= -qlanglvl=extc99 -do - CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_c99=$ac_arg -fi -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c99" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c99" in - x) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -$as_echo "none needed" >&6; } ;; - xno) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -$as_echo "unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c99" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 -$as_echo "$ac_cv_prog_cc_c99" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c99" != xno; then : - -fi - - -if test "$ac_cv_prog_cc_c99" != "no"; then - CFLAGS="$ac_cv_prog_cc_c99 ${CFLAGS}" -fi - -# Checks for typedefs, structures, and compiler characteristics. -# =========================================================================== -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 -$as_echo_n "checking return type of signal handlers... " >&6; } -if ${ac_cv_type_signal+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <sys/types.h> -#include <signal.h> - -int -main () -{ -return *(signal (0, 0)) (0) == 1; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_type_signal=int -else - ac_cv_type_signal=void -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_signal" >&5 -$as_echo "$ac_cv_type_signal" >&6; } - -cat >>confdefs.h <<_ACEOF -@%:@define RETSIGTYPE $ac_cv_type_signal -_ACEOF - - - -# The cast to long int works around a bug in the HP C Compiler -# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -# This bug is HP SR number 8606223364. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of char" >&5 -$as_echo_n "checking size of char... " >&6; } -if ${ac_cv_sizeof_char+:} false; then : - $as_echo_n "(cached) " >&6 -else - if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (char))" "ac_cv_sizeof_char" "$ac_includes_default"; then : - -else - if test "$ac_cv_type_char" = yes; then - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (char) -See \`config.log' for more details" "$LINENO" 5; } - else - ac_cv_sizeof_char=0 - fi -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_char" >&5 -$as_echo "$ac_cv_sizeof_char" >&6; } - - - -cat >>confdefs.h <<_ACEOF -@%:@define SIZEOF_CHAR $ac_cv_sizeof_char -_ACEOF - - -# The cast to long int works around a bug in the HP C Compiler -# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -# This bug is HP SR number 8606223364. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of short" >&5 -$as_echo_n "checking size of short... " >&6; } -if ${ac_cv_sizeof_short+:} false; then : - $as_echo_n "(cached) " >&6 -else - if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (short))" "ac_cv_sizeof_short" "$ac_includes_default"; then : - -else - if test "$ac_cv_type_short" = yes; then - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (short) -See \`config.log' for more details" "$LINENO" 5; } - else - ac_cv_sizeof_short=0 - fi -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_short" >&5 -$as_echo "$ac_cv_sizeof_short" >&6; } - - - -cat >>confdefs.h <<_ACEOF -@%:@define SIZEOF_SHORT $ac_cv_sizeof_short -_ACEOF - - -# The cast to long int works around a bug in the HP C Compiler -# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -# This bug is HP SR number 8606223364. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5 -$as_echo_n "checking size of int... " >&6; } -if ${ac_cv_sizeof_int+:} false; then : - $as_echo_n "(cached) " >&6 -else - if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int" "$ac_includes_default"; then : - -else - if test "$ac_cv_type_int" = yes; then - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (int) -See \`config.log' for more details" "$LINENO" 5; } - else - ac_cv_sizeof_int=0 - fi -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_int" >&5 -$as_echo "$ac_cv_sizeof_int" >&6; } - - - -cat >>confdefs.h <<_ACEOF -@%:@define SIZEOF_INT $ac_cv_sizeof_int -_ACEOF - - -# The cast to long int works around a bug in the HP C Compiler -# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -# This bug is HP SR number 8606223364. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5 -$as_echo_n "checking size of long... " >&6; } -if ${ac_cv_sizeof_long+:} false; then : - $as_echo_n "(cached) " >&6 -else - if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then : - -else - if test "$ac_cv_type_long" = yes; then - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long) -See \`config.log' for more details" "$LINENO" 5; } - else - ac_cv_sizeof_long=0 - fi -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long" >&5 -$as_echo "$ac_cv_sizeof_long" >&6; } - - - -cat >>confdefs.h <<_ACEOF -@%:@define SIZEOF_LONG $ac_cv_sizeof_long -_ACEOF - - -# The cast to long int works around a bug in the HP C Compiler -# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -# This bug is HP SR number 8606223364. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long long" >&5 -$as_echo_n "checking size of long long... " >&6; } -if ${ac_cv_sizeof_long_long+:} false; then : - $as_echo_n "(cached) " >&6 -else - if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long long))" "ac_cv_sizeof_long_long" "$ac_includes_default"; then : - -else - if test "$ac_cv_type_long_long" = yes; then - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "cannot compute sizeof (long long) -See \`config.log' for more details" "$LINENO" 5; } - else - ac_cv_sizeof_long_long=0 - fi -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long_long" >&5 -$as_echo "$ac_cv_sizeof_long_long" >&6; } - - - -cat >>confdefs.h <<_ACEOF -@%:@define SIZEOF_LONG_LONG $ac_cv_sizeof_long_long -_ACEOF - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether char is unsigned" >&5 -$as_echo_n "checking whether char is unsigned... " >&6; } -if ${ac_cv_c_char_unsigned+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ -static int test_array @<:@1 - 2 * !(((char) -1) < 0)@:>@; -test_array @<:@0@:>@ = 0; -return test_array @<:@0@:>@; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_c_char_unsigned=no -else - ac_cv_c_char_unsigned=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_char_unsigned" >&5 -$as_echo "$ac_cv_c_char_unsigned" >&6; } -if test $ac_cv_c_char_unsigned = yes && test "$GCC" != yes; then - $as_echo "@%:@define __CHAR_UNSIGNED__ 1" >>confdefs.h - -fi - - -type_name() -{ - if expr "$ac_cv_sizeof_char" '>=' "$1" >/dev/null; then - echo "char" - exit - fi - if expr "$ac_cv_sizeof_short" '>=' "$1" >/dev/null; then - echo "short" - exit - fi - if expr "$ac_cv_sizeof_int" '>=' "$1" >/dev/null; then - echo "int" - exit - fi - if expr "$ac_cv_sizeof_long" '>=' "$1" >/dev/null; then - echo "long" - exit - fi - if expr "$ac_cv_sizeof_long_long" '>=' "$1" >/dev/null; then - echo "long long" - exit - fi - echo "long" -} - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking type name for byte" >&5 -$as_echo_n "checking type name for byte... " >&6; } -TYPE_CHAR=`type_name 1` -if test "$ac_cv_c_char_unsigned" = "yes"; then - TYPE_BYTE="signed $TYPE_CHAR" -else - TYPE_BYTE=$TYPE_CHAR -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $TYPE_BYTE" >&5 -$as_echo "$TYPE_BYTE" >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking type name for word" >&5 -$as_echo_n "checking type name for word... " >&6; } -TYPE_WORD=`type_name 2` -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $TYPE_WORD" >&5 -$as_echo "$TYPE_WORD" >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking type name for dword" >&5 -$as_echo_n "checking type name for dword... " >&6; } -TYPE_DWORD=`type_name 4` -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $TYPE_DWORD" >&5 -$as_echo "$TYPE_DWORD" >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking type name for qword" >&5 -$as_echo_n "checking type name for qword... " >&6; } -TYPE_QWORD=`type_name 8` -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $TYPE_QWORD" >&5 -$as_echo "$TYPE_QWORD" >&6; } - - -cat >>confdefs.h <<_ACEOF -@%:@define TYPE_BYTE $TYPE_BYTE -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define TYPE_WORD $TYPE_WORD -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define TYPE_DWORD $TYPE_DWORD -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define TYPE_QWORD $TYPE_QWORD -_ACEOF - - - -cat >>confdefs.h <<_ACEOF -@%:@define TYPE_UBYTE unsigned $TYPE_CHAR -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define TYPE_UWORD unsigned $TYPE_WORD -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define TYPE_UDWORD unsigned $TYPE_DWORD -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define TYPE_UQWORD unsigned $TYPE_QWORD -_ACEOF - - -case "${host}" in - *x86_64*cygwin*) - LDFLAGS="$LDFLAGS -Wl,--stack,4194304" -esac - -# Checking whether byte ordering is bigendian -# =========================================================================== - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 -$as_echo_n "checking whether byte ordering is bigendian... " >&6; } -if ${ac_cv_c_bigendian+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_c_bigendian=unknown - # See if we're dealing with a universal compiler. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifndef __APPLE_CC__ - not a universal capable compiler - #endif - typedef int dummy; - -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - - # Check for potential -arch flags. It is not universal unless - # there are at least two -arch flags with different values. - ac_arch= - ac_prev= - for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do - if test -n "$ac_prev"; then - case $ac_word in - i?86 | x86_64 | ppc | ppc64) - if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then - ac_arch=$ac_word - else - ac_cv_c_bigendian=universal - break - fi - ;; - esac - ac_prev= - elif test "x$ac_word" = "x-arch"; then - ac_prev=arch - fi - done -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - if test $ac_cv_c_bigendian = unknown; then - # See if sys/param.h defines the BYTE_ORDER macro. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <sys/types.h> - #include <sys/param.h> - -int -main () -{ -#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \ - && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \ - && LITTLE_ENDIAN) - bogus endian macros - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - # It does; now see whether it defined to BIG_ENDIAN or not. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <sys/types.h> - #include <sys/param.h> - -int -main () -{ -#if BYTE_ORDER != BIG_ENDIAN - not big endian - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_c_bigendian=yes -else - ac_cv_c_bigendian=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - fi - if test $ac_cv_c_bigendian = unknown; then - # See if <limits.h> defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris). - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <limits.h> - -int -main () -{ -#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN) - bogus endian macros - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - # It does; now see whether it defined to _BIG_ENDIAN or not. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <limits.h> - -int -main () -{ -#ifndef _BIG_ENDIAN - not big endian - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_c_bigendian=yes -else - ac_cv_c_bigendian=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - fi - if test $ac_cv_c_bigendian = unknown; then - # Compile a test program. - if test "$cross_compiling" = yes; then : - # Try to guess by grepping values from an object file. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -short int ascii_mm[] = - { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; - short int ascii_ii[] = - { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; - int use_ascii (int i) { - return ascii_mm[i] + ascii_ii[i]; - } - short int ebcdic_ii[] = - { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; - short int ebcdic_mm[] = - { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; - int use_ebcdic (int i) { - return ebcdic_mm[i] + ebcdic_ii[i]; - } - extern int foo; - -int -main () -{ -return use_ascii (foo) == use_ebcdic (foo); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then - ac_cv_c_bigendian=yes - fi - if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then - if test "$ac_cv_c_bigendian" = unknown; then - ac_cv_c_bigendian=no - else - # finding both strings is unlikely to happen, but who knows? - ac_cv_c_bigendian=unknown - fi - fi -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ - - /* Are we little or big endian? From Harbison&Steele. */ - union - { - long int l; - char c[sizeof (long int)]; - } u; - u.l = 1; - return u.c[sizeof (long int) - 1] == 1; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - ac_cv_c_bigendian=no -else - ac_cv_c_bigendian=yes -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5 -$as_echo "$ac_cv_c_bigendian" >&6; } - case $ac_cv_c_bigendian in #( - yes) - $as_echo "@%:@define WORDS_BIGENDIAN 1" >>confdefs.h -;; #( - no) - ;; #( - universal) - -$as_echo "@%:@define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h - - ;; #( - *) - as_fn_error $? "unknown endianness - presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;; - esac - - -# Set standard installation paths -# =========================================================================== - -# In the Makefiles we need paths with '/' as directory separator, even if -# crosscompiling for Win32. -# And we want to preserve the macros (e.g. ${prefix}) in the Makefiles. -# The variables in the Makefiles are replaced by AC_SUBST() -# -# In sdccconf.h the '/' in paths can be replaced by "\\" (normalized), if -# -# The macros are expanded for the header. -# The variables in the header are replaced by AC_*DEFINE*() -# sdccconf_h_dir_separator contains a backslash. - -if test "x${sdccconf_h_dir_separator}" = "x"; then - sdccconf_h_dir_separator="/" -fi - -# Makefiles -########### - -# LIB_TYPE: -# *nix default: "RANLIB" - - -if test "${LIB_TYPE}" = ""; then - LIB_TYPE="RANLIB" -fi - -# include_dir_suffix: -# *nix default: "sdcc/include" - - -if test "${inclib_dir_suffix}" = ""; then - inclib_dir_suffix="sdcc" -fi - - -if test "${include_dir_suffix}" = ""; then - include_dir_suffix="${inclib_dir_suffix}/include" -fi - - -if test "${non_free_inclib_dir_suffix}" = ""; then - non_free_inclib_dir_suffix="sdcc/non-free" -fi - -# non_free_include_dir_suffix: -# *nix default: "sdcc/non-free/include" - - -if test "${non_free_include_dir_suffix}" = ""; then - non_free_include_dir_suffix="${non_free_inclib_dir_suffix}/include" -fi - -# lib_dir_suffix: -# *nix default: "sdcc/lib" - -if test "${lib_dir_suffix}" = ""; then - lib_dir_suffix="${inclib_dir_suffix}/lib" -fi - -# non_free_lib_dir_suffix: -# *nix default: "sdcc/non-free/lib" - -if test "${non_free_lib_dir_suffix}" = ""; then - non_free_lib_dir_suffix="${non_free_inclib_dir_suffix}/lib" -fi - -# docdir: -# *nix default: "${datadir}/sdcc/doc" - -if test "${docdir}" = ""; then - docdir="\${datadir}"/sdcc/doc -fi - - - -# sdccconf.h -############ - - -cat >>confdefs.h <<_ACEOF -@%:@define DIR_SEPARATOR_STRING "${sdccconf_h_dir_separator}" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define DIR_SEPARATOR_CHAR '${sdccconf_h_dir_separator}' -_ACEOF - - -# prefix: -# default: "NONE", ${ac_default_prefix}: "/usr/local" - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - ac_expand=$prefix - test "x$ac_expand" = xNONE && ac_expand="$ac_default_prefix" - ac_expand=`eval echo $ac_expand` - expanded_prefix=`eval echo $ac_expand` - - - ac_ndu=$expanded_prefix - case ":$ac_ndu:" in - ::) ac_ndu='.' ;; - :*[\\/]:) ac_ndu=`echo "$ac_ndu" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $sdccconf_h_dir_separator in - - *\\*) ac_ndu=`echo "$ac_ndu" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) ac_ndu=`echo "$ac_ndu" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - -cat >>confdefs.h <<_ACEOF -@%:@define PREFIX "${ac_ndu}" -_ACEOF - - - -# exec_prefix: -# default: "${prefix}" - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - ac_expand=$exec_prefix - test "x$ac_expand" = xNONE && ac_expand="$expanded_prefix" - ac_expand=`eval echo $ac_expand` - expanded_exec_prefix=`eval echo $ac_expand` - - - ac_ndu=$expanded_exec_prefix - case ":$ac_ndu:" in - ::) ac_ndu='.' ;; - :*[\\/]:) ac_ndu=`echo "$ac_ndu" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $sdccconf_h_dir_separator in - - *\\*) ac_ndu=`echo "$ac_ndu" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) ac_ndu=`echo "$ac_ndu" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - -cat >>confdefs.h <<_ACEOF -@%:@define EXEC_PREFIX "${ac_ndu}" -_ACEOF - - - -# bindir: -# default: "${exec_prefix}/bin" - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - ac_expand=$bindir - test "x$ac_expand" = xNONE && ac_expand="$"NONE"" - ac_expand=`eval echo $ac_expand` - expanded_bindir=`eval echo $ac_expand` - - - ac_ndu=$expanded_bindir - case ":$ac_ndu:" in - ::) ac_ndu='.' ;; - :*[\\/]:) ac_ndu=`echo "$ac_ndu" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $sdccconf_h_dir_separator in - - *\\*) ac_ndu=`echo "$ac_ndu" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) ac_ndu=`echo "$ac_ndu" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - -cat >>confdefs.h <<_ACEOF -@%:@define BINDIR "${ac_ndu}" -_ACEOF - - - -# datadir: -# default: "${prefix}/share" - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - ac_expand=$datadir - test "x$ac_expand" = xNONE && ac_expand="$"NONE"" - ac_expand=`eval echo $ac_expand` - expanded_datadir=`eval echo $ac_expand` - - - ac_ndu=$expanded_datadir - case ":$ac_ndu:" in - ::) ac_ndu='.' ;; - :*[\\/]:) ac_ndu=`echo "$ac_ndu" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $sdccconf_h_dir_separator in - - *\\*) ac_ndu=`echo "$ac_ndu" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) ac_ndu=`echo "$ac_ndu" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - -cat >>confdefs.h <<_ACEOF -@%:@define DATADIR "${ac_ndu}" -_ACEOF - - - -# include/lib suffix -norm_inc_dir_suffix=${include_dir_suffix} -case ":$norm_inc_dir_suffix:" in - ::) norm_inc_dir_suffix='.' ;; - :*[\\/]:) norm_inc_dir_suffix=`echo "$norm_inc_dir_suffix" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $sdccconf_h_dir_separator in - - *\\*) norm_inc_dir_suffix=`echo "$norm_inc_dir_suffix" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) norm_inc_dir_suffix=`echo "$norm_inc_dir_suffix" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - -cat >>confdefs.h <<_ACEOF -@%:@define INCLUDE_DIR_SUFFIX DIR_SEPARATOR_STRING "${norm_inc_dir_suffix}" -_ACEOF - -norm_non_free_inc_dir_suffix=${non_free_include_dir_suffix} -case ":$norm_non_free_inc_dir_suffix:" in - ::) norm_non_free_inc_dir_suffix='.' ;; - :*[\\/]:) norm_non_free_inc_dir_suffix=`echo "$norm_non_free_inc_dir_suffix" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $sdccconf_h_dir_separator in - - *\\*) norm_non_free_inc_dir_suffix=`echo "$norm_non_free_inc_dir_suffix" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) norm_non_free_inc_dir_suffix=`echo "$norm_non_free_inc_dir_suffix" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - -cat >>confdefs.h <<_ACEOF -@%:@define NON_FREE_INCLUDE_DIR_SUFFIX DIR_SEPARATOR_STRING "${norm_non_free_inc_dir_suffix}" -_ACEOF - - -norm_lib_dir_suffix=${lib_dir_suffix} -case ":$norm_lib_dir_suffix:" in - ::) norm_lib_dir_suffix='.' ;; - :*[\\/]:) norm_lib_dir_suffix=`echo "$norm_lib_dir_suffix" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $sdccconf_h_dir_separator in - - *\\*) norm_lib_dir_suffix=`echo "$norm_lib_dir_suffix" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) norm_lib_dir_suffix=`echo "$norm_lib_dir_suffix" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - -cat >>confdefs.h <<_ACEOF -@%:@define LIB_DIR_SUFFIX DIR_SEPARATOR_STRING "${norm_lib_dir_suffix}" -_ACEOF - -norm_non_free_lib_dir_suffix=${non_free_lib_dir_suffix} -case ":$norm_non_free_lib_dir_suffix:" in - ::) norm_non_free_lib_dir_suffix='.' ;; - :*[\\/]:) norm_non_free_lib_dir_suffix=`echo "$norm_non_free_lib_dir_suffix" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $sdccconf_h_dir_separator in - - *\\*) norm_non_free_lib_dir_suffix=`echo "$norm_non_free_lib_dir_suffix" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) norm_non_free_lib_dir_suffix=`echo "$norm_non_free_lib_dir_suffix" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - -cat >>confdefs.h <<_ACEOF -@%:@define NON_FREE_LIB_DIR_SUFFIX DIR_SEPARATOR_STRING "${norm_non_free_lib_dir_suffix}" -_ACEOF - - -# relative paths -for _lcl_i in expanded_bindir:expanded_datadir:bin2data_dir; do - _lcl_from=\$`echo "$_lcl_i" | sed 's,:.*$,,'` - _lcl_to=\$`echo "$_lcl_i" | sed 's,^[^:]*:,,' | sed 's,:[^:]*$,,'` - _lcl_result_var=`echo "$_lcl_i" | sed 's,^.*:,,'` - _lcl_receval="$_lcl_from" -_lcl_from=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" - _lcl_receval_old='' - while test "$_lcl_receval_old" != "$_lcl_receval"; do - _lcl_receval_old="$_lcl_receval" - eval _lcl_receval="\"$_lcl_receval\"" - done - echo "$_lcl_receval")` - _lcl_receval="$_lcl_to" -_lcl_to=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" - _lcl_receval_old='' - while test "$_lcl_receval_old" != "$_lcl_receval"; do - _lcl_receval_old="$_lcl_receval" - eval _lcl_receval="\"$_lcl_receval\"" - done - echo "$_lcl_receval")` - _lcl_notation="$_lcl_from$_lcl_to" - case ":$_lcl_from:" in - ::) _lcl_from='.' ;; - :*[\\/]:) _lcl_from=`echo "$_lcl_from" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case '/' in - - *\\*) _lcl_from=`echo "$_lcl_from" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) _lcl_from=`echo "$_lcl_from" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - case ":$_lcl_to:" in - ::) _lcl_to='.' ;; - :*[\\/]:) _lcl_to=`echo "$_lcl_to" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case '/' in - - *\\*) _lcl_to=`echo "$_lcl_to" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) _lcl_to=`echo "$_lcl_to" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - _lcl_common_prefix='' -_lcl_second_prefix_match='' -while test "$_lcl_second_prefix_match" != 0; do - _lcl_first_prefix=`expr "x$_lcl_from" : "x\($_lcl_common_prefix/*[^/]*\)"` - _lcl_second_prefix_match=`expr "x$_lcl_to" : "x$_lcl_first_prefix"` - if test "$_lcl_second_prefix_match" != 0; then - if test "$_lcl_first_prefix" != "$_lcl_common_prefix"; then - _lcl_common_prefix="$_lcl_first_prefix" - else - _lcl_second_prefix_match=0 - fi - fi -done -_lcl_first_suffix=`expr "x$_lcl_from" : "x$_lcl_common_prefix/*\(.*\)"` -_lcl_first_rel='' -_lcl_tmp='xxx' -while test "$_lcl_tmp" != ''; do - _lcl_tmp=`expr "x$_lcl_first_suffix" : "x[^/]*/*\(.*\)"` - if test "$_lcl_first_suffix" != ''; then - _lcl_first_suffix="$_lcl_tmp" - _lcl_first_rel="../$_lcl_first_rel" - fi -done -_lcl_second_suffix=`expr "x$_lcl_to" : "x$_lcl_common_prefix/*\(.*\)"` -_lcl_result_tmp="$_lcl_first_rel$_lcl_second_suffix" - case ":$_lcl_result_tmp:" in - ::) _lcl_result_tmp='.' ;; - :*[\\/]:) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case "$_lcl_notation" in - - *\\*) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - eval $_lcl_result_var='$_lcl_result_tmp' -done -case ":$bin2data_dir:" in - ::) bin2data_dir='.' ;; - :*[\\/]:) bin2data_dir=`echo "$bin2data_dir" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $sdccconf_h_dir_separator in - - *\\*) bin2data_dir=`echo "$bin2data_dir" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) bin2data_dir=`echo "$bin2data_dir" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - -cat >>confdefs.h <<_ACEOF -@%:@define BIN2DATA_DIR DIR_SEPARATOR_STRING "${bin2data_dir}" -_ACEOF - - -for _lcl_i in expanded_prefix:expanded_bindir:prefix2bin_dir; do - _lcl_from=\$`echo "$_lcl_i" | sed 's,:.*$,,'` - _lcl_to=\$`echo "$_lcl_i" | sed 's,^[^:]*:,,' | sed 's,:[^:]*$,,'` - _lcl_result_var=`echo "$_lcl_i" | sed 's,^.*:,,'` - _lcl_receval="$_lcl_from" -_lcl_from=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" - _lcl_receval_old='' - while test "$_lcl_receval_old" != "$_lcl_receval"; do - _lcl_receval_old="$_lcl_receval" - eval _lcl_receval="\"$_lcl_receval\"" - done - echo "$_lcl_receval")` - _lcl_receval="$_lcl_to" -_lcl_to=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" - _lcl_receval_old='' - while test "$_lcl_receval_old" != "$_lcl_receval"; do - _lcl_receval_old="$_lcl_receval" - eval _lcl_receval="\"$_lcl_receval\"" - done - echo "$_lcl_receval")` - _lcl_notation="$_lcl_from$_lcl_to" - case ":$_lcl_from:" in - ::) _lcl_from='.' ;; - :*[\\/]:) _lcl_from=`echo "$_lcl_from" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case '/' in - - *\\*) _lcl_from=`echo "$_lcl_from" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) _lcl_from=`echo "$_lcl_from" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - case ":$_lcl_to:" in - ::) _lcl_to='.' ;; - :*[\\/]:) _lcl_to=`echo "$_lcl_to" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case '/' in - - *\\*) _lcl_to=`echo "$_lcl_to" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) _lcl_to=`echo "$_lcl_to" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - _lcl_common_prefix='' -_lcl_second_prefix_match='' -while test "$_lcl_second_prefix_match" != 0; do - _lcl_first_prefix=`expr "x$_lcl_from" : "x\($_lcl_common_prefix/*[^/]*\)"` - _lcl_second_prefix_match=`expr "x$_lcl_to" : "x$_lcl_first_prefix"` - if test "$_lcl_second_prefix_match" != 0; then - if test "$_lcl_first_prefix" != "$_lcl_common_prefix"; then - _lcl_common_prefix="$_lcl_first_prefix" - else - _lcl_second_prefix_match=0 - fi - fi -done -_lcl_first_suffix=`expr "x$_lcl_from" : "x$_lcl_common_prefix/*\(.*\)"` -_lcl_first_rel='' -_lcl_tmp='xxx' -while test "$_lcl_tmp" != ''; do - _lcl_tmp=`expr "x$_lcl_first_suffix" : "x[^/]*/*\(.*\)"` - if test "$_lcl_first_suffix" != ''; then - _lcl_first_suffix="$_lcl_tmp" - _lcl_first_rel="../$_lcl_first_rel" - fi -done -_lcl_second_suffix=`expr "x$_lcl_to" : "x$_lcl_common_prefix/*\(.*\)"` -_lcl_result_tmp="$_lcl_first_rel$_lcl_second_suffix" - case ":$_lcl_result_tmp:" in - ::) _lcl_result_tmp='.' ;; - :*[\\/]:) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case "$_lcl_notation" in - - *\\*) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - eval $_lcl_result_var='$_lcl_result_tmp' -done -case ":$prefix2bin_dir:" in - ::) prefix2bin_dir='.' ;; - :*[\\/]:) prefix2bin_dir=`echo "$prefix2bin_dir" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $sdccconf_h_dir_separator in - - *\\*) prefix2bin_dir=`echo "$prefix2bin_dir" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) prefix2bin_dir=`echo "$prefix2bin_dir" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - -cat >>confdefs.h <<_ACEOF -@%:@define PREFIX2BIN_DIR DIR_SEPARATOR_STRING "${prefix2bin_dir}" -_ACEOF - - -for _lcl_i in expanded_prefix:expanded_datadir:prefix2data_dir; do - _lcl_from=\$`echo "$_lcl_i" | sed 's,:.*$,,'` - _lcl_to=\$`echo "$_lcl_i" | sed 's,^[^:]*:,,' | sed 's,:[^:]*$,,'` - _lcl_result_var=`echo "$_lcl_i" | sed 's,^.*:,,'` - _lcl_receval="$_lcl_from" -_lcl_from=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" - _lcl_receval_old='' - while test "$_lcl_receval_old" != "$_lcl_receval"; do - _lcl_receval_old="$_lcl_receval" - eval _lcl_receval="\"$_lcl_receval\"" - done - echo "$_lcl_receval")` - _lcl_receval="$_lcl_to" -_lcl_to=`(test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" - _lcl_receval_old='' - while test "$_lcl_receval_old" != "$_lcl_receval"; do - _lcl_receval_old="$_lcl_receval" - eval _lcl_receval="\"$_lcl_receval\"" - done - echo "$_lcl_receval")` - _lcl_notation="$_lcl_from$_lcl_to" - case ":$_lcl_from:" in - ::) _lcl_from='.' ;; - :*[\\/]:) _lcl_from=`echo "$_lcl_from" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case '/' in - - *\\*) _lcl_from=`echo "$_lcl_from" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) _lcl_from=`echo "$_lcl_from" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - case ":$_lcl_to:" in - ::) _lcl_to='.' ;; - :*[\\/]:) _lcl_to=`echo "$_lcl_to" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case '/' in - - *\\*) _lcl_to=`echo "$_lcl_to" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) _lcl_to=`echo "$_lcl_to" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - _lcl_common_prefix='' -_lcl_second_prefix_match='' -while test "$_lcl_second_prefix_match" != 0; do - _lcl_first_prefix=`expr "x$_lcl_from" : "x\($_lcl_common_prefix/*[^/]*\)"` - _lcl_second_prefix_match=`expr "x$_lcl_to" : "x$_lcl_first_prefix"` - if test "$_lcl_second_prefix_match" != 0; then - if test "$_lcl_first_prefix" != "$_lcl_common_prefix"; then - _lcl_common_prefix="$_lcl_first_prefix" - else - _lcl_second_prefix_match=0 - fi - fi -done -_lcl_first_suffix=`expr "x$_lcl_from" : "x$_lcl_common_prefix/*\(.*\)"` -_lcl_first_rel='' -_lcl_tmp='xxx' -while test "$_lcl_tmp" != ''; do - _lcl_tmp=`expr "x$_lcl_first_suffix" : "x[^/]*/*\(.*\)"` - if test "$_lcl_first_suffix" != ''; then - _lcl_first_suffix="$_lcl_tmp" - _lcl_first_rel="../$_lcl_first_rel" - fi -done -_lcl_second_suffix=`expr "x$_lcl_to" : "x$_lcl_common_prefix/*\(.*\)"` -_lcl_result_tmp="$_lcl_first_rel$_lcl_second_suffix" - case ":$_lcl_result_tmp:" in - ::) _lcl_result_tmp='.' ;; - :*[\\/]:) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case "$_lcl_notation" in - - *\\*) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) _lcl_result_tmp=`echo "$_lcl_result_tmp" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac - eval $_lcl_result_var='$_lcl_result_tmp' -done -case ":$prefix2data_dir:" in - ::) prefix2data_dir='.' ;; - :*[\\/]:) prefix2data_dir=`echo "$prefix2data_dir" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $sdccconf_h_dir_separator in - - *\\*) prefix2data_dir=`echo "$prefix2data_dir" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) prefix2data_dir=`echo "$prefix2data_dir" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -if test "${prefix2data_dir}" = "."; then - # small optimization for Mingw32; otherwise Borut will complain ;-) - -cat >>confdefs.h <<_ACEOF -@%:@define PREFIX2DATA_DIR "" -_ACEOF - -else - -cat >>confdefs.h <<_ACEOF -@%:@define PREFIX2DATA_DIR DIR_SEPARATOR_STRING "${prefix2data_dir}" -_ACEOF - -fi - -# standard libs - -cat >>confdefs.h <<_ACEOF -@%:@define STD_LIB "libsdcc" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define STD_INT_LIB "libint" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define STD_LONG_LIB "liblong" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define STD_FP_LIB "libfloat" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define STD_DS390_LIB "libds390" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -@%:@define STD_DS400_LIB "libds400" -_ACEOF - - -# SDCC runtime environment variables -sdcc_dir_name="SDCC_HOME" - -cat >>confdefs.h <<_ACEOF -@%:@define SDCC_DIR_NAME "${sdcc_dir_name}" -_ACEOF - - -sdcc_include_name="SDCC_INCLUDE" - -cat >>confdefs.h <<_ACEOF -@%:@define SDCC_INCLUDE_NAME "${sdcc_include_name}" -_ACEOF - - -sdcc_lib_name="SDCC_LIB" - -cat >>confdefs.h <<_ACEOF -@%:@define SDCC_LIB_NAME "${sdcc_lib_name}" -_ACEOF - - -# add include guard and custom stuff to sdccconf.h - - - -# Port selection helper -# =========================================================================== -# macro AC_DO_ENABLER() -# $1 used to access enable_$1, e.g. enable_doc -# $2 OPT_DISABLE_$2, normally uppercase of $1, e.g. DOC -# $3 help string - - -# macro AC_DO_DISABLER() -# $1 used to access disable_$1, e.g. ucsim -# $2 OPT_DISABLE_$2, normally uppercase of $1, e.g. UCSIM -# $3 help string - - -# macro AC_DO_PORT($1, $2, $3, $4) -# $1 used to access enable_$2_port, e.g. gbz80 -# $2 port name in ports.all and ports.build, e.g. z80 -# $3 OPT_DISABLE_$3, normally uppercase of $2, e.g. GBZ80 -# $4 help string - - -# macro AC_DO_PORT_ENABLER($1, $2, $3, $4) -# $1 used to access enable_$2_port, e.g. gbz80 -# $2 port name in ports.all and ports.build, e.g. z80 -# $3 OPT_DISABLE_$3, normally uppercase of $2, e.g. GBZ80 -# $4 help string - - -# Now handle the port selection -# =========================================================================== -rm -f ports.all ports.build - -# Supported targets - - @%:@ Check whether --enable-mcs51-port was given. -if test "${enable_mcs51_port+set}" = set; then : - enableval=$enable_mcs51_port; -fi - - - if test "$enable_mcs51_port" = "no"; then - OPT_DISABLE_MCS51=1 - else - enable_mcs51_port="yes" - OPT_DISABLE_MCS51=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_MCS51 $OPT_DISABLE_MCS51 -_ACEOF - - - - echo mcs51 >>ports.all - if test $OPT_DISABLE_MCS51 = 0; then - echo mcs51 >>ports.build - fi - - - @%:@ Check whether --enable-z80-port was given. -if test "${enable_z80_port+set}" = set; then : - enableval=$enable_z80_port; -fi - - - if test "$enable_z80_port" = "no"; then - OPT_DISABLE_Z80=1 - else - enable_z80_port="yes" - OPT_DISABLE_Z80=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_Z80 $OPT_DISABLE_Z80 -_ACEOF - - - - echo z80 >>ports.all - if test $OPT_DISABLE_Z80 = 0; then - echo z80 >>ports.build - fi - - - @%:@ Check whether --enable-z180-port was given. -if test "${enable_z180_port+set}" = set; then : - enableval=$enable_z180_port; -fi - - - if test "$enable_z180_port" = "no"; then - OPT_DISABLE_Z180=1 - else - enable_z180_port="yes" - OPT_DISABLE_Z180=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_Z180 $OPT_DISABLE_Z180 -_ACEOF - - - - echo z80 >>ports.all - if test $OPT_DISABLE_Z180 = 0; then - echo z80 >>ports.build - fi - - - @%:@ Check whether --enable-r2k-port was given. -if test "${enable_r2k_port+set}" = set; then : - enableval=$enable_r2k_port; -fi - - - if test "$enable_r2k_port" = "no"; then - OPT_DISABLE_R2K=1 - else - enable_r2k_port="yes" - OPT_DISABLE_R2K=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_R2K $OPT_DISABLE_R2K -_ACEOF - - - - echo z80 >>ports.all - if test $OPT_DISABLE_R2K = 0; then - echo z80 >>ports.build - fi - - - @%:@ Check whether --enable-r3ka-port was given. -if test "${enable_r3ka_port+set}" = set; then : - enableval=$enable_r3ka_port; -fi - - - if test "$enable_r3ka_port" = "no"; then - OPT_DISABLE_R3KA=1 - else - enable_r3ka_port="yes" - OPT_DISABLE_R3KA=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_R3KA $OPT_DISABLE_R3KA -_ACEOF - - - - echo z80 >>ports.all - if test $OPT_DISABLE_R3KA = 0; then - echo z80 >>ports.build - fi - - - @%:@ Check whether --enable-gbz80-port was given. -if test "${enable_gbz80_port+set}" = set; then : - enableval=$enable_gbz80_port; -fi - - - if test "$enable_gbz80_port" = "no"; then - OPT_DISABLE_GBZ80=1 - else - enable_gbz80_port="yes" - OPT_DISABLE_GBZ80=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_GBZ80 $OPT_DISABLE_GBZ80 -_ACEOF - - - - echo z80 >>ports.all - if test $OPT_DISABLE_GBZ80 = 0; then - echo z80 >>ports.build - fi - - - @%:@ Check whether --enable-tlcs90-port was given. -if test "${enable_tlcs90_port+set}" = set; then : - enableval=$enable_tlcs90_port; -fi - - - if test "$enable_tlcs90_port" = "no"; then - OPT_DISABLE_TLCS90=1 - else - enable_tlcs90_port="yes" - OPT_DISABLE_TLCS90=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_TLCS90 $OPT_DISABLE_TLCS90 -_ACEOF - - - - echo z80 >>ports.all - if test $OPT_DISABLE_TLCS90 = 0; then - echo z80 >>ports.build - fi - - - @%:@ Check whether --enable-ez80_z80-port was given. -if test "${enable_ez80_z80_port+set}" = set; then : - enableval=$enable_ez80_z80_port; -fi - - - if test "$enable_ez80_z80_port" = "no"; then - OPT_DISABLE_EZ80_Z80=1 - else - enable_ez80_z80_port="yes" - OPT_DISABLE_EZ80_Z80=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_EZ80_Z80 $OPT_DISABLE_EZ80_Z80 -_ACEOF - - - - echo z80 >>ports.all - if test $OPT_DISABLE_EZ80_Z80 = 0; then - echo z80 >>ports.build - fi - - - @%:@ Check whether --enable-ds390-port was given. -if test "${enable_ds390_port+set}" = set; then : - enableval=$enable_ds390_port; -fi - - - if test "$enable_ds390_port" = "no"; then - OPT_DISABLE_DS390=1 - else - enable_ds390_port="yes" - OPT_DISABLE_DS390=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_DS390 $OPT_DISABLE_DS390 -_ACEOF - - - - echo ds390 >>ports.all - if test $OPT_DISABLE_DS390 = 0; then - echo ds390 >>ports.build - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_TININative $OPT_DISABLE_DS390 -_ACEOF - - - @%:@ Check whether --enable-ds400-port was given. -if test "${enable_ds400_port+set}" = set; then : - enableval=$enable_ds400_port; -fi - - - if test "$enable_ds400_port" = "no"; then - OPT_DISABLE_DS400=1 - else - enable_ds400_port="yes" - OPT_DISABLE_DS400=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_DS400 $OPT_DISABLE_DS400 -_ACEOF - - - - echo ds390 >>ports.all - if test $OPT_DISABLE_DS400 = 0; then - echo ds390 >>ports.build - fi - - - @%:@ Check whether --enable-pic14-port was given. -if test "${enable_pic14_port+set}" = set; then : - enableval=$enable_pic14_port; -fi - - - if test "$enable_pic14_port" = "no"; then - OPT_DISABLE_PIC14=1 - else - enable_pic14_port="yes" - OPT_DISABLE_PIC14=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_PIC14 $OPT_DISABLE_PIC14 -_ACEOF - - - - echo pic14 >>ports.all - if test $OPT_DISABLE_PIC14 = 0; then - echo pic14 >>ports.build - fi - - - @%:@ Check whether --enable-pic16-port was given. -if test "${enable_pic16_port+set}" = set; then : - enableval=$enable_pic16_port; -fi - - - if test "$enable_pic16_port" = "no"; then - OPT_DISABLE_PIC16=1 - else - enable_pic16_port="yes" - OPT_DISABLE_PIC16=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_PIC16 $OPT_DISABLE_PIC16 -_ACEOF - - - - echo pic16 >>ports.all - if test $OPT_DISABLE_PIC16 = 0; then - echo pic16 >>ports.build - fi - - - @%:@ Check whether --enable-hc08-port was given. -if test "${enable_hc08_port+set}" = set; then : - enableval=$enable_hc08_port; -fi - - - if test "$enable_hc08_port" = "no"; then - OPT_DISABLE_HC08=1 - else - enable_hc08_port="yes" - OPT_DISABLE_HC08=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_HC08 $OPT_DISABLE_HC08 -_ACEOF - - - - echo hc08 >>ports.all - if test $OPT_DISABLE_HC08 = 0; then - echo hc08 >>ports.build - fi - - - @%:@ Check whether --enable-s08-port was given. -if test "${enable_s08_port+set}" = set; then : - enableval=$enable_s08_port; -fi - - - if test "$enable_s08_port" = "no"; then - OPT_DISABLE_S08=1 - else - enable_s08_port="yes" - OPT_DISABLE_S08=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_S08 $OPT_DISABLE_S08 -_ACEOF - - - - echo hc08 >>ports.all - if test $OPT_DISABLE_S08 = 0; then - echo hc08 >>ports.build - fi - - - @%:@ Check whether --enable-stm8-port was given. -if test "${enable_stm8_port+set}" = set; then : - enableval=$enable_stm8_port; -fi - - - if test "$enable_stm8_port" = "no"; then - OPT_DISABLE_STM8=1 - else - enable_stm8_port="yes" - OPT_DISABLE_STM8=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_STM8 $OPT_DISABLE_STM8 -_ACEOF - - - - echo stm8 >>ports.all - if test $OPT_DISABLE_STM8 = 0; then - echo stm8 >>ports.build - fi - - - @%:@ Check whether --enable-pdk13-port was given. -if test "${enable_pdk13_port+set}" = set; then : - enableval=$enable_pdk13_port; -fi - - - if test "$enable_pdk13_port" = "no"; then - OPT_DISABLE_PDK13=1 - else - enable_pdk13_port="yes" - OPT_DISABLE_PDK13=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_PDK13 $OPT_DISABLE_PDK13 -_ACEOF - - - - echo pdk >>ports.all - if test $OPT_DISABLE_PDK13 = 0; then - echo pdk >>ports.build - fi - - - @%:@ Check whether --enable-pdk14-port was given. -if test "${enable_pdk14_port+set}" = set; then : - enableval=$enable_pdk14_port; -fi - - - if test "$enable_pdk14_port" = "no"; then - OPT_DISABLE_PDK14=1 - else - enable_pdk14_port="yes" - OPT_DISABLE_PDK14=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_PDK14 $OPT_DISABLE_PDK14 -_ACEOF - - - - echo pdk >>ports.all - if test $OPT_DISABLE_PDK14 = 0; then - echo pdk >>ports.build - fi - - - @%:@ Check whether --enable-pdk15-port was given. -if test "${enable_pdk15_port+set}" = set; then : - enableval=$enable_pdk15_port; -fi - - - if test "$enable_pdk15_port" = "no"; then - OPT_DISABLE_PDK15=1 - else - enable_pdk15_port="yes" - OPT_DISABLE_PDK15=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_PDK15 $OPT_DISABLE_PDK15 -_ACEOF - - - - echo pdk >>ports.all - if test $OPT_DISABLE_PDK15 = 0; then - echo pdk >>ports.build - fi - - - @%:@ Check whether --enable-pdk16-port was given. -if test "${enable_pdk16_port+set}" = set; then : - enableval=$enable_pdk16_port; -fi - - - if test "$enable_pdk16_port" = "yes"; then - OPT_DISABLE_PDK16=0 - else - enable_pdk16_port="no" - OPT_DISABLE_PDK16=1 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_PDK16 $OPT_DISABLE_PDK16 -_ACEOF - - - - echo pdk >>ports.all - if test $OPT_DISABLE_PDK16 = 0; then - echo pdk >>ports.build - fi - - -# Unsupported targets -####AC_DO_PORT_ENABLER(avr, avr, AVR, [Includes the AVR port (disabled by default)]) -OPT_DISABLE_AVR=1 - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_AVR ${OPT_DISABLE_AVR} -_ACEOF - - - - - @%:@ Check whether --enable-ucsim was given. -if test "${enable_ucsim+set}" = set; then : - enableval=$enable_ucsim; -fi - - - arg1=`echo ucsim | sed s/-/_/` - - if test "`eval echo \\$enable_$arg1`" = "no"; then - OPT_DISABLE_UCSIM=1 - else - OPT_DISABLE_UCSIM=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_UCSIM $OPT_DISABLE_UCSIM -_ACEOF - - - - - @%:@ Check whether --enable-device-lib was given. -if test "${enable_device_lib+set}" = set; then : - enableval=$enable_device_lib; -fi - - - arg1=`echo device-lib | sed s/-/_/` - - if test "`eval echo \\$enable_$arg1`" = "no"; then - OPT_DISABLE_DEVICE_LIB=1 - else - OPT_DISABLE_DEVICE_LIB=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_DEVICE_LIB $OPT_DISABLE_DEVICE_LIB -_ACEOF - - - - - @%:@ Check whether --enable-packihx was given. -if test "${enable_packihx+set}" = set; then : - enableval=$enable_packihx; -fi - - - arg1=`echo packihx | sed s/-/_/` - - if test "`eval echo \\$enable_$arg1`" = "no"; then - OPT_DISABLE_PACKIHX=1 - else - OPT_DISABLE_PACKIHX=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_PACKIHX $OPT_DISABLE_PACKIHX -_ACEOF - - - - - @%:@ Check whether --enable-sdcpp was given. -if test "${enable_sdcpp+set}" = set; then : - enableval=$enable_sdcpp; -fi - - - arg1=`echo sdcpp | sed s/-/_/` - - if test "`eval echo \\$enable_$arg1`" = "no"; then - OPT_DISABLE_SDCPP=1 - else - OPT_DISABLE_SDCPP=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_SDCPP $OPT_DISABLE_SDCPP -_ACEOF - - - - - @%:@ Check whether --enable-sdcdb was given. -if test "${enable_sdcdb+set}" = set; then : - enableval=$enable_sdcdb; -fi - - - arg1=`echo sdcdb | sed s/-/_/` - - if test "`eval echo \\$enable_$arg1`" = "no"; then - OPT_DISABLE_SDCDB=1 - else - OPT_DISABLE_SDCDB=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_SDCDB $OPT_DISABLE_SDCDB -_ACEOF - - - - - @%:@ Check whether --enable-sdbinutils was given. -if test "${enable_sdbinutils+set}" = set; then : - enableval=$enable_sdbinutils; -fi - - - arg1=`echo sdbinutils | sed s/-/_/` - - if test "`eval echo \\$enable_$arg1`" = "no"; then - OPT_DISABLE_SDBINUTILS=1 - else - OPT_DISABLE_SDBINUTILS=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_SDBINUTILS $OPT_DISABLE_SDBINUTILS -_ACEOF - - - - - @%:@ Check whether --enable-non-free was given. -if test "${enable_non_free+set}" = set; then : - enableval=$enable_non_free; -fi - - - arg1=`echo non-free | sed s/-/_/` - - if test "`eval echo \\$enable_$arg1`" = "no"; then - OPT_DISABLE_NON_FREE=1 - else - OPT_DISABLE_NON_FREE=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_DISABLE_NON_FREE $OPT_DISABLE_NON_FREE -_ACEOF - - - - - - @%:@ Check whether --enable-doc was given. -if test "${enable_doc+set}" = set; then : - enableval=$enable_doc; -fi - - - if test "$enable_doc" = "yes"; then - OPT_ENABLE_DOC=1 - else - OPT_ENABLE_DOC=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_ENABLE_DOC $OPT_ENABLE_DOC -_ACEOF - - - -# Extract the first word of "lyx", so it can be a program name with args. -set dummy lyx; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_LYX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$LYX"; then - ac_cv_prog_LYX="$LYX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_LYX="lyx" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_LYX" && ac_cv_prog_LYX=":" -fi -fi -LYX=$ac_cv_prog_LYX -if test -n "$LYX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LYX" >&5 -$as_echo "$LYX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "latex2html", so it can be a program name with args. -set dummy latex2html; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_LATEX2HTML+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$LATEX2HTML"; then - ac_cv_prog_LATEX2HTML="$LATEX2HTML" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_LATEX2HTML="latex2html" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_LATEX2HTML" && ac_cv_prog_LATEX2HTML=":" -fi -fi -LATEX2HTML=$ac_cv_prog_LATEX2HTML -if test -n "$LATEX2HTML"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LATEX2HTML" >&5 -$as_echo "$LATEX2HTML" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "latex", so it can be a program name with args. -set dummy latex; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_LATEX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$LATEX"; then - ac_cv_prog_LATEX="$LATEX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_LATEX="latex" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_LATEX" && ac_cv_prog_LATEX=":" -fi -fi -LATEX=$ac_cv_prog_LATEX -if test -n "$LATEX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LATEX" >&5 -$as_echo "$LATEX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "dvipdfm", so it can be a program name with args. -set dummy dvipdfm; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_DVIPDFM+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$DVIPDFM"; then - ac_cv_prog_DVIPDFM="$DVIPDFM" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_DVIPDFM="dvipdfm" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_DVIPDFM" && ac_cv_prog_DVIPDFM=":" -fi -fi -DVIPDFM=$ac_cv_prog_DVIPDFM -if test -n "$DVIPDFM"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DVIPDFM" >&5 -$as_echo "$DVIPDFM" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "pdflatex", so it can be a program name with args. -set dummy pdflatex; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_PDFLATEX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$PDFLATEX"; then - ac_cv_prog_PDFLATEX="$PDFLATEX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_PDFLATEX="pdflatex" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_PDFLATEX" && ac_cv_prog_PDFLATEX=":" -fi -fi -PDFLATEX=$ac_cv_prog_PDFLATEX -if test -n "$PDFLATEX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PDFLATEX" >&5 -$as_echo "$PDFLATEX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "makeindex", so it can be a program name with args. -set dummy makeindex; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_MAKEINDEX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$MAKEINDEX"; then - ac_cv_prog_MAKEINDEX="$MAKEINDEX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_MAKEINDEX="makeindex" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_MAKEINDEX" && ac_cv_prog_MAKEINDEX=":" -fi -fi -MAKEINDEX=$ac_cv_prog_MAKEINDEX -if test -n "$MAKEINDEX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAKEINDEX" >&5 -$as_echo "$MAKEINDEX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - -if test $OPT_ENABLE_DOC = 1; then - if test "$LYX" = ":"; then - as_fn_error $? "Cannot find required program lyx." "$LINENO" 5 - fi - - if test "$LATEX2HTML" = ":"; then - as_fn_error $? "Cannot find required program latex2html." "$LINENO" 5 - fi - - if test "$LATEX" = ":"; then - as_fn_error $? "Cannot find required program latex." "$LINENO" 5 - fi - - if test "$DVIPDFM" = ":"; then - as_fn_error $? "Cannot find required program dvipdfm." "$LINENO" 5 - fi - - if test "$MAKEINDEX" = ":"; then - as_fn_error $? "Cannot find required program makeindex." "$LINENO" 5 - fi - -fi - - - @%:@ Check whether --enable-libgc was given. -if test "${enable_libgc+set}" = set; then : - enableval=$enable_libgc; -fi - - - if test "$enable_libgc" = "yes"; then - OPT_ENABLE_LIBGC=1 - else - OPT_ENABLE_LIBGC=0 - fi - - -cat >>confdefs.h <<_ACEOF -@%:@define OPT_ENABLE_LIBGC $OPT_ENABLE_LIBGC -_ACEOF - - - -if test $OPT_ENABLE_LIBGC = 1; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GC_malloc in -lgc" >&5 -$as_echo_n "checking for GC_malloc in -lgc... " >&6; } -if ${ac_cv_lib_gc_GC_malloc+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lgc $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* 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 GC_malloc (); -int -main () -{ -return GC_malloc (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_gc_GC_malloc=yes -else - ac_cv_lib_gc_GC_malloc=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gc_GC_malloc" >&5 -$as_echo "$ac_cv_lib_gc_GC_malloc" >&6; } -if test "x$ac_cv_lib_gc_GC_malloc" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBGC 1 -_ACEOF - - LIBS="-lgc $LIBS" - -fi - - if test $ac_cv_lib_gc_GC_malloc = no; then - as_fn_error $? "Cannot find library libgc with Bohem memory allocator." "$LINENO" 5 - fi -fi - -#remove duplicates -uniq ports.all ports -mv ports ports.all -uniq ports.build ports -mv ports ports.build - -# Generating output files -# =========================================================================== -test $OPT_DISABLE_SDCPP = 0 && - -subdirs="$subdirs support/cpp" - -test $OPT_DISABLE_PACKIHX = 0 && subdirs="$subdirs support/packihx" - -test $OPT_DISABLE_UCSIM = 0 && subdirs="$subdirs sim/ucsim" - -test $OPT_DISABLE_SDCDB = 0 && subdirs="$subdirs debugger/mcs51" - -test $OPT_DISABLE_SDBINUTILS = 0 && subdirs="$subdirs support/sdbinutils" - -ac_config_files="$ac_config_files doc/Makefile" - - -####test $OPT_DISABLE_AVR = 0 && AC_CONFIG_FILES([src/avr/Makefile]) - -if test $OPT_DISABLE_DS390 = 0 || test $OPT_DISABLE_DS400; then - ac_config_files="$ac_config_files src/ds390/Makefile sdas/as8xcxxx/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && ac_config_files="$ac_config_files device/lib/ds390/Makefile device/lib/ds400/Makefile" - -fi - -if test $OPT_DISABLE_HC08 = 0 || test $OPT_DISABLE_S08 = 0; then - ac_config_files="$ac_config_files src/hc08/Makefile sdas/as6808/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && ac_config_files="$ac_config_files device/lib/hc08/Makefile device/lib/s08/Makefile" - -fi - -if test $OPT_DISABLE_MCS51 = 0; then - ac_config_files="$ac_config_files src/mcs51/Makefile sdas/as8051/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && ac_config_files="$ac_config_files device/lib/mcs51/Makefile device/lib/small/Makefile device/lib/medium/Makefile device/lib/large/Makefile device/lib/huge/Makefile" - -fi - -if test $OPT_DISABLE_PIC14 = 0; then - ac_config_files="$ac_config_files src/pic14/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && subdirs="$subdirs device/lib/pic14" - -fi -if test $OPT_DISABLE_PIC14 = 0 && test $OPT_DISABLE_NON_FREE = 0; then - test $OPT_DISABLE_DEVICE_LIB = 0 && subdirs="$subdirs device/non-free/lib/pic14" - -fi -if test $OPT_DISABLE_PIC16 = 0; then - ac_config_files="$ac_config_files src/pic16/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && subdirs="$subdirs device/lib/pic16" - -fi -if test $OPT_DISABLE_PIC16 = 0 && test $OPT_DISABLE_NON_FREE = 0; then - test $OPT_DISABLE_DEVICE_LIB = 0 && subdirs="$subdirs device/non-free/lib/pic16" - -fi - -if test $OPT_DISABLE_Z80 = 0 || test $OPT_DISABLE_Z180 = 0 || test $OPT_DISABLE_R2K = 0 || test $OPT_DISABLE_R3KA = 0 || test $OPT_DISABLE_GBZ80 = 0 || test $OPT_DISABLE_TLCS90 = 0 || test $OPT_DISABLE_EZ80_Z80 = 0; then - ac_config_files="$ac_config_files src/z80/Makefile" - -fi - -if test $OPT_DISABLE_Z80 = 0 || test $OPT_DISABLE_Z180 = 0 || test $OPT_DISABLE_EZ80_Z80 = 0; then - ac_config_files="$ac_config_files sdas/asz80/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && ac_config_files="$ac_config_files device/lib/z80/Makefile device/lib/z180/Makefile device/lib/ez80_z80/Makefile" - -fi - -if test $OPT_DISABLE_R2K = 0 || test $OPT_DISABLE_R3KA = 0; then - ac_config_files="$ac_config_files sdas/asrab/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && ac_config_files="$ac_config_files device/lib/r2k/Makefile device/lib/r3ka/Makefile" - -fi - -if test $OPT_DISABLE_TLCS90 = 0; then - ac_config_files="$ac_config_files sdas/astlcs90/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && ac_config_files="$ac_config_files device/lib/tlcs90/Makefile" - -fi - -if test $OPT_DISABLE_GBZ80 = 0; then - ac_config_files="$ac_config_files sdas/asgb/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && ac_config_files="$ac_config_files device/lib/gbz80/Makefile" - -fi - -if test $OPT_DISABLE_STM8 = 0; then - ac_config_files="$ac_config_files src/stm8/Makefile sdas/asstm8/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && ac_config_files="$ac_config_files device/lib/stm8/Makefile device/lib/stm8-large/Makefile" - -fi - -if test $OPT_DISABLE_PDK13 = 0 || test $OPT_DISABLE_PDK14 = 0 || test $OPT_DISABLE_PDK15 = 0 || test $OPT_DISABLE_PDK16 = 0; then - ac_config_files="$ac_config_files src/pdk/Makefile" - -fi - -if test $OPT_DISABLE_PDK13 = 0; then - ac_config_files="$ac_config_files sdas/aspdk13/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && ac_config_files="$ac_config_files device/lib/pdk13/Makefile" - -fi - -if test $OPT_DISABLE_PDK14 = 0; then - ac_config_files="$ac_config_files sdas/aspdk14/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && ac_config_files="$ac_config_files device/lib/pdk14/Makefile" - -fi - -if test $OPT_DISABLE_PDK15 = 0; then - ac_config_files="$ac_config_files sdas/aspdk15/Makefile" - - test $OPT_DISABLE_DEVICE_LIB = 0 && ac_config_files="$ac_config_files device/lib/pdk15/Makefile" - -fi - -if test $OPT_DISABLE_PDK16 = 0; then - ac_config_files="$ac_config_files sdas/aspdk16/Makefile" - -fi - - -test $OPT_DISABLE_DEVICE_LIB = 0 && ac_config_files="$ac_config_files device/lib/Makefile" - -test $OPT_DISABLE_DEVICE_LIB = 0 && test $OPT_DISABLE_NON_FREE = 0 && ac_config_files="$ac_config_files device/non-free/lib/Makefile" - - -ac_config_files="$ac_config_files main.mk:main_in.mk src/Makefile device/include/Makefile sdas/linksrc/Makefile support/makebin/Makefile support/regression/Makefile support/valdiag/Makefile support/scripts/Makefile support/regression/ports/host/spec.mk:support/regression/ports/host/spec.mk.in Makefile Makefile.common:Makefile.common.in" - -if test $OPT_DISABLE_NON_FREE = 0; then - ac_config_files="$ac_config_files device/non-free/include/Makefile" - -fi -cat >confcache <<\_ACEOF -# This file is a shell script that caches the results of configure -# tests run on this system so they can be shared between configure -# scripts and configure runs, see configure's option --config-cache. -# It is not useful on other systems. If it contains results you don't -# want to keep, you may remove or edit it. -# -# config.status only pays attention to the cache file if you give it -# the --recheck option to rerun configure. -# -# `ac_cv_env_foo' variables (set or unset) will be overridden when -# loading this file, other *unset* `ac_cv_foo' will be assigned the -# following values. - -_ACEOF - -# The following way of writing the cache mishandles newlines in values, -# but we know of no workaround that is simple, portable, and efficient. -# So, we kill variables containing newlines. -# Ultrix sh set writes to stderr and can't be redirected directly, -# and sets the high bit in the cache file unless we assign to the vars. -( - for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - - (set) 2>&1 | - case $as_nl`(ac_space=' '; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - # `set' does not quote correctly, so add quotes: double-quote - # substitution turns \\\\ into \\, and sed turns \\ into \. - sed -n \ - "s/'/'\\\\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" - ;; #( - *) - # `set' quotes correctly as required by POSIX, so do not add quotes. - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) | - sed ' - /^ac_cv_env_/b end - t clear - :clear - s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ - t end - s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ - :end' >>confcache -if diff "$cache_file" confcache >/dev/null 2>&1; then :; else - if test -w "$cache_file"; then - if test "x$cache_file" != "x/dev/null"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 -$as_echo "$as_me: updating cache $cache_file" >&6;} - if test ! -f "$cache_file" || test -h "$cache_file"; then - cat confcache >"$cache_file" - else - case $cache_file in #( - */* | ?:*) - mv -f confcache "$cache_file"$$ && - mv -f "$cache_file"$$ "$cache_file" ;; #( - *) - mv -f confcache "$cache_file" ;; - esac - fi - fi - else - { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 -$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} - fi -fi -rm -f confcache - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -U= -for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' - ac_i=`$as_echo "$ac_i" | sed "$ac_script"` - # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR - # will be set to the directory where LIBOBJS objects are built. - as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" - as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' -done -LIB@&t@OBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - - - -: "${CONFIG_STATUS=./config.status}" -ac_write_fail=0 -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 -$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} -as_write_fail=0 -cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 -#! $SHELL -# Generated by $as_me. -# 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-$SHELL} -export SHELL -_ASEOF -cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 -## -------------------- ## -## 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 @S|@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 @S|@? 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 @S|@as_val. Take advantage of shells that can avoid forks. The arguments -@%:@ must be portable across @S|@(()) 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 "@S|@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. ## -## ----------------------------------- ## -_ASEOF -test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# 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` -" - -_ACEOF - -case $ac_config_files in *" -"*) set x $ac_config_files; shift; ac_config_files=$*;; -esac - -case $ac_config_headers in *" -"*) set x $ac_config_headers; shift; ac_config_headers=$*;; -esac - - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# Files that config.status was made for. -config_files="$ac_config_files" -config_headers="$ac_config_headers" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=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 - --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." - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" -ac_cs_version="\\ -config.status -configured by $0, 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='$ac_pwd' -srcdir='$srcdir' -INSTALL='$INSTALL' -AWK='$AWK' -test -n "\$AWK" || AWK=awk -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# 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 - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -if \$ac_cs_recheck; then - set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion - shift - \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 - CONFIG_SHELL='$SHELL' - export CONFIG_SHELL - exec "\$@" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -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 - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "sdccconf.h") CONFIG_HEADERS="$CONFIG_HEADERS sdccconf.h:sdccconf_in.h" ;; - "sdas/linksrc/asxxxx_config.h") CONFIG_HEADERS="$CONFIG_HEADERS sdas/linksrc/asxxxx_config.h" ;; - "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; - "src/ds390/Makefile") CONFIG_FILES="$CONFIG_FILES src/ds390/Makefile" ;; - "sdas/as8xcxxx/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/as8xcxxx/Makefile" ;; - "device/lib/ds390/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/ds390/Makefile" ;; - "device/lib/ds400/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/ds400/Makefile" ;; - "src/hc08/Makefile") CONFIG_FILES="$CONFIG_FILES src/hc08/Makefile" ;; - "sdas/as6808/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/as6808/Makefile" ;; - "device/lib/hc08/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/hc08/Makefile" ;; - "device/lib/s08/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/s08/Makefile" ;; - "src/mcs51/Makefile") CONFIG_FILES="$CONFIG_FILES src/mcs51/Makefile" ;; - "sdas/as8051/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/as8051/Makefile" ;; - "device/lib/mcs51/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/mcs51/Makefile" ;; - "device/lib/small/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/small/Makefile" ;; - "device/lib/medium/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/medium/Makefile" ;; - "device/lib/large/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/large/Makefile" ;; - "device/lib/huge/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/huge/Makefile" ;; - "src/pic14/Makefile") CONFIG_FILES="$CONFIG_FILES src/pic14/Makefile" ;; - "src/pic16/Makefile") CONFIG_FILES="$CONFIG_FILES src/pic16/Makefile" ;; - "src/z80/Makefile") CONFIG_FILES="$CONFIG_FILES src/z80/Makefile" ;; - "sdas/asz80/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/asz80/Makefile" ;; - "device/lib/z80/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/z80/Makefile" ;; - "device/lib/z180/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/z180/Makefile" ;; - "device/lib/ez80_z80/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/ez80_z80/Makefile" ;; - "sdas/asrab/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/asrab/Makefile" ;; - "device/lib/r2k/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/r2k/Makefile" ;; - "device/lib/r3ka/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/r3ka/Makefile" ;; - "sdas/astlcs90/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/astlcs90/Makefile" ;; - "device/lib/tlcs90/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/tlcs90/Makefile" ;; - "sdas/asgb/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/asgb/Makefile" ;; - "device/lib/gbz80/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/gbz80/Makefile" ;; - "src/stm8/Makefile") CONFIG_FILES="$CONFIG_FILES src/stm8/Makefile" ;; - "sdas/asstm8/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/asstm8/Makefile" ;; - "device/lib/stm8/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/stm8/Makefile" ;; - "device/lib/stm8-large/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/stm8-large/Makefile" ;; - "src/pdk/Makefile") CONFIG_FILES="$CONFIG_FILES src/pdk/Makefile" ;; - "sdas/aspdk13/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/aspdk13/Makefile" ;; - "device/lib/pdk13/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/pdk13/Makefile" ;; - "sdas/aspdk14/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/aspdk14/Makefile" ;; - "device/lib/pdk14/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/pdk14/Makefile" ;; - "sdas/aspdk15/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/aspdk15/Makefile" ;; - "device/lib/pdk15/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/pdk15/Makefile" ;; - "sdas/aspdk16/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/aspdk16/Makefile" ;; - "device/lib/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/Makefile" ;; - "device/non-free/lib/Makefile") CONFIG_FILES="$CONFIG_FILES device/non-free/lib/Makefile" ;; - "main.mk") CONFIG_FILES="$CONFIG_FILES main.mk:main_in.mk" ;; - "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; - "device/include/Makefile") CONFIG_FILES="$CONFIG_FILES device/include/Makefile" ;; - "sdas/linksrc/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/linksrc/Makefile" ;; - "support/makebin/Makefile") CONFIG_FILES="$CONFIG_FILES support/makebin/Makefile" ;; - "support/regression/Makefile") CONFIG_FILES="$CONFIG_FILES support/regression/Makefile" ;; - "support/valdiag/Makefile") CONFIG_FILES="$CONFIG_FILES support/valdiag/Makefile" ;; - "support/scripts/Makefile") CONFIG_FILES="$CONFIG_FILES support/scripts/Makefile" ;; - "support/regression/ports/host/spec.mk") CONFIG_FILES="$CONFIG_FILES support/regression/ports/host/spec.mk:support/regression/ports/host/spec.mk.in" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "Makefile.common") CONFIG_FILES="$CONFIG_FILES Makefile.common:Makefile.common.in" ;; - "device/non-free/include/Makefile") CONFIG_FILES="$CONFIG_FILES device/non-free/include/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" && -_ACEOF - - -{ - echo "cat >conf$$subs.awk <<_ACEOF" && - echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && - echo "_ACEOF" -} >conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` -ac_delim='%!_!# ' -for ac_last_try in false false false false false :; do - . ./conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 - - ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` - if test $ac_delim_n = $ac_delim_num; then - break - elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done -rm -f conf$$subs.sh - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && -_ACEOF -sed -n ' -h -s/^/S["/; s/!.*/"]=/ -p -g -s/^[^!]*!// -:repl -t repl -s/'"$ac_delim"'$// -t delim -:nl -h -s/\(.\{148\}\)..*/\1/ -t more1 -s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ -p -n -b repl -:more1 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t nl -:delim -h -s/\(.\{148\}\)..*/\1/ -t more2 -s/["\\]/\\&/g; s/^/"/; s/$/"/ -p -b -:more2 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t delim -' <conf$$subs.awk | sed ' -/^[^""]/{ - N - s/\n// -} -' >>$CONFIG_STATUS || ac_write_fail=1 -rm -f conf$$subs.awk -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -_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 -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -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 -_ACEOF - -# VPATH may cause trouble with some makes, so we remove sole $(srcdir), -# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ -h -s/// -s/^/:/ -s/[ ]*$/:/ -s/:\$(srcdir):/:/g -s/:\${srcdir}:/:/g -s/:@srcdir@:/:/g -s/^:*// -s/:*$// -x -s/\(=[ ]*\).*/\1/ -G -s/\n// -s/^[^=]*=[ ]*$// -}' -fi - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -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 { -_ACEOF - -# Transform confdefs.h into an awk script `defines.awk', embedded as -# here-document in config.status, that substitutes the proper values into -# config.h.in to produce config.h. - -# Create a delimiter string that does not exist in confdefs.h, to ease -# handling of long lines. -ac_delim='%!_!# ' -for ac_last_try in false false :; do - ac_tt=`sed -n "/$ac_delim/p" confdefs.h` - if test -z "$ac_tt"; then - break - elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done - -# For the awk script, D is an array of macro values keyed by name, -# likewise P contains macro parameters if any. Preserve backslash -# newline sequences. - -ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* -sed -n ' -s/.\{148\}/&'"$ac_delim"'/g -t rset -:rset -s/^[ ]*#[ ]*define[ ][ ]*/ / -t def -d -:def -s/\\$// -t bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3"/p -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p -d -:bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3\\\\\\n"\\/p -t cont -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p -t cont -d -:cont -n -s/.\{148\}/&'"$ac_delim"'/g -t clear -:clear -s/\\$// -t bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/"/p -d -:bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p -b cont -' <confdefs.h | sed ' -s/'"$ac_delim"'/"\\\ -"/g' >>$CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - for (key in D) D_is_set[key] = 1 - FS = "" -} -/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\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 -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - 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 - # - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; - esac -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# 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;} -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - ac_datarootdir_hack=' - s&@datadir@&$datadir&g - s&@docdir@&$docdir&g - s&@infodir@&$infodir&g - s&@localedir@&$localedir&g - s&@mandir@&$mandir&g - s&\\\${datarootdir}&$datarootdir&g' ;; -esac -_ACEOF - -# Neutralize VPATH when `$srcdir' = `.'. -# Shell code in configure.ac might set extrasub. -# FIXME: do we really want to maintain this feature? -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_sed_extra="$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -: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" | $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 -_ACEOF -ac_clean_files=$ac_clean_files_save - -test $ac_write_fail = 0 || - as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || as_fn_exit 1 -fi - -# -# CONFIG_SUBDIRS section. -# -if test "$no_recursion" != yes; then - - # Remove --cache-file, --srcdir, and --disable-option-checking arguments - # so they do not pile up. - ac_sub_configure_args= - ac_prev= - eval "set x $ac_configure_args" - shift - for ac_arg - do - if test -n "$ac_prev"; then - ac_prev= - continue - fi - case $ac_arg in - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* \ - | --c=*) - ;; - --config-cache | -C) - ;; - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - ;; - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - ;; - --disable-option-checking) - ;; - *) - case $ac_arg in - *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append ac_sub_configure_args " '$ac_arg'" ;; - esac - done - - # Always prepend --prefix to ensure using the same prefix - # in subdir configurations. - ac_arg="--prefix=$prefix" - case $ac_arg in - *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - ac_sub_configure_args="'$ac_arg' $ac_sub_configure_args" - - # Pass --silent - if test "$silent" = yes; then - ac_sub_configure_args="--silent $ac_sub_configure_args" - fi - - # Always prepend --disable-option-checking to silence warnings, since - # different subdirs can have different --enable and --with options. - ac_sub_configure_args="--disable-option-checking $ac_sub_configure_args" - - ac_popdir=`pwd` - for ac_dir in : $subdirs; do test "x$ac_dir" = x: && continue - - # Do not complain, so a configure script can configure whichever - # parts of a large source tree are present. - test -d "$srcdir/$ac_dir" || continue - - ac_msg="=== configuring in $ac_dir (`pwd`/$ac_dir)" - $as_echo "$as_me:${as_lineno-$LINENO}: $ac_msg" >&5 - $as_echo "$ac_msg" >&6 - 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 - - - cd "$ac_dir" - - # Check for guested configure; otherwise get Cygnus style configure. - if test -f "$ac_srcdir/configure.gnu"; then - ac_sub_configure=$ac_srcdir/configure.gnu - elif test -f "$ac_srcdir/configure"; then - ac_sub_configure=$ac_srcdir/configure - elif test -f "$ac_srcdir/configure.in"; then - # This should be Cygnus configure. - ac_sub_configure=$ac_aux_dir/configure - else - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: no configuration information is in $ac_dir" >&5 -$as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2;} - ac_sub_configure= - fi - - # The recursion is here. - if test -n "$ac_sub_configure"; then - # Make the cache file name correct relative to the subdirectory. - case $cache_file in - [\\/]* | ?:[\\/]* ) ac_sub_cache_file=$cache_file ;; - *) # Relative name. - ac_sub_cache_file=$ac_top_build_prefix$cache_file ;; - esac - - { $as_echo "$as_me:${as_lineno-$LINENO}: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&5 -$as_echo "$as_me: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;} - # The eval makes quoting arguments work. - eval "\$SHELL \"\$ac_sub_configure\" $ac_sub_configure_args \ - --cache-file=\"\$ac_sub_cache_file\" --srcdir=\"\$ac_srcdir\"" || - as_fn_error $? "$ac_sub_configure failed for $ac_dir" "$LINENO" 5 - fi - - cd "$ac_popdir" - done -fi -if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 -$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} -fi - - -# I found no better place -mkdir -p bin - -# Prepare result message -# ====================== - -# In the C-header we need \\ as dir-separator, but in the message only \ -dirch=${sdccconf_h_dir_separator} -test ${dirch} = '\\' && dirch='\' - -# calc friendly strings - -binPath=`echo "/${prefix2bin_dir}" | sed 's,/\./,/,g'` -case ":$binPath:" in - ::) binPath='.' ;; - :*[\\/]:) binPath=`echo "$binPath" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) binPath=`echo "$binPath" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) binPath=`echo "$binPath" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -binPath=`echo "$binPath" | sed 's,\\\\\\\\,\\\\,g'` - - -incPath1=`echo "/${prefix2data_dir}/${norm_inc_dir_suffix}" | sed 's,/\./,/,g'` -case ":$incPath1:" in - ::) incPath1='.' ;; - :*[\\/]:) incPath1=`echo "$incPath1" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) incPath1=`echo "$incPath1" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) incPath1=`echo "$incPath1" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -incPath1=`echo "$incPath1" | sed 's,\\\\\\\\,\\\\,g'` - - -incPath2=`echo "/${bin2data_dir}/${norm_inc_dir_suffix}" | sed 's,/\./,/,g'` -case ":$incPath2:" in - ::) incPath2='.' ;; - :*[\\/]:) incPath2=`echo "$incPath2" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) incPath2=`echo "$incPath2" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) incPath2=`echo "$incPath2" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -incPath2=`echo "$incPath2" | sed 's,\\\\\\\\,\\\\,g'` - - -incPath3=`echo "${expanded_datadir}/${norm_inc_dir_suffix}" | sed 's,/\./,/,g'` -case ":$incPath3:" in - ::) incPath3='.' ;; - :*[\\/]:) incPath3=`echo "$incPath3" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) incPath3=`echo "$incPath3" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) incPath3=`echo "$incPath3" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -incPath3=`echo "$incPath3" | sed 's,\\\\\\\\,\\\\,g'` - - -nonFreeIncPath1=`echo "/${prefix2data_dir}/${norm_non_free_inc_dir_suffix}" | sed 's,/\./,/,g'` -case ":$nonFreeIncPath1:" in - ::) nonFreeIncPath1='.' ;; - :*[\\/]:) nonFreeIncPath1=`echo "$nonFreeIncPath1" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) nonFreeIncPath1=`echo "$nonFreeIncPath1" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) nonFreeIncPath1=`echo "$nonFreeIncPath1" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -nonFreeIncPath1=`echo "$nonFreeIncPath1" | sed 's,\\\\\\\\,\\\\,g'` - - -nonFreeIncPath2=`echo "/${bin2data_dir}/${norm_non_free_inc_dir_suffix}" | sed 's,/\./,/,g'` -case ":$nonFreeIncPath2:" in - ::) nonFreeIncPath2='.' ;; - :*[\\/]:) nonFreeIncPath2=`echo "$nonFreeIncPath2" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) nonFreeIncPath2=`echo "$nonFreeIncPath2" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) nonFreeIncPath2=`echo "$nonFreeIncPath2" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -nonFreeIncPath2=`echo "$nonFreeIncPath2" | sed 's,\\\\\\\\,\\\\,g'` - - -nonFreeIncPath3=`echo "${expanded_datadir}/${norm_non_free_inc_dir_suffix}" | sed 's,/\./,/,g'` -case ":$nonFreeIncPath3:" in - ::) nonFreeIncPath3='.' ;; - :*[\\/]:) nonFreeIncPath3=`echo "$nonFreeIncPath3" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) nonFreeIncPath3=`echo "$nonFreeIncPath3" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) nonFreeIncPath3=`echo "$nonFreeIncPath3" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -nonFreeIncPath3=`echo "$nonFreeIncPath3" | sed 's,\\\\\\\\,\\\\,g'` - - - -libPath1=`echo "/${prefix2data_dir}/${norm_lib_dir_suffix}" | sed 's,/\./,/,g'` -case ":$libPath1:" in - ::) libPath1='.' ;; - :*[\\/]:) libPath1=`echo "$libPath1" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) libPath1=`echo "$libPath1" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) libPath1=`echo "$libPath1" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -libPath1=`echo "$libPath1" | sed 's,\\\\\\\\,\\\\,g'` - - -libPath2=`echo "/${bin2data_dir}/${norm_lib_dir_suffix}" | sed 's,/\./,/,g'` -case ":$libPath2:" in - ::) libPath2='.' ;; - :*[\\/]:) libPath2=`echo "$libPath2" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) libPath2=`echo "$libPath2" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) libPath2=`echo "$libPath2" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -libPath2=`echo "$libPath2" | sed 's,\\\\\\\\,\\\\,g'` - - -libPath3=`echo "${expanded_datadir}/${norm_lib_dir_suffix}" | sed 's,/\./,/,g'` -case ":$libPath3:" in - ::) libPath3='.' ;; - :*[\\/]:) libPath3=`echo "$libPath3" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) libPath3=`echo "$libPath3" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) libPath3=`echo "$libPath3" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -libPath3=`echo "$libPath3" | sed 's,\\\\\\\\,\\\\,g'` - - -nonFreeLibPath1=`echo "/${prefix2data_dir}/${norm_non_free_lib_dir_suffix}" | sed 's,/\./,/,g'` -case ":$nonFreeLibPath1:" in - ::) nonFreeLibPath1='.' ;; - :*[\\/]:) nonFreeLibPath1=`echo "$nonFreeLibPath1" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) nonFreeLibPath1=`echo "$nonFreeLibPath1" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) nonFreeLibPath1=`echo "$nonFreeLibPath1" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -nonFreeLibPath1=`echo "$nonFreeLibPath1" | sed 's,\\\\\\\\,\\\\,g'` - - -nonFreeLibPath2=`echo "/${bin2data_dir}/${norm_non_free_lib_dir_suffix}" | sed 's,/\./,/,g'` -case ":$nonFreeLibPath2:" in - ::) nonFreeLibPath2='.' ;; - :*[\\/]:) nonFreeLibPath2=`echo "$nonFreeLibPath2" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) nonFreeLibPath2=`echo "$nonFreeLibPath2" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) nonFreeLibPath2=`echo "$nonFreeLibPath2" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -nonFreeLibPath2=`echo "$nonFreeLibPath2" | sed 's,\\\\\\\\,\\\\,g'` - - -nonFreeLibPath3=`echo "${expanded_datadir}/${norm_non_free_lib_dir_suffix}" | sed 's,/\./,/,g'` -case ":$nonFreeLibPath3:" in - ::) nonFreeLibPath3='.' ;; - :*[\\/]:) nonFreeLibPath3=`echo "$nonFreeLibPath3" | sed 's,[\\/]*$,,'` ;; - :*:) ;; -esac -case $dirch in - - *\\*) nonFreeLibPath3=`echo "$nonFreeLibPath3" | sed 's,\(.\)[\\/][\\/]*,\1\\\\\\\\,g - s,^[\\/],\\\\\\\\,'` ;; - - *) nonFreeLibPath3=`echo "$nonFreeLibPath3" | sed 's,\(.\)[\\/][\\/]*,\1/,g'` ;; -esac -nonFreeLibPath3=`echo "$nonFreeLibPath3" | sed 's,\\\\\\\\,\\\\,g'` - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: -sdcc ${VERSION} is now configured for - - Build: ${build} - Host: ${host} - Source directory: ${srcdir} - Yacc: ${YACC} - C compiler: ${CC} - CFLAGS: ${CFLAGS} - C++ compiler: ${CXX} - CXXFLAGS: ${CXXFLAGS} - CPPFLAGS: ${CPPFLAGS} - LDFLAGS: ${LDFLAGS} - MAKEDEP: ${MAKEDEP} - - ENABLED Ports: - ds390 ${enable_ds390_port} - ds400 ${enable_ds400_port} - hc08 ${enable_hc08_port} - s08 ${enable_s08_port} - mcs51 ${enable_mcs51_port} - pic14 ${enable_pic14_port} - pic16 ${enable_pic16_port} - z80 ${enable_z80_port} - z180 ${enable_z180_port} - r2k ${enable_r2k_port} - r3ka ${enable_r3ka_port} - gbz80 ${enable_gbz80_port} - tlcs90 ${enable_tlcs90_port} - ez80_z80 ${enable_ez80_z80_port} - stm8 ${enable_stm8_port} - pdk13 ${enable_pdk13_port} - pdk14 ${enable_pdk14_port} - pdk15 ${enable_pdk15_port} - pdk16 ${enable_pdk16_port} - - Disable non-free lib: ${OPT_DISABLE_NON_FREE} - Disable packihx: ${OPT_DISABLE_PACKIHX} - Disable ucsim: ${OPT_DISABLE_UCSIM} - Disable device lib: ${OPT_DISABLE_DEVICE_LIB} - Disable sdcpp: ${OPT_DISABLE_SDCPP} - Disable sdcdb: ${OPT_DISABLE_SDCDB} - Disable sdbinutil: ${OPT_DISABLE_SDBINUTILS} - Enable documentation: ${OPT_ENABLE_DOC} - Enable libgc: ${OPT_ENABLE_LIBGC} - - Install paths: - binary files: ${exec_prefix} - include/library files: ${datadir}/${inclib_dir_suffix} - include files: ${datadir}/${include_dir_suffix} - library files: ${datadir}/${lib_dir_suffix} - non-free files: ${datadir}/${non_free_inclib_dir_suffix} - non-free include files: ${datadir}/${non_free_include_dir_suffix} - non-free library files: ${datadir}/${non_free_lib_dir_suffix} - documentation: ${docdir} - - prefix: ${prefix} - datadir: ${datadir} - datarootdir: ${datarootdir} - - Search paths (incomplete, see manual for all search paths): - binary files: \$SDCC_HOME${binPath} - include files: ${incPath1} - path(argv[0])${incPath2} - ${incPath3} - ${nonFreeIncPath1} - path(argv[0])${nonFreeIncPath2} - ${nonFreeIncPath3} - library files: \$SDCC_HOME${libPath1}${dirch}<model> - path(argv[0])${libPath2}${dirch}<model> - ${libPath3}${dirch}<model> - \$SDCC_HOME${nonFreeLibPath1}${dirch}<model> - path(argv[0])${nonFreeLibPath2}${dirch}<model> - ${nonFreeLibPath3}${dirch}<model> -" >&5 -$as_echo " -sdcc ${VERSION} is now configured for - - Build: ${build} - Host: ${host} - Source directory: ${srcdir} - Yacc: ${YACC} - C compiler: ${CC} - CFLAGS: ${CFLAGS} - C++ compiler: ${CXX} - CXXFLAGS: ${CXXFLAGS} - CPPFLAGS: ${CPPFLAGS} - LDFLAGS: ${LDFLAGS} - MAKEDEP: ${MAKEDEP} - - ENABLED Ports: - ds390 ${enable_ds390_port} - ds400 ${enable_ds400_port} - hc08 ${enable_hc08_port} - s08 ${enable_s08_port} - mcs51 ${enable_mcs51_port} - pic14 ${enable_pic14_port} - pic16 ${enable_pic16_port} - z80 ${enable_z80_port} - z180 ${enable_z180_port} - r2k ${enable_r2k_port} - r3ka ${enable_r3ka_port} - gbz80 ${enable_gbz80_port} - tlcs90 ${enable_tlcs90_port} - ez80_z80 ${enable_ez80_z80_port} - stm8 ${enable_stm8_port} - pdk13 ${enable_pdk13_port} - pdk14 ${enable_pdk14_port} - pdk15 ${enable_pdk15_port} - pdk16 ${enable_pdk16_port} - - Disable non-free lib: ${OPT_DISABLE_NON_FREE} - Disable packihx: ${OPT_DISABLE_PACKIHX} - Disable ucsim: ${OPT_DISABLE_UCSIM} - Disable device lib: ${OPT_DISABLE_DEVICE_LIB} - Disable sdcpp: ${OPT_DISABLE_SDCPP} - Disable sdcdb: ${OPT_DISABLE_SDCDB} - Disable sdbinutil: ${OPT_DISABLE_SDBINUTILS} - Enable documentation: ${OPT_ENABLE_DOC} - Enable libgc: ${OPT_ENABLE_LIBGC} - - Install paths: - binary files: ${exec_prefix} - include/library files: ${datadir}/${inclib_dir_suffix} - include files: ${datadir}/${include_dir_suffix} - library files: ${datadir}/${lib_dir_suffix} - non-free files: ${datadir}/${non_free_inclib_dir_suffix} - non-free include files: ${datadir}/${non_free_include_dir_suffix} - non-free library files: ${datadir}/${non_free_lib_dir_suffix} - documentation: ${docdir} - - prefix: ${prefix} - datadir: ${datadir} - datarootdir: ${datarootdir} - - Search paths (incomplete, see manual for all search paths): - binary files: \$SDCC_HOME${binPath} - include files: ${incPath1} - path(argv[0])${incPath2} - ${incPath3} - ${nonFreeIncPath1} - path(argv[0])${nonFreeIncPath2} - ${nonFreeIncPath3} - library files: \$SDCC_HOME${libPath1}${dirch}<model> - path(argv[0])${libPath2}${dirch}<model> - ${libPath3}${dirch}<model> - \$SDCC_HOME${nonFreeLibPath1}${dirch}<model> - path(argv[0])${nonFreeLibPath2}${dirch}<model> - ${nonFreeLibPath3}${dirch}<model> -" >&6; } -# End of configure/configure.in diff --git a/autom4te.cache/requests b/autom4te.cache/requests deleted file mode 100644 index 3c95717..0000000 --- a/autom4te.cache/requests +++ /dev/null @@ -1,79 +0,0 @@ -# This file was generated by Autom4te Sun Aug 20 23:09:08 UTC 2017. -# It contains the lists of macros which have been traced. -# It can be safely removed. - -@request = ( - bless( [ - '0', - 1, - [ - '/usr/share/autoconf' - ], - [ - '/usr/share/autoconf/autoconf/autoconf.m4f', - 'aclocal.m4', - 'configure.ac' - ], - { - 'AM_PROG_LIBTOOL' => 1, - 'AC_SUBST' => 1, - 'AC_FC_PP_DEFINE' => 1, - 'AM_INIT_AUTOMAKE' => 1, - 'AC_FC_SRCEXT' => 1, - 'AC_CANONICAL_SYSTEM' => 1, - 'm4_include' => 1, - 'LT_CONFIG_LTDL_DIR' => 1, - 'sinclude' => 1, - 'AC_REQUIRE_AUX_FILE' => 1, - 'AC_CONFIG_AUX_DIR' => 1, - 'AM_MAINTAINER_MODE' => 1, - 'AM_SILENT_RULES' => 1, - 'AM_MAKEFILE_INCLUDE' => 1, - 'AH_OUTPUT' => 1, - 'AC_SUBST_TRACE' => 1, - 'm4_sinclude' => 1, - 'AC_CANONICAL_TARGET' => 1, - 'AM_CONDITIONAL' => 1, - 'AC_PROG_LIBTOOL' => 1, - 'AM_PROG_F77_C_O' => 1, - 'AC_CANONICAL_BUILD' => 1, - 'AM_PROG_CXX_C_O' => 1, - 'AM_PROG_AR' => 1, - 'm4_pattern_allow' => 1, - 'AM_NLS' => 1, - 'AC_CANONICAL_HOST' => 1, - 'AC_FC_PP_SRCEXT' => 1, - 'AM_XGETTEXT_OPTION' => 1, - '_LT_AC_TAGCONFIG' => 1, - 'include' => 1, - 'AM_PROG_FC_C_O' => 1, - 'AC_DEFINE_TRACE_LITERAL' => 1, - 'AM_POT_TOOLS' => 1, - 'AC_CONFIG_LIBOBJ_DIR' => 1, - 'AC_CONFIG_SUBDIRS' => 1, - 'AM_PROG_MOC' => 1, - '_AM_MAKEFILE_INCLUDE' => 1, - 'AC_LIBSOURCE' => 1, - '_AM_COND_IF' => 1, - 'AM_ENABLE_MULTILIB' => 1, - '_AM_COND_ENDIF' => 1, - 'AC_CONFIG_LINKS' => 1, - 'LT_INIT' => 1, - 'AC_CONFIG_FILES' => 1, - 'AC_CONFIG_HEADERS' => 1, - 'AM_PROG_CC_C_O' => 1, - 'm4_pattern_forbid' => 1, - '_AM_SUBST_NOTMAKE' => 1, - 'AC_FC_FREEFORM' => 1, - 'AM_AUTOMAKE_VERSION' => 1, - 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1, - 'LT_SUPPORTED_TAG' => 1, - 'AC_INIT' => 1, - '_m4_warn' => 1, - 'AM_PATH_GUILE' => 1, - '_AM_COND_ELSE' => 1, - 'AM_GNU_GETTEXT' => 1 - } - ], 'Autom4te::Request' ) - ); - diff --git a/autom4te.cache/traces.0 b/autom4te.cache/traces.0 deleted file mode 100644 index 0a654b4..0000000 --- a/autom4te.cache/traces.0 +++ /dev/null @@ -1,1076 +0,0 @@ -m4trace:configure.ac:4: -1- AC_INIT([.version]) -m4trace:configure.ac:4: -1- m4_pattern_forbid([^_?A[CHUM]_]) -m4trace:configure.ac:4: -1- m4_pattern_forbid([_AC_]) -m4trace:configure.ac:4: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) -m4trace:configure.ac:4: -1- m4_pattern_allow([^AS_FLAGS$]) -m4trace:configure.ac:4: -1- m4_pattern_forbid([^_?m4_]) -m4trace:configure.ac:4: -1- m4_pattern_forbid([^dnl$]) -m4trace:configure.ac:4: -1- m4_pattern_forbid([^_?AS_]) -m4trace:configure.ac:4: -1- AC_SUBST([SHELL]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([SHELL]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^SHELL$]) -m4trace:configure.ac:4: -1- AC_SUBST([PATH_SEPARATOR]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([PATH_SEPARATOR]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PATH_SEPARATOR$]) -m4trace:configure.ac:4: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([PACKAGE_NAME]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_NAME$]) -m4trace:configure.ac:4: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([PACKAGE_TARNAME]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) -m4trace:configure.ac:4: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([PACKAGE_VERSION]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_VERSION$]) -m4trace:configure.ac:4: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([PACKAGE_STRING]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_STRING$]) -m4trace:configure.ac:4: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) -m4trace:configure.ac:4: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([PACKAGE_URL]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_URL$]) -m4trace:configure.ac:4: -1- AC_SUBST([exec_prefix], [NONE]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([exec_prefix]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^exec_prefix$]) -m4trace:configure.ac:4: -1- AC_SUBST([prefix], [NONE]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([prefix]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^prefix$]) -m4trace:configure.ac:4: -1- AC_SUBST([program_transform_name], [s,x,x,]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([program_transform_name]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^program_transform_name$]) -m4trace:configure.ac:4: -1- AC_SUBST([bindir], ['${exec_prefix}/bin']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([bindir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^bindir$]) -m4trace:configure.ac:4: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([sbindir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^sbindir$]) -m4trace:configure.ac:4: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([libexecdir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^libexecdir$]) -m4trace:configure.ac:4: -1- AC_SUBST([datarootdir], ['${prefix}/share']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([datarootdir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^datarootdir$]) -m4trace:configure.ac:4: -1- AC_SUBST([datadir], ['${datarootdir}']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([datadir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^datadir$]) -m4trace:configure.ac:4: -1- AC_SUBST([sysconfdir], ['${prefix}/etc']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([sysconfdir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^sysconfdir$]) -m4trace:configure.ac:4: -1- AC_SUBST([sharedstatedir], ['${prefix}/com']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([sharedstatedir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^sharedstatedir$]) -m4trace:configure.ac:4: -1- AC_SUBST([localstatedir], ['${prefix}/var']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([localstatedir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^localstatedir$]) -m4trace:configure.ac:4: -1- AC_SUBST([runstatedir], ['${localstatedir}/run']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([runstatedir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^runstatedir$]) -m4trace:configure.ac:4: -1- AC_SUBST([includedir], ['${prefix}/include']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([includedir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^includedir$]) -m4trace:configure.ac:4: -1- AC_SUBST([oldincludedir], ['/usr/include']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([oldincludedir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^oldincludedir$]) -m4trace:configure.ac:4: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME], - ['${datarootdir}/doc/${PACKAGE_TARNAME}'], - ['${datarootdir}/doc/${PACKAGE}'])]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([docdir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^docdir$]) -m4trace:configure.ac:4: -1- AC_SUBST([infodir], ['${datarootdir}/info']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([infodir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^infodir$]) -m4trace:configure.ac:4: -1- AC_SUBST([htmldir], ['${docdir}']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([htmldir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^htmldir$]) -m4trace:configure.ac:4: -1- AC_SUBST([dvidir], ['${docdir}']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([dvidir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^dvidir$]) -m4trace:configure.ac:4: -1- AC_SUBST([pdfdir], ['${docdir}']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([pdfdir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^pdfdir$]) -m4trace:configure.ac:4: -1- AC_SUBST([psdir], ['${docdir}']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([psdir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^psdir$]) -m4trace:configure.ac:4: -1- AC_SUBST([libdir], ['${exec_prefix}/lib']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([libdir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^libdir$]) -m4trace:configure.ac:4: -1- AC_SUBST([localedir], ['${datarootdir}/locale']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([localedir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^localedir$]) -m4trace:configure.ac:4: -1- AC_SUBST([mandir], ['${datarootdir}/man']) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([mandir]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^mandir$]) -m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_NAME$]) -m4trace:configure.ac:4: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */ -@%:@undef PACKAGE_NAME]) -m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) -m4trace:configure.ac:4: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */ -@%:@undef PACKAGE_TARNAME]) -m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_VERSION$]) -m4trace:configure.ac:4: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */ -@%:@undef PACKAGE_VERSION]) -m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_STRING$]) -m4trace:configure.ac:4: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */ -@%:@undef PACKAGE_STRING]) -m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) -m4trace:configure.ac:4: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */ -@%:@undef PACKAGE_BUGREPORT]) -m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_URL$]) -m4trace:configure.ac:4: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */ -@%:@undef PACKAGE_URL]) -m4trace:configure.ac:4: -1- AC_SUBST([DEFS]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([DEFS]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^DEFS$]) -m4trace:configure.ac:4: -1- AC_SUBST([ECHO_C]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([ECHO_C]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^ECHO_C$]) -m4trace:configure.ac:4: -1- AC_SUBST([ECHO_N]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([ECHO_N]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^ECHO_N$]) -m4trace:configure.ac:4: -1- AC_SUBST([ECHO_T]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([ECHO_T]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^ECHO_T$]) -m4trace:configure.ac:4: -1- AC_SUBST([LIBS]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([LIBS]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:4: -1- AC_SUBST([build_alias]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([build_alias]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^build_alias$]) -m4trace:configure.ac:4: -1- AC_SUBST([host_alias]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([host_alias]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^host_alias$]) -m4trace:configure.ac:4: -1- AC_SUBST([target_alias]) -m4trace:configure.ac:4: -1- AC_SUBST_TRACE([target_alias]) -m4trace:configure.ac:4: -1- m4_pattern_allow([^target_alias$]) -m4trace:configure.ac:9: -1- AC_CANONICAL_HOST -m4trace:configure.ac:9: -1- AC_CANONICAL_BUILD -m4trace:configure.ac:9: -1- AC_REQUIRE_AUX_FILE([config.sub]) -m4trace:configure.ac:9: -1- AC_REQUIRE_AUX_FILE([config.guess]) -m4trace:configure.ac:9: -1- AC_SUBST([build], [$ac_cv_build]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([build]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^build$]) -m4trace:configure.ac:9: -1- AC_SUBST([build_cpu], [$[1]]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([build_cpu]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^build_cpu$]) -m4trace:configure.ac:9: -1- AC_SUBST([build_vendor], [$[2]]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([build_vendor]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^build_vendor$]) -m4trace:configure.ac:9: -1- AC_SUBST([build_os]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([build_os]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^build_os$]) -m4trace:configure.ac:9: -1- AC_SUBST([host], [$ac_cv_host]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([host]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^host$]) -m4trace:configure.ac:9: -1- AC_SUBST([host_cpu], [$[1]]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([host_cpu]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^host_cpu$]) -m4trace:configure.ac:9: -1- AC_SUBST([host_vendor], [$[2]]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([host_vendor]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^host_vendor$]) -m4trace:configure.ac:9: -1- AC_SUBST([host_os]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([host_os]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^host_os$]) -m4trace:configure.ac:11: -1- AC_CONFIG_HEADERS([sdccconf.h:sdccconf_in.h sdas/linksrc/asxxxx_config.h]) -m4trace:configure.ac:13: -1- AC_SUBST([AWK]) -m4trace:configure.ac:13: -1- AC_SUBST_TRACE([AWK]) -m4trace:configure.ac:13: -1- m4_pattern_allow([^AWK$]) -m4trace:configure.ac:30: -1- AC_SUBST([PACKAGE], [sdcc]) -m4trace:configure.ac:30: -1- AC_SUBST_TRACE([PACKAGE]) -m4trace:configure.ac:30: -1- m4_pattern_allow([^PACKAGE$]) -m4trace:configure.ac:31: -1- AC_SUBST([VERSION]) -m4trace:configure.ac:31: -1- AC_SUBST_TRACE([VERSION]) -m4trace:configure.ac:31: -1- m4_pattern_allow([^VERSION$]) -m4trace:configure.ac:32: -1- AC_SUBST([VERSIONHI]) -m4trace:configure.ac:32: -1- AC_SUBST_TRACE([VERSIONHI]) -m4trace:configure.ac:32: -1- m4_pattern_allow([^VERSIONHI$]) -m4trace:configure.ac:33: -1- AC_SUBST([VERSIONLO]) -m4trace:configure.ac:33: -1- AC_SUBST_TRACE([VERSIONLO]) -m4trace:configure.ac:33: -1- m4_pattern_allow([^VERSIONLO$]) -m4trace:configure.ac:34: -1- AC_SUBST([VERSIONP]) -m4trace:configure.ac:34: -1- AC_SUBST_TRACE([VERSIONP]) -m4trace:configure.ac:34: -1- m4_pattern_allow([^VERSIONP$]) -m4trace:configure.ac:35: -1- AC_DEFINE_TRACE_LITERAL([SDCC_VERSION_LO]) -m4trace:configure.ac:35: -1- m4_pattern_allow([^SDCC_VERSION_LO$]) -m4trace:configure.ac:35: -1- AH_OUTPUT([SDCC_VERSION_LO], [/* XXX */ -@%:@undef SDCC_VERSION_LO]) -m4trace:configure.ac:36: -1- AC_DEFINE_TRACE_LITERAL([SDCC_VERSION_HI]) -m4trace:configure.ac:36: -1- m4_pattern_allow([^SDCC_VERSION_HI$]) -m4trace:configure.ac:36: -1- AH_OUTPUT([SDCC_VERSION_HI], [/* XXX */ -@%:@undef SDCC_VERSION_HI]) -m4trace:configure.ac:37: -1- AC_DEFINE_TRACE_LITERAL([SDCC_VERSION_P]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^SDCC_VERSION_P$]) -m4trace:configure.ac:37: -1- AH_OUTPUT([SDCC_VERSION_P], [/* XXX */ -@%:@undef SDCC_VERSION_P]) -m4trace:configure.ac:38: -1- AC_DEFINE_TRACE_LITERAL([SDCC_VERSION_STR]) -m4trace:configure.ac:38: -1- m4_pattern_allow([^SDCC_VERSION_STR$]) -m4trace:configure.ac:38: -1- AH_OUTPUT([SDCC_VERSION_STR], [/* XXX */ -@%:@undef SDCC_VERSION_STR]) -m4trace:configure.ac:48: -1- AC_SUBST([CC]) -m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:48: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:48: -1- AC_SUBST([CFLAGS]) -m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CFLAGS]) -m4trace:configure.ac:48: -1- m4_pattern_allow([^CFLAGS$]) -m4trace:configure.ac:48: -1- AC_SUBST([LDFLAGS]) -m4trace:configure.ac:48: -1- AC_SUBST_TRACE([LDFLAGS]) -m4trace:configure.ac:48: -1- m4_pattern_allow([^LDFLAGS$]) -m4trace:configure.ac:48: -1- AC_SUBST([LIBS]) -m4trace:configure.ac:48: -1- AC_SUBST_TRACE([LIBS]) -m4trace:configure.ac:48: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:48: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:48: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:48: -1- AC_SUBST([CC]) -m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:48: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:48: -1- AC_SUBST([CC]) -m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:48: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:48: -1- AC_SUBST([CC]) -m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:48: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:48: -1- AC_SUBST([CC]) -m4trace:configure.ac:48: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:48: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:48: -1- AC_SUBST([ac_ct_CC]) -m4trace:configure.ac:48: -1- AC_SUBST_TRACE([ac_ct_CC]) -m4trace:configure.ac:48: -1- m4_pattern_allow([^ac_ct_CC$]) -m4trace:configure.ac:48: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext]) -m4trace:configure.ac:48: -1- AC_SUBST_TRACE([EXEEXT]) -m4trace:configure.ac:48: -1- m4_pattern_allow([^EXEEXT$]) -m4trace:configure.ac:48: -1- AC_SUBST([OBJEXT], [$ac_cv_objext]) -m4trace:configure.ac:48: -1- AC_SUBST_TRACE([OBJEXT]) -m4trace:configure.ac:48: -1- m4_pattern_allow([^OBJEXT$]) -m4trace:configure.ac:49: -1- AC_SUBST([CPP]) -m4trace:configure.ac:49: -1- AC_SUBST_TRACE([CPP]) -m4trace:configure.ac:49: -1- m4_pattern_allow([^CPP$]) -m4trace:configure.ac:49: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:49: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:49: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:49: -1- AC_SUBST([CPP]) -m4trace:configure.ac:49: -1- AC_SUBST_TRACE([CPP]) -m4trace:configure.ac:49: -1- m4_pattern_allow([^CPP$]) -m4trace:configure.ac:50: -1- AC_SUBST([CXX]) -m4trace:configure.ac:50: -1- AC_SUBST_TRACE([CXX]) -m4trace:configure.ac:50: -1- m4_pattern_allow([^CXX$]) -m4trace:configure.ac:50: -1- AC_SUBST([CXXFLAGS]) -m4trace:configure.ac:50: -1- AC_SUBST_TRACE([CXXFLAGS]) -m4trace:configure.ac:50: -1- m4_pattern_allow([^CXXFLAGS$]) -m4trace:configure.ac:50: -1- AC_SUBST([LDFLAGS]) -m4trace:configure.ac:50: -1- AC_SUBST_TRACE([LDFLAGS]) -m4trace:configure.ac:50: -1- m4_pattern_allow([^LDFLAGS$]) -m4trace:configure.ac:50: -1- AC_SUBST([LIBS]) -m4trace:configure.ac:50: -1- AC_SUBST_TRACE([LIBS]) -m4trace:configure.ac:50: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:50: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:50: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:50: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:50: -1- AC_SUBST([CXX]) -m4trace:configure.ac:50: -1- AC_SUBST_TRACE([CXX]) -m4trace:configure.ac:50: -1- m4_pattern_allow([^CXX$]) -m4trace:configure.ac:50: -1- AC_SUBST([ac_ct_CXX]) -m4trace:configure.ac:50: -1- AC_SUBST_TRACE([ac_ct_CXX]) -m4trace:configure.ac:50: -1- m4_pattern_allow([^ac_ct_CXX$]) -m4trace:configure.ac:51: -1- AC_REQUIRE_AUX_FILE([install-sh]) -m4trace:configure.ac:51: -1- AC_SUBST([INSTALL_PROGRAM]) -m4trace:configure.ac:51: -1- AC_SUBST_TRACE([INSTALL_PROGRAM]) -m4trace:configure.ac:51: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) -m4trace:configure.ac:51: -1- AC_SUBST([INSTALL_SCRIPT]) -m4trace:configure.ac:51: -1- AC_SUBST_TRACE([INSTALL_SCRIPT]) -m4trace:configure.ac:51: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) -m4trace:configure.ac:51: -1- AC_SUBST([INSTALL_DATA]) -m4trace:configure.ac:51: -1- AC_SUBST_TRACE([INSTALL_DATA]) -m4trace:configure.ac:51: -1- m4_pattern_allow([^INSTALL_DATA$]) -m4trace:configure.ac:52: -1- AC_SUBST([RANLIB]) -m4trace:configure.ac:52: -1- AC_SUBST_TRACE([RANLIB]) -m4trace:configure.ac:52: -1- m4_pattern_allow([^RANLIB$]) -m4trace:configure.ac:53: -1- AC_SUBST([AUTOCONF]) -m4trace:configure.ac:53: -1- AC_SUBST_TRACE([AUTOCONF]) -m4trace:configure.ac:53: -1- m4_pattern_allow([^AUTOCONF$]) -m4trace:configure.ac:54: -1- AC_SUBST([STRIP]) -m4trace:configure.ac:54: -1- AC_SUBST_TRACE([STRIP]) -m4trace:configure.ac:54: -1- m4_pattern_allow([^STRIP$]) -m4trace:configure.ac:55: -1- AC_SUBST([AS]) -m4trace:configure.ac:55: -1- AC_SUBST_TRACE([AS]) -m4trace:configure.ac:55: -1- m4_pattern_allow([^AS$]) -m4trace:configure.ac:56: -1- AC_SUBST([CP]) -m4trace:configure.ac:56: -1- AC_SUBST_TRACE([CP]) -m4trace:configure.ac:56: -1- m4_pattern_allow([^CP$]) -m4trace:configure.ac:57: -1- AC_SUBST([AR]) -m4trace:configure.ac:57: -1- AC_SUBST_TRACE([AR]) -m4trace:configure.ac:57: -1- m4_pattern_allow([^AR$]) -m4trace:configure.ac:58: -1- AC_SUBST([M4]) -m4trace:configure.ac:58: -1- AC_SUBST_TRACE([M4]) -m4trace:configure.ac:58: -1- m4_pattern_allow([^M4$]) -m4trace:configure.ac:62: -1- AC_SUBST([LEX]) -m4trace:configure.ac:62: -1- AC_SUBST_TRACE([LEX]) -m4trace:configure.ac:62: -1- m4_pattern_allow([^LEX$]) -m4trace:configure.ac:65: -1- AC_SUBST([YACC]) -m4trace:configure.ac:65: -1- AC_SUBST_TRACE([YACC]) -m4trace:configure.ac:65: -1- m4_pattern_allow([^YACC$]) -m4trace:configure.ac:67: -1- AC_SUBST([PYTHON]) -m4trace:configure.ac:67: -1- AC_SUBST_TRACE([PYTHON]) -m4trace:configure.ac:67: -1- m4_pattern_allow([^PYTHON$]) -m4trace:configure.ac:78: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -configure.ac:78: the top level]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_ENDIAN_H], [/* Define to 1 if you have the <endian.h> header file. */ -@%:@undef HAVE_ENDIAN_H]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_SYS_ENDIAN_H], [/* Define to 1 if you have the <sys/endian.h> header file. */ -@%:@undef HAVE_SYS_ENDIAN_H]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_MACHINE_ENDIAN_H], [/* Define to 1 if you have the <machine/endian.h> header file. */ -@%:@undef HAVE_MACHINE_ENDIAN_H]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_SYS_ISA_DEFS_H], [/* Define to 1 if you have the <sys/isa_defs.h> header file. */ -@%:@undef HAVE_SYS_ISA_DEFS_H]) -m4trace:configure.ac:80: -1- AC_SUBST([GREP]) -m4trace:configure.ac:80: -1- AC_SUBST_TRACE([GREP]) -m4trace:configure.ac:80: -1- m4_pattern_allow([^GREP$]) -m4trace:configure.ac:80: -1- AC_SUBST([EGREP]) -m4trace:configure.ac:80: -1- AC_SUBST_TRACE([EGREP]) -m4trace:configure.ac:80: -1- m4_pattern_allow([^EGREP$]) -m4trace:configure.ac:80: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS]) -m4trace:configure.ac:80: -1- m4_pattern_allow([^STDC_HEADERS$]) -m4trace:configure.ac:80: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */ -@%:@undef STDC_HEADERS]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */ -@%:@undef HAVE_SYS_TYPES_H]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */ -@%:@undef HAVE_SYS_STAT_H]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */ -@%:@undef HAVE_STDLIB_H]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */ -@%:@undef HAVE_STRING_H]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */ -@%:@undef HAVE_MEMORY_H]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */ -@%:@undef HAVE_STRINGS_H]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */ -@%:@undef HAVE_INTTYPES_H]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */ -@%:@undef HAVE_STDINT_H]) -m4trace:configure.ac:80: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */ -@%:@undef HAVE_UNISTD_H]) -m4trace:configure.ac:82: -1- AH_OUTPUT([HAVE_TREEDEC_COMBINATIONS_HPP], [/* Define to 1 if you have the <treedec/combinations.hpp> header file. */ -@%:@undef HAVE_TREEDEC_COMBINATIONS_HPP]) -m4trace:configure.ac:82: -1- AC_SUBST([CXXCPP]) -m4trace:configure.ac:82: -1- AC_SUBST_TRACE([CXXCPP]) -m4trace:configure.ac:82: -1- m4_pattern_allow([^CXXCPP$]) -m4trace:configure.ac:82: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:82: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:82: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:82: -1- AC_SUBST([CXXCPP]) -m4trace:configure.ac:82: -1- AC_SUBST_TRACE([CXXCPP]) -m4trace:configure.ac:82: -1- m4_pattern_allow([^CXXCPP$]) -m4trace:configure.ac:82: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TREEDEC_COMBINATIONS_HPP]) -m4trace:configure.ac:82: -1- m4_pattern_allow([^HAVE_TREEDEC_COMBINATIONS_HPP$]) -m4trace:configure.ac:83: -1- AH_OUTPUT([HAVE_GALA_GRAPH_H], [/* Define to 1 if you have the <gala/graph.h> header file. */ -@%:@undef HAVE_GALA_GRAPH_H]) -m4trace:configure.ac:83: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GALA_GRAPH_H]) -m4trace:configure.ac:83: -1- m4_pattern_allow([^HAVE_GALA_GRAPH_H$]) -m4trace:configure.ac:84: -1- AH_OUTPUT([HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP], [/* Define to 1 if you have the <boost/graph/adjacency_list.hpp> header file. - */ -@%:@undef HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP]) -m4trace:configure.ac:84: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP]) -m4trace:configure.ac:84: -1- m4_pattern_allow([^HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP$]) -m4trace:configure.ac:88: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:88: the top level]) -m4trace:configure.ac:91: -1- AC_SUBST([CCACHE]) -m4trace:configure.ac:91: -1- AC_SUBST_TRACE([CCACHE]) -m4trace:configure.ac:91: -1- m4_pattern_allow([^CCACHE$]) -m4trace:configure.ac:92: -1- AC_SUBST([CCACHE], []) -m4trace:configure.ac:92: -1- AC_SUBST_TRACE([CCACHE]) -m4trace:configure.ac:92: -1- m4_pattern_allow([^CCACHE$]) -m4trace:configure.ac:93: -1- AC_SUBST([CCACHE], [$with_ccache]) -m4trace:configure.ac:93: -1- AC_SUBST_TRACE([CCACHE]) -m4trace:configure.ac:93: -1- m4_pattern_allow([^CCACHE$]) -m4trace:configure.ac:99: -1- AH_OUTPUT([HAVE_STRERROR], [/* Define to 1 if you have the `strerror\' function. */ -@%:@undef HAVE_STRERROR]) -m4trace:configure.ac:99: -1- AH_OUTPUT([HAVE_MKSTEMP], [/* Define to 1 if you have the `mkstemp\' function. */ -@%:@undef HAVE_MKSTEMP]) -m4trace:configure.ac:99: -1- AH_OUTPUT([HAVE_STRNDUP], [/* Define to 1 if you have the `strndup\' function. */ -@%:@undef HAVE_STRNDUP]) -m4trace:configure.ac:99: -1- AH_OUTPUT([HAVE_SETRLIMIT], [/* Define to 1 if you have the `setrlimit\' function. */ -@%:@undef HAVE_SETRLIMIT]) -m4trace:configure.ac:99: -1- AH_OUTPUT([HAVE_BACKTRACE_SYMBOLS_FD], [/* Define to 1 if you have the `backtrace_symbols_fd\' function. */ -@%:@undef HAVE_BACKTRACE_SYMBOLS_FD]) -m4trace:configure.ac:371: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CXX11]) -m4trace:configure.ac:371: -1- m4_pattern_allow([^HAVE_CXX11$]) -m4trace:configure.ac:371: -1- AH_OUTPUT([HAVE_CXX11], [/* define if the compiler supports basic C++11 syntax */ -@%:@undef HAVE_CXX11]) -m4trace:configure.ac:371: -1- AC_SUBST([HAVE_CXX11]) -m4trace:configure.ac:371: -1- AC_SUBST_TRACE([HAVE_CXX11]) -m4trace:configure.ac:371: -1- m4_pattern_allow([^HAVE_CXX11$]) -m4trace:configure.ac:420: -1- AC_SUBST([MAKEDEP]) -m4trace:configure.ac:420: -1- AC_SUBST_TRACE([MAKEDEP]) -m4trace:configure.ac:420: -1- m4_pattern_allow([^MAKEDEP$]) -m4trace:configure.ac:421: -1- AC_SUBST([WALL_FLAG]) -m4trace:configure.ac:421: -1- AC_SUBST_TRACE([WALL_FLAG]) -m4trace:configure.ac:421: -1- m4_pattern_allow([^WALL_FLAG$]) -m4trace:configure.ac:422: -1- AC_SUBST([C99_FLAG]) -m4trace:configure.ac:422: -1- AC_SUBST_TRACE([C99_FLAG]) -m4trace:configure.ac:422: -1- m4_pattern_allow([^C99_FLAG$]) -m4trace:configure.ac:433: -1- _m4_warn([obsolete], [The macro `AC_TYPE_SIGNAL' is obsolete. -You should run autoupdate.], [../../lib/autoconf/types.m4:746: AC_TYPE_SIGNAL is expanded from... -configure.ac:433: the top level]) -m4trace:configure.ac:433: -1- AC_DEFINE_TRACE_LITERAL([RETSIGTYPE]) -m4trace:configure.ac:433: -1- m4_pattern_allow([^RETSIGTYPE$]) -m4trace:configure.ac:433: -1- AH_OUTPUT([RETSIGTYPE], [/* Define as the return type of signal handlers (`int\' or `void\'). */ -@%:@undef RETSIGTYPE]) -m4trace:configure.ac:435: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_CHAR]) -m4trace:configure.ac:435: -1- m4_pattern_allow([^SIZEOF_CHAR$]) -m4trace:configure.ac:435: -1- AH_OUTPUT([SIZEOF_CHAR], [/* The size of `char\', as computed by sizeof. */ -@%:@undef SIZEOF_CHAR]) -m4trace:configure.ac:436: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_SHORT]) -m4trace:configure.ac:436: -1- m4_pattern_allow([^SIZEOF_SHORT$]) -m4trace:configure.ac:436: -1- AH_OUTPUT([SIZEOF_SHORT], [/* The size of `short\', as computed by sizeof. */ -@%:@undef SIZEOF_SHORT]) -m4trace:configure.ac:437: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_INT]) -m4trace:configure.ac:437: -1- m4_pattern_allow([^SIZEOF_INT$]) -m4trace:configure.ac:437: -1- AH_OUTPUT([SIZEOF_INT], [/* The size of `int\', as computed by sizeof. */ -@%:@undef SIZEOF_INT]) -m4trace:configure.ac:438: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_LONG]) -m4trace:configure.ac:438: -1- m4_pattern_allow([^SIZEOF_LONG$]) -m4trace:configure.ac:438: -1- AH_OUTPUT([SIZEOF_LONG], [/* The size of `long\', as computed by sizeof. */ -@%:@undef SIZEOF_LONG]) -m4trace:configure.ac:439: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_LONG_LONG]) -m4trace:configure.ac:439: -1- m4_pattern_allow([^SIZEOF_LONG_LONG$]) -m4trace:configure.ac:439: -1- AH_OUTPUT([SIZEOF_LONG_LONG], [/* The size of `long long\', as computed by sizeof. */ -@%:@undef SIZEOF_LONG_LONG]) -m4trace:configure.ac:440: -1- AH_OUTPUT([__CHAR_UNSIGNED__], [/* Define to 1 if type `char\' is unsigned and you are not using gcc. */ -#ifndef __CHAR_UNSIGNED__ -# undef __CHAR_UNSIGNED__ -#endif]) -m4trace:configure.ac:440: -1- AC_DEFINE_TRACE_LITERAL([__CHAR_UNSIGNED__]) -m4trace:configure.ac:440: -1- m4_pattern_allow([^__CHAR_UNSIGNED__$]) -m4trace:configure.ac:485: -1- AC_DEFINE_TRACE_LITERAL([TYPE_BYTE]) -m4trace:configure.ac:485: -1- m4_pattern_allow([^TYPE_BYTE$]) -m4trace:configure.ac:485: -1- AH_OUTPUT([TYPE_BYTE], [/* XXX */ -@%:@undef TYPE_BYTE]) -m4trace:configure.ac:486: -1- AC_DEFINE_TRACE_LITERAL([TYPE_WORD]) -m4trace:configure.ac:486: -1- m4_pattern_allow([^TYPE_WORD$]) -m4trace:configure.ac:486: -1- AH_OUTPUT([TYPE_WORD], [/* XXX */ -@%:@undef TYPE_WORD]) -m4trace:configure.ac:487: -1- AC_DEFINE_TRACE_LITERAL([TYPE_DWORD]) -m4trace:configure.ac:487: -1- m4_pattern_allow([^TYPE_DWORD$]) -m4trace:configure.ac:487: -1- AH_OUTPUT([TYPE_DWORD], [/* XXX */ -@%:@undef TYPE_DWORD]) -m4trace:configure.ac:488: -1- AC_DEFINE_TRACE_LITERAL([TYPE_QWORD]) -m4trace:configure.ac:488: -1- m4_pattern_allow([^TYPE_QWORD$]) -m4trace:configure.ac:488: -1- AH_OUTPUT([TYPE_QWORD], [/* XXX */ -@%:@undef TYPE_QWORD]) -m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([TYPE_UBYTE]) -m4trace:configure.ac:490: -1- m4_pattern_allow([^TYPE_UBYTE$]) -m4trace:configure.ac:490: -1- AH_OUTPUT([TYPE_UBYTE], [/* XXX */ -@%:@undef TYPE_UBYTE]) -m4trace:configure.ac:491: -1- AC_DEFINE_TRACE_LITERAL([TYPE_UWORD]) -m4trace:configure.ac:491: -1- m4_pattern_allow([^TYPE_UWORD$]) -m4trace:configure.ac:491: -1- AH_OUTPUT([TYPE_UWORD], [/* XXX */ -@%:@undef TYPE_UWORD]) -m4trace:configure.ac:492: -1- AC_DEFINE_TRACE_LITERAL([TYPE_UDWORD]) -m4trace:configure.ac:492: -1- m4_pattern_allow([^TYPE_UDWORD$]) -m4trace:configure.ac:492: -1- AH_OUTPUT([TYPE_UDWORD], [/* XXX */ -@%:@undef TYPE_UDWORD]) -m4trace:configure.ac:493: -1- AC_DEFINE_TRACE_LITERAL([TYPE_UQWORD]) -m4trace:configure.ac:493: -1- m4_pattern_allow([^TYPE_UQWORD$]) -m4trace:configure.ac:493: -1- AH_OUTPUT([TYPE_UQWORD], [/* XXX */ -@%:@undef TYPE_UQWORD]) -m4trace:configure.ac:502: -1- AH_OUTPUT([WORDS_BIGENDIAN], [/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most - significant byte first (like Motorola and SPARC, unlike Intel). */ -#if defined AC_APPLE_UNIVERSAL_BUILD -# if defined __BIG_ENDIAN__ -# define WORDS_BIGENDIAN 1 -# endif -#else -# ifndef WORDS_BIGENDIAN -# undef WORDS_BIGENDIAN -# endif -#endif]) -m4trace:configure.ac:502: -1- AC_DEFINE_TRACE_LITERAL([WORDS_BIGENDIAN]) -m4trace:configure.ac:502: -1- m4_pattern_allow([^WORDS_BIGENDIAN$]) -m4trace:configure.ac:502: -1- AC_DEFINE_TRACE_LITERAL([AC_APPLE_UNIVERSAL_BUILD]) -m4trace:configure.ac:502: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$]) -m4trace:configure.ac:502: -1- AH_OUTPUT([AC_APPLE_UNIVERSAL_BUILD], [/* Define if building universal (internal helper macro) */ -@%:@undef AC_APPLE_UNIVERSAL_BUILD]) -m4trace:configure.ac:517: -1- AC_SUBST([sdccconf_h_dir_separator]) -m4trace:configure.ac:517: -1- AC_SUBST_TRACE([sdccconf_h_dir_separator]) -m4trace:configure.ac:517: -1- m4_pattern_allow([^sdccconf_h_dir_separator$]) -m4trace:configure.ac:528: -1- AC_SUBST([LIB_TYPE]) -m4trace:configure.ac:528: -1- AC_SUBST_TRACE([LIB_TYPE]) -m4trace:configure.ac:528: -1- m4_pattern_allow([^LIB_TYPE$]) -m4trace:configure.ac:536: -1- AC_SUBST([inclib_dir_suffix]) -m4trace:configure.ac:536: -1- AC_SUBST_TRACE([inclib_dir_suffix]) -m4trace:configure.ac:536: -1- m4_pattern_allow([^inclib_dir_suffix$]) -m4trace:configure.ac:541: -1- AC_SUBST([include_dir_suffix]) -m4trace:configure.ac:541: -1- AC_SUBST_TRACE([include_dir_suffix]) -m4trace:configure.ac:541: -1- m4_pattern_allow([^include_dir_suffix$]) -m4trace:configure.ac:546: -1- AC_SUBST([non_free_inclib_dir_suffix]) -m4trace:configure.ac:546: -1- AC_SUBST_TRACE([non_free_inclib_dir_suffix]) -m4trace:configure.ac:546: -1- m4_pattern_allow([^non_free_inclib_dir_suffix$]) -m4trace:configure.ac:554: -1- AC_SUBST([non_free_include_dir_suffix]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([non_free_include_dir_suffix]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^non_free_include_dir_suffix$]) -m4trace:configure.ac:561: -1- AC_SUBST([lib_dir_suffix]) -m4trace:configure.ac:561: -1- AC_SUBST_TRACE([lib_dir_suffix]) -m4trace:configure.ac:561: -1- m4_pattern_allow([^lib_dir_suffix$]) -m4trace:configure.ac:568: -1- AC_SUBST([non_free_lib_dir_suffix]) -m4trace:configure.ac:568: -1- AC_SUBST_TRACE([non_free_lib_dir_suffix]) -m4trace:configure.ac:568: -1- m4_pattern_allow([^non_free_lib_dir_suffix$]) -m4trace:configure.ac:575: -1- AC_SUBST([docdir]) -m4trace:configure.ac:575: -1- AC_SUBST_TRACE([docdir]) -m4trace:configure.ac:575: -1- m4_pattern_allow([^docdir$]) -m4trace:configure.ac:580: -1- AC_SUBST([EXEEXT]) -m4trace:configure.ac:580: -1- AC_SUBST_TRACE([EXEEXT]) -m4trace:configure.ac:580: -1- m4_pattern_allow([^EXEEXT$]) -m4trace:configure.ac:585: -1- AC_DEFINE_TRACE_LITERAL([DIR_SEPARATOR_STRING]) -m4trace:configure.ac:585: -1- m4_pattern_allow([^DIR_SEPARATOR_STRING$]) -m4trace:configure.ac:585: -1- AH_OUTPUT([DIR_SEPARATOR_STRING], [/* XXX */ -@%:@undef DIR_SEPARATOR_STRING]) -m4trace:configure.ac:586: -1- AC_DEFINE_TRACE_LITERAL([DIR_SEPARATOR_CHAR]) -m4trace:configure.ac:586: -1- m4_pattern_allow([^DIR_SEPARATOR_CHAR$]) -m4trace:configure.ac:586: -1- AH_OUTPUT([DIR_SEPARATOR_CHAR], [/* XXX */ -@%:@undef DIR_SEPARATOR_CHAR]) -m4trace:configure.ac:591: -1- AC_DEFINE_TRACE_LITERAL([PREFIX]) -m4trace:configure.ac:591: -1- m4_pattern_allow([^PREFIX$]) -m4trace:configure.ac:591: -1- AH_OUTPUT([PREFIX], [/* XXX */ -@%:@undef PREFIX]) -m4trace:configure.ac:596: -1- AC_DEFINE_TRACE_LITERAL([EXEC_PREFIX]) -m4trace:configure.ac:596: -1- m4_pattern_allow([^EXEC_PREFIX$]) -m4trace:configure.ac:596: -1- AH_OUTPUT([EXEC_PREFIX], [/* XXX */ -@%:@undef EXEC_PREFIX]) -m4trace:configure.ac:601: -1- AC_DEFINE_TRACE_LITERAL([BINDIR]) -m4trace:configure.ac:601: -1- m4_pattern_allow([^BINDIR$]) -m4trace:configure.ac:601: -1- AH_OUTPUT([BINDIR], [/* XXX */ -@%:@undef BINDIR]) -m4trace:configure.ac:606: -1- AC_DEFINE_TRACE_LITERAL([DATADIR]) -m4trace:configure.ac:606: -1- m4_pattern_allow([^DATADIR$]) -m4trace:configure.ac:606: -1- AH_OUTPUT([DATADIR], [/* XXX */ -@%:@undef DATADIR]) -m4trace:configure.ac:611: -1- AC_DEFINE_TRACE_LITERAL([INCLUDE_DIR_SUFFIX]) -m4trace:configure.ac:611: -1- m4_pattern_allow([^INCLUDE_DIR_SUFFIX$]) -m4trace:configure.ac:611: -1- AH_OUTPUT([INCLUDE_DIR_SUFFIX], [/* XXX */ -@%:@undef INCLUDE_DIR_SUFFIX]) -m4trace:configure.ac:615: -1- AC_DEFINE_TRACE_LITERAL([NON_FREE_INCLUDE_DIR_SUFFIX]) -m4trace:configure.ac:615: -1- m4_pattern_allow([^NON_FREE_INCLUDE_DIR_SUFFIX$]) -m4trace:configure.ac:615: -1- AH_OUTPUT([NON_FREE_INCLUDE_DIR_SUFFIX], [/* XXX */ -@%:@undef NON_FREE_INCLUDE_DIR_SUFFIX]) -m4trace:configure.ac:620: -1- AC_DEFINE_TRACE_LITERAL([LIB_DIR_SUFFIX]) -m4trace:configure.ac:620: -1- m4_pattern_allow([^LIB_DIR_SUFFIX$]) -m4trace:configure.ac:620: -1- AH_OUTPUT([LIB_DIR_SUFFIX], [/* XXX */ -@%:@undef LIB_DIR_SUFFIX]) -m4trace:configure.ac:624: -1- AC_DEFINE_TRACE_LITERAL([NON_FREE_LIB_DIR_SUFFIX]) -m4trace:configure.ac:624: -1- m4_pattern_allow([^NON_FREE_LIB_DIR_SUFFIX$]) -m4trace:configure.ac:624: -1- AH_OUTPUT([NON_FREE_LIB_DIR_SUFFIX], [/* XXX */ -@%:@undef NON_FREE_LIB_DIR_SUFFIX]) -m4trace:configure.ac:630: -1- AC_DEFINE_TRACE_LITERAL([BIN2DATA_DIR]) -m4trace:configure.ac:630: -1- m4_pattern_allow([^BIN2DATA_DIR$]) -m4trace:configure.ac:630: -1- AH_OUTPUT([BIN2DATA_DIR], [/* XXX */ -@%:@undef BIN2DATA_DIR]) -m4trace:configure.ac:635: -1- AC_DEFINE_TRACE_LITERAL([PREFIX2BIN_DIR]) -m4trace:configure.ac:635: -1- m4_pattern_allow([^PREFIX2BIN_DIR$]) -m4trace:configure.ac:635: -1- AH_OUTPUT([PREFIX2BIN_DIR], [/* XXX */ -@%:@undef PREFIX2BIN_DIR]) -m4trace:configure.ac:642: -1- AC_DEFINE_TRACE_LITERAL([PREFIX2DATA_DIR]) -m4trace:configure.ac:642: -1- m4_pattern_allow([^PREFIX2DATA_DIR$]) -m4trace:configure.ac:642: -1- AH_OUTPUT([PREFIX2DATA_DIR], [/* XXX */ -@%:@undef PREFIX2DATA_DIR]) -m4trace:configure.ac:644: -1- AC_DEFINE_TRACE_LITERAL([PREFIX2DATA_DIR]) -m4trace:configure.ac:644: -1- m4_pattern_allow([^PREFIX2DATA_DIR$]) -m4trace:configure.ac:644: -1- AH_OUTPUT([PREFIX2DATA_DIR], [/* XXX */ -@%:@undef PREFIX2DATA_DIR]) -m4trace:configure.ac:649: -1- AC_DEFINE_TRACE_LITERAL([STD_LIB]) -m4trace:configure.ac:649: -1- m4_pattern_allow([^STD_LIB$]) -m4trace:configure.ac:649: -1- AH_OUTPUT([STD_LIB], [/* XXX */ -@%:@undef STD_LIB]) -m4trace:configure.ac:650: -1- AC_DEFINE_TRACE_LITERAL([STD_INT_LIB]) -m4trace:configure.ac:650: -1- m4_pattern_allow([^STD_INT_LIB$]) -m4trace:configure.ac:650: -1- AH_OUTPUT([STD_INT_LIB], [/* XXX */ -@%:@undef STD_INT_LIB]) -m4trace:configure.ac:651: -1- AC_DEFINE_TRACE_LITERAL([STD_LONG_LIB]) -m4trace:configure.ac:651: -1- m4_pattern_allow([^STD_LONG_LIB$]) -m4trace:configure.ac:651: -1- AH_OUTPUT([STD_LONG_LIB], [/* XXX */ -@%:@undef STD_LONG_LIB]) -m4trace:configure.ac:652: -1- AC_DEFINE_TRACE_LITERAL([STD_FP_LIB]) -m4trace:configure.ac:652: -1- m4_pattern_allow([^STD_FP_LIB$]) -m4trace:configure.ac:652: -1- AH_OUTPUT([STD_FP_LIB], [/* XXX */ -@%:@undef STD_FP_LIB]) -m4trace:configure.ac:653: -1- AC_DEFINE_TRACE_LITERAL([STD_DS390_LIB]) -m4trace:configure.ac:653: -1- m4_pattern_allow([^STD_DS390_LIB$]) -m4trace:configure.ac:653: -1- AH_OUTPUT([STD_DS390_LIB], [/* XXX */ -@%:@undef STD_DS390_LIB]) -m4trace:configure.ac:654: -1- AC_DEFINE_TRACE_LITERAL([STD_DS400_LIB]) -m4trace:configure.ac:654: -1- m4_pattern_allow([^STD_DS400_LIB$]) -m4trace:configure.ac:654: -1- AH_OUTPUT([STD_DS400_LIB], [/* XXX */ -@%:@undef STD_DS400_LIB]) -m4trace:configure.ac:658: -1- AC_DEFINE_TRACE_LITERAL([SDCC_DIR_NAME]) -m4trace:configure.ac:658: -1- m4_pattern_allow([^SDCC_DIR_NAME$]) -m4trace:configure.ac:658: -1- AH_OUTPUT([SDCC_DIR_NAME], [/* XXX */ -@%:@undef SDCC_DIR_NAME]) -m4trace:configure.ac:661: -1- AC_DEFINE_TRACE_LITERAL([SDCC_INCLUDE_NAME]) -m4trace:configure.ac:661: -1- m4_pattern_allow([^SDCC_INCLUDE_NAME$]) -m4trace:configure.ac:661: -1- AH_OUTPUT([SDCC_INCLUDE_NAME], [/* XXX */ -@%:@undef SDCC_INCLUDE_NAME]) -m4trace:configure.ac:664: -1- AC_DEFINE_TRACE_LITERAL([SDCC_LIB_NAME]) -m4trace:configure.ac:664: -1- m4_pattern_allow([^SDCC_LIB_NAME$]) -m4trace:configure.ac:664: -1- AH_OUTPUT([SDCC_LIB_NAME], [/* XXX */ -@%:@undef SDCC_LIB_NAME]) -m4trace:configure.ac:667: -1- AH_OUTPUT([00001], [#ifndef SDCCCONF_HEADER -#define SDCCCONF_HEADER]) -m4trace:configure.ac:669: -1- AH_OUTPUT([zzzz2], [#endif /* SDCCCONF_HEADER */]) -m4trace:configure.ac:766: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:766: the top level]) -m4trace:configure.ac:766: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_MCS51]) -m4trace:configure.ac:766: -1- m4_pattern_allow([^OPT_DISABLE_MCS51$]) -m4trace:configure.ac:766: -1- AH_OUTPUT([OPT_DISABLE_MCS51], [/* XXX */ -@%:@undef OPT_DISABLE_MCS51]) -m4trace:configure.ac:766: -1- AC_SUBST([OPT_DISABLE_MCS51]) -m4trace:configure.ac:766: -1- AC_SUBST_TRACE([OPT_DISABLE_MCS51]) -m4trace:configure.ac:766: -1- m4_pattern_allow([^OPT_DISABLE_MCS51$]) -m4trace:configure.ac:767: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:767: the top level]) -m4trace:configure.ac:767: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_Z80]) -m4trace:configure.ac:767: -1- m4_pattern_allow([^OPT_DISABLE_Z80$]) -m4trace:configure.ac:767: -1- AH_OUTPUT([OPT_DISABLE_Z80], [/* XXX */ -@%:@undef OPT_DISABLE_Z80]) -m4trace:configure.ac:767: -1- AC_SUBST([OPT_DISABLE_Z80]) -m4trace:configure.ac:767: -1- AC_SUBST_TRACE([OPT_DISABLE_Z80]) -m4trace:configure.ac:767: -1- m4_pattern_allow([^OPT_DISABLE_Z80$]) -m4trace:configure.ac:768: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:768: the top level]) -m4trace:configure.ac:768: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_Z180]) -m4trace:configure.ac:768: -1- m4_pattern_allow([^OPT_DISABLE_Z180$]) -m4trace:configure.ac:768: -1- AH_OUTPUT([OPT_DISABLE_Z180], [/* XXX */ -@%:@undef OPT_DISABLE_Z180]) -m4trace:configure.ac:768: -1- AC_SUBST([OPT_DISABLE_Z180]) -m4trace:configure.ac:768: -1- AC_SUBST_TRACE([OPT_DISABLE_Z180]) -m4trace:configure.ac:768: -1- m4_pattern_allow([^OPT_DISABLE_Z180$]) -m4trace:configure.ac:769: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:769: the top level]) -m4trace:configure.ac:769: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_R2K]) -m4trace:configure.ac:769: -1- m4_pattern_allow([^OPT_DISABLE_R2K$]) -m4trace:configure.ac:769: -1- AH_OUTPUT([OPT_DISABLE_R2K], [/* XXX */ -@%:@undef OPT_DISABLE_R2K]) -m4trace:configure.ac:769: -1- AC_SUBST([OPT_DISABLE_R2K]) -m4trace:configure.ac:769: -1- AC_SUBST_TRACE([OPT_DISABLE_R2K]) -m4trace:configure.ac:769: -1- m4_pattern_allow([^OPT_DISABLE_R2K$]) -m4trace:configure.ac:770: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:770: the top level]) -m4trace:configure.ac:770: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_R3KA]) -m4trace:configure.ac:770: -1- m4_pattern_allow([^OPT_DISABLE_R3KA$]) -m4trace:configure.ac:770: -1- AH_OUTPUT([OPT_DISABLE_R3KA], [/* XXX */ -@%:@undef OPT_DISABLE_R3KA]) -m4trace:configure.ac:770: -1- AC_SUBST([OPT_DISABLE_R3KA]) -m4trace:configure.ac:770: -1- AC_SUBST_TRACE([OPT_DISABLE_R3KA]) -m4trace:configure.ac:770: -1- m4_pattern_allow([^OPT_DISABLE_R3KA$]) -m4trace:configure.ac:771: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:771: the top level]) -m4trace:configure.ac:771: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_GBZ80]) -m4trace:configure.ac:771: -1- m4_pattern_allow([^OPT_DISABLE_GBZ80$]) -m4trace:configure.ac:771: -1- AH_OUTPUT([OPT_DISABLE_GBZ80], [/* XXX */ -@%:@undef OPT_DISABLE_GBZ80]) -m4trace:configure.ac:771: -1- AC_SUBST([OPT_DISABLE_GBZ80]) -m4trace:configure.ac:771: -1- AC_SUBST_TRACE([OPT_DISABLE_GBZ80]) -m4trace:configure.ac:771: -1- m4_pattern_allow([^OPT_DISABLE_GBZ80$]) -m4trace:configure.ac:772: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:772: the top level]) -m4trace:configure.ac:772: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_TLCS90]) -m4trace:configure.ac:772: -1- m4_pattern_allow([^OPT_DISABLE_TLCS90$]) -m4trace:configure.ac:772: -1- AH_OUTPUT([OPT_DISABLE_TLCS90], [/* XXX */ -@%:@undef OPT_DISABLE_TLCS90]) -m4trace:configure.ac:772: -1- AC_SUBST([OPT_DISABLE_TLCS90]) -m4trace:configure.ac:772: -1- AC_SUBST_TRACE([OPT_DISABLE_TLCS90]) -m4trace:configure.ac:772: -1- m4_pattern_allow([^OPT_DISABLE_TLCS90$]) -m4trace:configure.ac:773: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:773: the top level]) -m4trace:configure.ac:773: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_EZ80_Z80]) -m4trace:configure.ac:773: -1- m4_pattern_allow([^OPT_DISABLE_EZ80_Z80$]) -m4trace:configure.ac:773: -1- AH_OUTPUT([OPT_DISABLE_EZ80_Z80], [/* XXX */ -@%:@undef OPT_DISABLE_EZ80_Z80]) -m4trace:configure.ac:773: -1- AC_SUBST([OPT_DISABLE_EZ80_Z80]) -m4trace:configure.ac:773: -1- AC_SUBST_TRACE([OPT_DISABLE_EZ80_Z80]) -m4trace:configure.ac:773: -1- m4_pattern_allow([^OPT_DISABLE_EZ80_Z80$]) -m4trace:configure.ac:774: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:774: the top level]) -m4trace:configure.ac:774: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_DS390]) -m4trace:configure.ac:774: -1- m4_pattern_allow([^OPT_DISABLE_DS390$]) -m4trace:configure.ac:774: -1- AH_OUTPUT([OPT_DISABLE_DS390], [/* XXX */ -@%:@undef OPT_DISABLE_DS390]) -m4trace:configure.ac:774: -1- AC_SUBST([OPT_DISABLE_DS390]) -m4trace:configure.ac:774: -1- AC_SUBST_TRACE([OPT_DISABLE_DS390]) -m4trace:configure.ac:774: -1- m4_pattern_allow([^OPT_DISABLE_DS390$]) -m4trace:configure.ac:775: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_TININative]) -m4trace:configure.ac:775: -1- m4_pattern_allow([^OPT_DISABLE_TININative$]) -m4trace:configure.ac:775: -1- AH_OUTPUT([OPT_DISABLE_TININative], [/* XXX */ -@%:@undef OPT_DISABLE_TININative]) -m4trace:configure.ac:776: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:776: the top level]) -m4trace:configure.ac:776: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_DS400]) -m4trace:configure.ac:776: -1- m4_pattern_allow([^OPT_DISABLE_DS400$]) -m4trace:configure.ac:776: -1- AH_OUTPUT([OPT_DISABLE_DS400], [/* XXX */ -@%:@undef OPT_DISABLE_DS400]) -m4trace:configure.ac:776: -1- AC_SUBST([OPT_DISABLE_DS400]) -m4trace:configure.ac:776: -1- AC_SUBST_TRACE([OPT_DISABLE_DS400]) -m4trace:configure.ac:776: -1- m4_pattern_allow([^OPT_DISABLE_DS400$]) -m4trace:configure.ac:777: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:777: the top level]) -m4trace:configure.ac:777: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_PIC14]) -m4trace:configure.ac:777: -1- m4_pattern_allow([^OPT_DISABLE_PIC14$]) -m4trace:configure.ac:777: -1- AH_OUTPUT([OPT_DISABLE_PIC14], [/* XXX */ -@%:@undef OPT_DISABLE_PIC14]) -m4trace:configure.ac:777: -1- AC_SUBST([OPT_DISABLE_PIC14]) -m4trace:configure.ac:777: -1- AC_SUBST_TRACE([OPT_DISABLE_PIC14]) -m4trace:configure.ac:777: -1- m4_pattern_allow([^OPT_DISABLE_PIC14$]) -m4trace:configure.ac:778: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:778: the top level]) -m4trace:configure.ac:778: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_PIC16]) -m4trace:configure.ac:778: -1- m4_pattern_allow([^OPT_DISABLE_PIC16$]) -m4trace:configure.ac:778: -1- AH_OUTPUT([OPT_DISABLE_PIC16], [/* XXX */ -@%:@undef OPT_DISABLE_PIC16]) -m4trace:configure.ac:778: -1- AC_SUBST([OPT_DISABLE_PIC16]) -m4trace:configure.ac:778: -1- AC_SUBST_TRACE([OPT_DISABLE_PIC16]) -m4trace:configure.ac:778: -1- m4_pattern_allow([^OPT_DISABLE_PIC16$]) -m4trace:configure.ac:779: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:779: the top level]) -m4trace:configure.ac:779: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_HC08]) -m4trace:configure.ac:779: -1- m4_pattern_allow([^OPT_DISABLE_HC08$]) -m4trace:configure.ac:779: -1- AH_OUTPUT([OPT_DISABLE_HC08], [/* XXX */ -@%:@undef OPT_DISABLE_HC08]) -m4trace:configure.ac:779: -1- AC_SUBST([OPT_DISABLE_HC08]) -m4trace:configure.ac:779: -1- AC_SUBST_TRACE([OPT_DISABLE_HC08]) -m4trace:configure.ac:779: -1- m4_pattern_allow([^OPT_DISABLE_HC08$]) -m4trace:configure.ac:780: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:780: the top level]) -m4trace:configure.ac:780: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_S08]) -m4trace:configure.ac:780: -1- m4_pattern_allow([^OPT_DISABLE_S08$]) -m4trace:configure.ac:780: -1- AH_OUTPUT([OPT_DISABLE_S08], [/* XXX */ -@%:@undef OPT_DISABLE_S08]) -m4trace:configure.ac:780: -1- AC_SUBST([OPT_DISABLE_S08]) -m4trace:configure.ac:780: -1- AC_SUBST_TRACE([OPT_DISABLE_S08]) -m4trace:configure.ac:780: -1- m4_pattern_allow([^OPT_DISABLE_S08$]) -m4trace:configure.ac:781: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:781: the top level]) -m4trace:configure.ac:781: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_STM8]) -m4trace:configure.ac:781: -1- m4_pattern_allow([^OPT_DISABLE_STM8$]) -m4trace:configure.ac:781: -1- AH_OUTPUT([OPT_DISABLE_STM8], [/* XXX */ -@%:@undef OPT_DISABLE_STM8]) -m4trace:configure.ac:781: -1- AC_SUBST([OPT_DISABLE_STM8]) -m4trace:configure.ac:781: -1- AC_SUBST_TRACE([OPT_DISABLE_STM8]) -m4trace:configure.ac:781: -1- m4_pattern_allow([^OPT_DISABLE_STM8$]) -m4trace:configure.ac:782: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:782: the top level]) -m4trace:configure.ac:782: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_PDK13]) -m4trace:configure.ac:782: -1- m4_pattern_allow([^OPT_DISABLE_PDK13$]) -m4trace:configure.ac:782: -1- AH_OUTPUT([OPT_DISABLE_PDK13], [/* XXX */ -@%:@undef OPT_DISABLE_PDK13]) -m4trace:configure.ac:782: -1- AC_SUBST([OPT_DISABLE_PDK13]) -m4trace:configure.ac:782: -1- AC_SUBST_TRACE([OPT_DISABLE_PDK13]) -m4trace:configure.ac:782: -1- m4_pattern_allow([^OPT_DISABLE_PDK13$]) -m4trace:configure.ac:783: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:783: the top level]) -m4trace:configure.ac:783: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_PDK14]) -m4trace:configure.ac:783: -1- m4_pattern_allow([^OPT_DISABLE_PDK14$]) -m4trace:configure.ac:783: -1- AH_OUTPUT([OPT_DISABLE_PDK14], [/* XXX */ -@%:@undef OPT_DISABLE_PDK14]) -m4trace:configure.ac:783: -1- AC_SUBST([OPT_DISABLE_PDK14]) -m4trace:configure.ac:783: -1- AC_SUBST_TRACE([OPT_DISABLE_PDK14]) -m4trace:configure.ac:783: -1- m4_pattern_allow([^OPT_DISABLE_PDK14$]) -m4trace:configure.ac:784: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:716: AC_DO_PORT is expanded from... -configure.ac:784: the top level]) -m4trace:configure.ac:784: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_PDK15]) -m4trace:configure.ac:784: -1- m4_pattern_allow([^OPT_DISABLE_PDK15$]) -m4trace:configure.ac:784: -1- AH_OUTPUT([OPT_DISABLE_PDK15], [/* XXX */ -@%:@undef OPT_DISABLE_PDK15]) -m4trace:configure.ac:784: -1- AC_SUBST([OPT_DISABLE_PDK15]) -m4trace:configure.ac:784: -1- AC_SUBST_TRACE([OPT_DISABLE_PDK15]) -m4trace:configure.ac:784: -1- m4_pattern_allow([^OPT_DISABLE_PDK15$]) -m4trace:configure.ac:785: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:741: AC_DO_PORT_ENABLER is expanded from... -configure.ac:785: the top level]) -m4trace:configure.ac:785: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_PDK16]) -m4trace:configure.ac:785: -1- m4_pattern_allow([^OPT_DISABLE_PDK16$]) -m4trace:configure.ac:785: -1- AH_OUTPUT([OPT_DISABLE_PDK16], [/* XXX */ -@%:@undef OPT_DISABLE_PDK16]) -m4trace:configure.ac:785: -1- AC_SUBST([OPT_DISABLE_PDK16]) -m4trace:configure.ac:785: -1- AC_SUBST_TRACE([OPT_DISABLE_PDK16]) -m4trace:configure.ac:785: -1- m4_pattern_allow([^OPT_DISABLE_PDK16$]) -m4trace:configure.ac:790: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_AVR]) -m4trace:configure.ac:790: -1- m4_pattern_allow([^OPT_DISABLE_AVR$]) -m4trace:configure.ac:790: -1- AH_OUTPUT([OPT_DISABLE_AVR], [/* Define to 1 to disable the AVR port */ -@%:@undef OPT_DISABLE_AVR]) -m4trace:configure.ac:791: -1- AC_SUBST([OPT_DISABLE_AVR]) -m4trace:configure.ac:791: -1- AC_SUBST_TRACE([OPT_DISABLE_AVR]) -m4trace:configure.ac:791: -1- m4_pattern_allow([^OPT_DISABLE_AVR$]) -m4trace:configure.ac:793: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:694: AC_DO_DISABLER is expanded from... -configure.ac:793: the top level]) -m4trace:configure.ac:793: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_UCSIM]) -m4trace:configure.ac:793: -1- m4_pattern_allow([^OPT_DISABLE_UCSIM$]) -m4trace:configure.ac:793: -1- AH_OUTPUT([OPT_DISABLE_UCSIM], [/* XXX */ -@%:@undef OPT_DISABLE_UCSIM]) -m4trace:configure.ac:793: -1- AC_SUBST([OPT_DISABLE_UCSIM]) -m4trace:configure.ac:793: -1- AC_SUBST_TRACE([OPT_DISABLE_UCSIM]) -m4trace:configure.ac:793: -1- m4_pattern_allow([^OPT_DISABLE_UCSIM$]) -m4trace:configure.ac:794: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:694: AC_DO_DISABLER is expanded from... -configure.ac:794: the top level]) -m4trace:configure.ac:794: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_DEVICE_LIB]) -m4trace:configure.ac:794: -1- m4_pattern_allow([^OPT_DISABLE_DEVICE_LIB$]) -m4trace:configure.ac:794: -1- AH_OUTPUT([OPT_DISABLE_DEVICE_LIB], [/* XXX */ -@%:@undef OPT_DISABLE_DEVICE_LIB]) -m4trace:configure.ac:794: -1- AC_SUBST([OPT_DISABLE_DEVICE_LIB]) -m4trace:configure.ac:794: -1- AC_SUBST_TRACE([OPT_DISABLE_DEVICE_LIB]) -m4trace:configure.ac:794: -1- m4_pattern_allow([^OPT_DISABLE_DEVICE_LIB$]) -m4trace:configure.ac:795: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:694: AC_DO_DISABLER is expanded from... -configure.ac:795: the top level]) -m4trace:configure.ac:795: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_PACKIHX]) -m4trace:configure.ac:795: -1- m4_pattern_allow([^OPT_DISABLE_PACKIHX$]) -m4trace:configure.ac:795: -1- AH_OUTPUT([OPT_DISABLE_PACKIHX], [/* XXX */ -@%:@undef OPT_DISABLE_PACKIHX]) -m4trace:configure.ac:795: -1- AC_SUBST([OPT_DISABLE_PACKIHX]) -m4trace:configure.ac:795: -1- AC_SUBST_TRACE([OPT_DISABLE_PACKIHX]) -m4trace:configure.ac:795: -1- m4_pattern_allow([^OPT_DISABLE_PACKIHX$]) -m4trace:configure.ac:796: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:694: AC_DO_DISABLER is expanded from... -configure.ac:796: the top level]) -m4trace:configure.ac:796: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_SDCPP]) -m4trace:configure.ac:796: -1- m4_pattern_allow([^OPT_DISABLE_SDCPP$]) -m4trace:configure.ac:796: -1- AH_OUTPUT([OPT_DISABLE_SDCPP], [/* XXX */ -@%:@undef OPT_DISABLE_SDCPP]) -m4trace:configure.ac:796: -1- AC_SUBST([OPT_DISABLE_SDCPP]) -m4trace:configure.ac:796: -1- AC_SUBST_TRACE([OPT_DISABLE_SDCPP]) -m4trace:configure.ac:796: -1- m4_pattern_allow([^OPT_DISABLE_SDCPP$]) -m4trace:configure.ac:797: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:694: AC_DO_DISABLER is expanded from... -configure.ac:797: the top level]) -m4trace:configure.ac:797: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_SDCDB]) -m4trace:configure.ac:797: -1- m4_pattern_allow([^OPT_DISABLE_SDCDB$]) -m4trace:configure.ac:797: -1- AH_OUTPUT([OPT_DISABLE_SDCDB], [/* XXX */ -@%:@undef OPT_DISABLE_SDCDB]) -m4trace:configure.ac:797: -1- AC_SUBST([OPT_DISABLE_SDCDB]) -m4trace:configure.ac:797: -1- AC_SUBST_TRACE([OPT_DISABLE_SDCDB]) -m4trace:configure.ac:797: -1- m4_pattern_allow([^OPT_DISABLE_SDCDB$]) -m4trace:configure.ac:798: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:694: AC_DO_DISABLER is expanded from... -configure.ac:798: the top level]) -m4trace:configure.ac:798: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_SDBINUTILS]) -m4trace:configure.ac:798: -1- m4_pattern_allow([^OPT_DISABLE_SDBINUTILS$]) -m4trace:configure.ac:798: -1- AH_OUTPUT([OPT_DISABLE_SDBINUTILS], [/* XXX */ -@%:@undef OPT_DISABLE_SDBINUTILS]) -m4trace:configure.ac:798: -1- AC_SUBST([OPT_DISABLE_SDBINUTILS]) -m4trace:configure.ac:798: -1- AC_SUBST_TRACE([OPT_DISABLE_SDBINUTILS]) -m4trace:configure.ac:798: -1- m4_pattern_allow([^OPT_DISABLE_SDBINUTILS$]) -m4trace:configure.ac:799: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:694: AC_DO_DISABLER is expanded from... -configure.ac:799: the top level]) -m4trace:configure.ac:799: -1- AC_DEFINE_TRACE_LITERAL([OPT_DISABLE_NON_FREE]) -m4trace:configure.ac:799: -1- m4_pattern_allow([^OPT_DISABLE_NON_FREE$]) -m4trace:configure.ac:799: -1- AH_OUTPUT([OPT_DISABLE_NON_FREE], [/* XXX */ -@%:@undef OPT_DISABLE_NON_FREE]) -m4trace:configure.ac:799: -1- AC_SUBST([OPT_DISABLE_NON_FREE]) -m4trace:configure.ac:799: -1- AC_SUBST_TRACE([OPT_DISABLE_NON_FREE]) -m4trace:configure.ac:799: -1- m4_pattern_allow([^OPT_DISABLE_NON_FREE$]) -m4trace:configure.ac:801: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:677: AC_DO_ENABLER is expanded from... -configure.ac:801: the top level]) -m4trace:configure.ac:801: -1- AC_DEFINE_TRACE_LITERAL([OPT_ENABLE_DOC]) -m4trace:configure.ac:801: -1- m4_pattern_allow([^OPT_ENABLE_DOC$]) -m4trace:configure.ac:801: -1- AH_OUTPUT([OPT_ENABLE_DOC], [/* XXX */ -@%:@undef OPT_ENABLE_DOC]) -m4trace:configure.ac:801: -1- AC_SUBST([OPT_ENABLE_DOC]) -m4trace:configure.ac:801: -1- AC_SUBST_TRACE([OPT_ENABLE_DOC]) -m4trace:configure.ac:801: -1- m4_pattern_allow([^OPT_ENABLE_DOC$]) -m4trace:configure.ac:802: -1- AC_SUBST([LYX]) -m4trace:configure.ac:802: -1- AC_SUBST_TRACE([LYX]) -m4trace:configure.ac:802: -1- m4_pattern_allow([^LYX$]) -m4trace:configure.ac:803: -1- AC_SUBST([LATEX2HTML]) -m4trace:configure.ac:803: -1- AC_SUBST_TRACE([LATEX2HTML]) -m4trace:configure.ac:803: -1- m4_pattern_allow([^LATEX2HTML$]) -m4trace:configure.ac:804: -1- AC_SUBST([LATEX]) -m4trace:configure.ac:804: -1- AC_SUBST_TRACE([LATEX]) -m4trace:configure.ac:804: -1- m4_pattern_allow([^LATEX$]) -m4trace:configure.ac:805: -1- AC_SUBST([DVIPDFM]) -m4trace:configure.ac:805: -1- AC_SUBST_TRACE([DVIPDFM]) -m4trace:configure.ac:805: -1- m4_pattern_allow([^DVIPDFM$]) -m4trace:configure.ac:806: -1- AC_SUBST([PDFLATEX]) -m4trace:configure.ac:806: -1- AC_SUBST_TRACE([PDFLATEX]) -m4trace:configure.ac:806: -1- m4_pattern_allow([^PDFLATEX$]) -m4trace:configure.ac:807: -1- AC_SUBST([MAKEINDEX]) -m4trace:configure.ac:807: -1- AC_SUBST_TRACE([MAKEINDEX]) -m4trace:configure.ac:807: -1- m4_pattern_allow([^MAKEINDEX$]) -m4trace:configure.ac:817: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -configure.ac:677: AC_DO_ENABLER is expanded from... -configure.ac:817: the top level]) -m4trace:configure.ac:817: -1- AC_DEFINE_TRACE_LITERAL([OPT_ENABLE_LIBGC]) -m4trace:configure.ac:817: -1- m4_pattern_allow([^OPT_ENABLE_LIBGC$]) -m4trace:configure.ac:817: -1- AH_OUTPUT([OPT_ENABLE_LIBGC], [/* XXX */ -@%:@undef OPT_ENABLE_LIBGC]) -m4trace:configure.ac:817: -1- AC_SUBST([OPT_ENABLE_LIBGC]) -m4trace:configure.ac:817: -1- AC_SUBST_TRACE([OPT_ENABLE_LIBGC]) -m4trace:configure.ac:817: -1- m4_pattern_allow([^OPT_ENABLE_LIBGC$]) -m4trace:configure.ac:819: -1- AH_OUTPUT([HAVE_LIBGC], [/* Define to 1 if you have the `gc\' library (-lgc). */ -@%:@undef HAVE_LIBGC]) -m4trace:configure.ac:819: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBGC]) -m4trace:configure.ac:819: -1- m4_pattern_allow([^HAVE_LIBGC$]) -m4trace:configure.ac:833: -1- AC_CONFIG_SUBDIRS([support/cpp]) -m4trace:configure.ac:833: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([support/cpp])"]) -m4trace:configure.ac:833: -1- AC_SUBST_TRACE([subdirs]) -m4trace:configure.ac:833: -1- m4_pattern_allow([^subdirs$]) -m4trace:configure.ac:834: -1- AC_CONFIG_SUBDIRS([support/packihx]) -m4trace:configure.ac:834: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([support/packihx])"]) -m4trace:configure.ac:834: -1- AC_SUBST_TRACE([subdirs]) -m4trace:configure.ac:834: -1- m4_pattern_allow([^subdirs$]) -m4trace:configure.ac:835: -1- AC_CONFIG_SUBDIRS([sim/ucsim]) -m4trace:configure.ac:835: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([sim/ucsim])"]) -m4trace:configure.ac:835: -1- AC_SUBST_TRACE([subdirs]) -m4trace:configure.ac:835: -1- m4_pattern_allow([^subdirs$]) -m4trace:configure.ac:836: -1- AC_CONFIG_SUBDIRS([debugger/mcs51]) -m4trace:configure.ac:836: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([debugger/mcs51])"]) -m4trace:configure.ac:836: -1- AC_SUBST_TRACE([subdirs]) -m4trace:configure.ac:836: -1- m4_pattern_allow([^subdirs$]) -m4trace:configure.ac:837: -1- AC_CONFIG_SUBDIRS([support/sdbinutils]) -m4trace:configure.ac:837: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([support/sdbinutils])"]) -m4trace:configure.ac:837: -1- AC_SUBST_TRACE([subdirs]) -m4trace:configure.ac:837: -1- m4_pattern_allow([^subdirs$]) -m4trace:configure.ac:838: -1- AC_CONFIG_FILES([doc/Makefile]) -m4trace:configure.ac:843: -1- AC_CONFIG_FILES([src/ds390/Makefile - sdas/as8xcxxx/Makefile]) -m4trace:configure.ac:845: -1- AC_CONFIG_FILES([device/lib/ds390/Makefile - device/lib/ds400/Makefile]) -m4trace:configure.ac:850: -1- AC_CONFIG_FILES([src/hc08/Makefile - sdas/as6808/Makefile]) -m4trace:configure.ac:852: -1- AC_CONFIG_FILES([device/lib/hc08/Makefile - device/lib/s08/Makefile]) -m4trace:configure.ac:857: -1- AC_CONFIG_FILES([src/mcs51/Makefile - sdas/as8051/Makefile]) -m4trace:configure.ac:859: -1- AC_CONFIG_FILES([device/lib/mcs51/Makefile - device/lib/small/Makefile - device/lib/medium/Makefile - device/lib/large/Makefile - device/lib/huge/Makefile]) -m4trace:configure.ac:867: -1- AC_CONFIG_FILES([src/pic14/Makefile]) -m4trace:configure.ac:868: -1- AC_CONFIG_SUBDIRS([device/lib/pic14]) -m4trace:configure.ac:868: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([device/lib/pic14])"]) -m4trace:configure.ac:868: -1- AC_SUBST_TRACE([subdirs]) -m4trace:configure.ac:868: -1- m4_pattern_allow([^subdirs$]) -m4trace:configure.ac:871: -1- AC_CONFIG_SUBDIRS([device/non-free/lib/pic14]) -m4trace:configure.ac:871: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([device/non-free/lib/pic14])"]) -m4trace:configure.ac:871: -1- AC_SUBST_TRACE([subdirs]) -m4trace:configure.ac:871: -1- m4_pattern_allow([^subdirs$]) -m4trace:configure.ac:874: -1- AC_CONFIG_FILES([src/pic16/Makefile]) -m4trace:configure.ac:875: -1- AC_CONFIG_SUBDIRS([device/lib/pic16]) -m4trace:configure.ac:875: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([device/lib/pic16])"]) -m4trace:configure.ac:875: -1- AC_SUBST_TRACE([subdirs]) -m4trace:configure.ac:875: -1- m4_pattern_allow([^subdirs$]) -m4trace:configure.ac:878: -1- AC_CONFIG_SUBDIRS([device/non-free/lib/pic16]) -m4trace:configure.ac:878: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([device/non-free/lib/pic16])"]) -m4trace:configure.ac:878: -1- AC_SUBST_TRACE([subdirs]) -m4trace:configure.ac:878: -1- m4_pattern_allow([^subdirs$]) -m4trace:configure.ac:882: -1- AC_CONFIG_FILES([src/z80/Makefile]) -m4trace:configure.ac:886: -1- AC_CONFIG_FILES([sdas/asz80/Makefile]) -m4trace:configure.ac:887: -1- AC_CONFIG_FILES([device/lib/z80/Makefile - device/lib/z180/Makefile - device/lib/ez80_z80/Makefile]) -m4trace:configure.ac:893: -1- AC_CONFIG_FILES([sdas/asrab/Makefile]) -m4trace:configure.ac:894: -1- AC_CONFIG_FILES([device/lib/r2k/Makefile - device/lib/r3ka/Makefile]) -m4trace:configure.ac:899: -1- AC_CONFIG_FILES([sdas/astlcs90/Makefile]) -m4trace:configure.ac:900: -1- AC_CONFIG_FILES([device/lib/tlcs90/Makefile]) -m4trace:configure.ac:904: -1- AC_CONFIG_FILES([sdas/asgb/Makefile]) -m4trace:configure.ac:905: -1- AC_CONFIG_FILES([device/lib/gbz80/Makefile]) -m4trace:configure.ac:909: -1- AC_CONFIG_FILES([src/stm8/Makefile - sdas/asstm8/Makefile]) -m4trace:configure.ac:911: -1- AC_CONFIG_FILES([device/lib/stm8/Makefile - device/lib/stm8-large/Makefile]) -m4trace:configure.ac:916: -1- AC_CONFIG_FILES([src/pdk/Makefile]) -m4trace:configure.ac:920: -1- AC_CONFIG_FILES([sdas/aspdk13/Makefile]) -m4trace:configure.ac:921: -1- AC_CONFIG_FILES([device/lib/pdk13/Makefile]) -m4trace:configure.ac:925: -1- AC_CONFIG_FILES([sdas/aspdk14/Makefile]) -m4trace:configure.ac:926: -1- AC_CONFIG_FILES([device/lib/pdk14/Makefile]) -m4trace:configure.ac:930: -1- AC_CONFIG_FILES([sdas/aspdk15/Makefile]) -m4trace:configure.ac:931: -1- AC_CONFIG_FILES([device/lib/pdk15/Makefile]) -m4trace:configure.ac:935: -1- AC_CONFIG_FILES([sdas/aspdk16/Makefile]) -m4trace:configure.ac:939: -1- AC_CONFIG_FILES([device/lib/Makefile]) -m4trace:configure.ac:940: -1- AC_CONFIG_FILES([device/non-free/lib/Makefile]) -m4trace:configure.ac:942: -1- AC_CONFIG_FILES([main.mk:main_in.mk -src/Makefile -device/include/Makefile -sdas/linksrc/Makefile -support/makebin/Makefile -support/regression/Makefile -support/valdiag/Makefile -support/scripts/Makefile -support/regression/ports/host/spec.mk:support/regression/ports/host/spec.mk.in -Makefile -Makefile.common:Makefile.common.in -]) -m4trace:configure.ac:955: -1- AC_CONFIG_FILES([device/non-free/include/Makefile]) -m4trace:configure.ac:957: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs]) -m4trace:configure.ac:957: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) -m4trace:configure.ac:957: -1- m4_pattern_allow([^LIB@&t@OBJS$]) -m4trace:configure.ac:957: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs]) -m4trace:configure.ac:957: -1- AC_SUBST_TRACE([LTLIBOBJS]) -m4trace:configure.ac:957: -1- m4_pattern_allow([^LTLIBOBJS$]) -m4trace:configure.ac:957: -1- AC_SUBST_TRACE([top_builddir]) -m4trace:configure.ac:957: -1- AC_SUBST_TRACE([top_build_prefix]) -m4trace:configure.ac:957: -1- AC_SUBST_TRACE([srcdir]) -m4trace:configure.ac:957: -1- AC_SUBST_TRACE([abs_srcdir]) -m4trace:configure.ac:957: -1- AC_SUBST_TRACE([top_srcdir]) -m4trace:configure.ac:957: -1- AC_SUBST_TRACE([abs_top_srcdir]) -m4trace:configure.ac:957: -1- AC_SUBST_TRACE([builddir]) -m4trace:configure.ac:957: -1- AC_SUBST_TRACE([abs_builddir]) -m4trace:configure.ac:957: -1- AC_SUBST_TRACE([abs_top_builddir]) -m4trace:configure.ac:957: -1- AC_SUBST_TRACE([INSTALL]) diff --git a/config.log b/config.log deleted file mode 100644 index 6e07803..0000000 --- a/config.log +++ /dev/null @@ -1,1663 +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-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 - -## --------- ## -## 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:2672: checking build system type -configure:2686: result: x86_64-pc-linux-gnu -configure:2706: checking host system type -configure:2719: result: x86_64-pc-linux-gnu -configure:2747: checking for gawk -configure:2763: found /usr/bin/gawk -configure:2774: result: gawk -configure:2786: checking version of the package -configure:2798: result: unknown using 0.0.0 -configure:2897: checking for gcc -configure:2913: found /usr/bin/gcc -configure:2924: result: gcc -configure:3153: checking for C compiler version -configure:3162: 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:3173: $? = 0 -configure:3162: 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:3173: $? = 0 -configure:3162: gcc -V >&5 -gcc: error: unrecognized command line option '-V' -gcc: fatal error: no input files -compilation terminated. -configure:3173: $? = 1 -configure:3162: gcc -qversion >&5 -gcc: error: unrecognized command line option '-qversion'; did you mean '--version'? -gcc: fatal error: no input files -compilation terminated. -configure:3173: $? = 1 -configure:3193: checking whether the C compiler works -configure:3215: gcc conftest.c >&5 -configure:3219: $? = 0 -configure:3267: result: yes -configure:3270: checking for C compiler default output file name -configure:3272: result: a.out -configure:3278: checking for suffix of executables -configure:3285: gcc -o conftest conftest.c >&5 -configure:3289: $? = 0 -configure:3311: result: -configure:3333: checking whether we are cross compiling -configure:3341: gcc -o conftest conftest.c >&5 -configure:3345: $? = 0 -configure:3352: ./conftest -configure:3356: $? = 0 -configure:3371: result: no -configure:3376: checking for suffix of object files -configure:3398: gcc -c conftest.c >&5 -configure:3402: $? = 0 -configure:3423: result: o -configure:3427: checking whether we are using the GNU C compiler -configure:3446: gcc -c conftest.c >&5 -configure:3446: $? = 0 -configure:3455: result: yes -configure:3464: checking whether gcc accepts -g -configure:3484: gcc -c -g conftest.c >&5 -configure:3484: $? = 0 -configure:3525: result: yes -configure:3542: checking for gcc option to accept ISO C89 -configure:3605: gcc -c -g -Og conftest.c >&5 -configure:3605: $? = 0 -configure:3618: result: none needed -configure:3643: checking how to run the C preprocessor -configure:3674: gcc -E conftest.c -configure:3674: $? = 0 -configure:3688: gcc -E conftest.c -conftest.c:13:10: fatal error: ac_nonexistent.h: No such file or directory - #include <ac_nonexistent.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:3688: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| /* end confdefs.h. */ -| #include <ac_nonexistent.h> -configure:3713: result: gcc -E -configure:3733: gcc -E conftest.c -configure:3733: $? = 0 -configure:3747: gcc -E conftest.c -conftest.c:13:10: fatal error: ac_nonexistent.h: No such file or directory - #include <ac_nonexistent.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:3747: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| /* end confdefs.h. */ -| #include <ac_nonexistent.h> -configure:3833: checking for g++ -configure:3849: found /usr/bin/g++ -configure:3860: result: g++ -configure:3887: checking for C++ compiler version -configure:3896: g++ --version >&5 -g++ (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:3907: $? = 0 -configure:3896: g++ -v >&5 -Using built-in specs. -COLLECT_GCC=g++ -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:3907: $? = 0 -configure:3896: g++ -V >&5 -g++: error: unrecognized command line option '-V' -g++: fatal error: no input files -compilation terminated. -configure:3907: $? = 1 -configure:3896: g++ -qversion >&5 -g++: error: unrecognized command line option '-qversion'; did you mean '--version'? -g++: fatal error: no input files -compilation terminated. -configure:3907: $? = 1 -configure:3911: checking whether we are using the GNU C++ compiler -configure:3930: g++ -c conftest.cpp >&5 -configure:3930: $? = 0 -configure:3939: result: yes -configure:3948: checking whether g++ accepts -g -configure:3968: g++ -c -g conftest.cpp >&5 -configure:3968: $? = 0 -configure:4009: result: yes -configure:4046: checking for a BSD-compatible install -configure:4114: result: /usr/bin/install -c -configure:4168: checking for ranlib -configure:4184: found /usr/bin/ranlib -configure:4195: result: ranlib -configure:4219: checking for autoconf -configure:4235: found /usr/bin/autoconf -configure:4247: result: autoconf -configure:4257: checking for strip -configure:4273: found /usr/bin/strip -configure:4285: result: strip -configure:4295: checking for as -configure:4311: found /usr/bin/as -configure:4323: result: as -configure:4333: checking for cp -configure:4349: found /bin/cp -configure:4361: result: cp -configure:4371: checking for ar -configure:4387: found /usr/bin/ar -configure:4399: result: ar -configure:4409: checking for gm4 -configure:4437: result: m4 -configure:4450: checking for flex -configure:4466: found /usr/bin/flex -configure:4477: result: flex -configure:4494: checking for bison -configure:4510: found /usr/bin/bison -configure:4521: result: bison -y -configure:4538: checking for python3.6 -configure:4554: found /usr/bin/python3.6 -configure:4565: result: python3.6 -configure:4598: checking for grep that handles long lines and -e -configure:4656: result: /bin/grep -configure:4661: checking for egrep -configure:4723: result: /bin/grep -E -configure:4728: checking for ANSI C header files -configure:4748: gcc -c -g -Og conftest.c >&5 -configure:4748: $? = 0 -configure:4821: gcc -o conftest -g -Og conftest.c >&5 -configure:4821: $? = 0 -configure:4821: ./conftest -configure:4821: $? = 0 -configure:4832: result: yes -configure:4845: checking for sys/types.h -configure:4845: gcc -c -g -Og conftest.c >&5 -configure:4845: $? = 0 -configure:4845: result: yes -configure:4845: checking for sys/stat.h -configure:4845: gcc -c -g -Og conftest.c >&5 -configure:4845: $? = 0 -configure:4845: result: yes -configure:4845: checking for stdlib.h -configure:4845: gcc -c -g -Og conftest.c >&5 -configure:4845: $? = 0 -configure:4845: result: yes -configure:4845: checking for string.h -configure:4845: gcc -c -g -Og conftest.c >&5 -configure:4845: $? = 0 -configure:4845: result: yes -configure:4845: checking for memory.h -configure:4845: gcc -c -g -Og conftest.c >&5 -configure:4845: $? = 0 -configure:4845: result: yes -configure:4845: checking for strings.h -configure:4845: gcc -c -g -Og conftest.c >&5 -configure:4845: $? = 0 -configure:4845: result: yes -configure:4845: checking for inttypes.h -configure:4845: gcc -c -g -Og conftest.c >&5 -configure:4845: $? = 0 -configure:4845: result: yes -configure:4845: checking for stdint.h -configure:4845: gcc -c -g -Og conftest.c >&5 -configure:4845: $? = 0 -configure:4845: result: yes -configure:4845: checking for unistd.h -configure:4845: gcc -c -g -Og conftest.c >&5 -configure:4845: $? = 0 -configure:4845: result: yes -configure:4860: checking endian.h usability -configure:4860: gcc -c -g -Og conftest.c >&5 -configure:4860: $? = 0 -configure:4860: result: yes -configure:4860: checking endian.h presence -configure:4860: gcc -E conftest.c -configure:4860: $? = 0 -configure:4860: result: yes -configure:4860: checking for endian.h -configure:4860: result: yes -configure:4860: checking sys/endian.h usability -configure:4860: gcc -c -g -Og conftest.c >&5 -conftest.c:57:10: fatal error: sys/endian.h: No such file or directory - #include <sys/endian.h> - ^~~~~~~~~~~~~~ -compilation terminated. -configure:4860: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_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 <sys/endian.h> -configure:4860: result: no -configure:4860: checking sys/endian.h presence -configure:4860: gcc -E conftest.c -conftest.c:24:10: fatal error: sys/endian.h: No such file or directory - #include <sys/endian.h> - ^~~~~~~~~~~~~~ -compilation terminated. -configure:4860: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_H 1 -| /* end confdefs.h. */ -| #include <sys/endian.h> -configure:4860: result: no -configure:4860: checking for sys/endian.h -configure:4860: result: no -configure:4860: checking machine/endian.h usability -configure:4860: gcc -c -g -Og conftest.c >&5 -conftest.c:57:10: fatal error: machine/endian.h: No such file or directory - #include <machine/endian.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:4860: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_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 <machine/endian.h> -configure:4860: result: no -configure:4860: checking machine/endian.h presence -configure:4860: gcc -E conftest.c -conftest.c:24:10: fatal error: machine/endian.h: No such file or directory - #include <machine/endian.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:4860: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_H 1 -| /* end confdefs.h. */ -| #include <machine/endian.h> -configure:4860: result: no -configure:4860: checking for machine/endian.h -configure:4860: result: no -configure:4860: checking sys/isa_defs.h usability -configure:4860: gcc -c -g -Og conftest.c >&5 -conftest.c:57:10: fatal error: sys/isa_defs.h: No such file or directory - #include <sys/isa_defs.h> - ^~~~~~~~~~~~~~~~ -compilation terminated. -configure:4860: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_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 <sys/isa_defs.h> -configure:4860: result: no -configure:4860: checking sys/isa_defs.h presence -configure:4860: gcc -E conftest.c -conftest.c:24:10: fatal error: sys/isa_defs.h: No such file or directory - #include <sys/isa_defs.h> - ^~~~~~~~~~~~~~~~ -compilation terminated. -configure:4860: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_H 1 -| /* end confdefs.h. */ -| #include <sys/isa_defs.h> -configure:4860: result: no -configure:4860: checking for sys/isa_defs.h -configure:4860: result: no -configure:4882: checking how to run the C++ preprocessor -configure:4909: g++ -E conftest.cpp -configure:4909: $? = 0 -configure:4923: g++ -E conftest.cpp -conftest.cpp:24:10: fatal error: ac_nonexistent.h: No such file or directory - #include <ac_nonexistent.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:4923: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_H 1 -| /* end confdefs.h. */ -| #include <ac_nonexistent.h> -configure:4948: result: g++ -E -configure:4968: g++ -E conftest.cpp -configure:4968: $? = 0 -configure:4982: g++ -E conftest.cpp -conftest.cpp:24:10: fatal error: ac_nonexistent.h: No such file or directory - #include <ac_nonexistent.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:4982: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_H 1 -| /* end confdefs.h. */ -| #include <ac_nonexistent.h> -configure:5013: checking treedec/combinations.hpp usability -configure:5013: g++ -c -g -Og conftest.cpp >&5 -conftest.cpp:57:10: fatal error: treedec/combinations.hpp: No such file or directory - #include <treedec/combinations.hpp> - ^~~~~~~~~~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:5013: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_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 <treedec/combinations.hpp> -configure:5013: result: no -configure:5013: checking treedec/combinations.hpp presence -configure:5013: g++ -E conftest.cpp -conftest.cpp:24:10: fatal error: treedec/combinations.hpp: No such file or directory - #include <treedec/combinations.hpp> - ^~~~~~~~~~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:5013: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_H 1 -| /* end confdefs.h. */ -| #include <treedec/combinations.hpp> -configure:5013: result: no -configure:5013: checking for treedec/combinations.hpp -configure:5013: result: no -configure:5020: treedec library missing, falling back to Thorup. -configure:5028: checking gala/graph.h usability -configure:5028: g++ -c -g -Og conftest.cpp >&5 -conftest.cpp:57:10: fatal error: gala/graph.h: No such file or directory - #include <gala/graph.h> - ^~~~~~~~~~~~~~ -compilation terminated. -configure:5028: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_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 <gala/graph.h> -configure:5028: result: no -configure:5028: checking gala/graph.h presence -configure:5028: g++ -E conftest.cpp -conftest.cpp:24:10: fatal error: gala/graph.h: No such file or directory - #include <gala/graph.h> - ^~~~~~~~~~~~~~ -compilation terminated. -configure:5028: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_H 1 -| /* end confdefs.h. */ -| #include <gala/graph.h> -configure:5028: result: no -configure:5028: checking for gala/graph.h -configure:5028: result: no -configure:5040: checking boost/graph/adjacency_list.hpp usability -configure:5040: g++ -c -g -Og conftest.cpp >&5 -configure:5040: $? = 0 -configure:5040: result: yes -configure:5040: checking boost/graph/adjacency_list.hpp presence -configure:5040: g++ -E conftest.cpp -configure:5040: $? = 0 -configure:5040: result: yes -configure:5040: checking for boost/graph/adjacency_list.hpp -configure:5040: result: yes -configure:5068: checking for ccache -configure:5084: found /usr/bin/ccache -configure:5095: result: ccache -configure:5114: checking for strerror -configure:5114: gcc -o conftest -g -Og conftest.c >&5 -configure:5114: $? = 0 -configure:5114: result: yes -configure:5114: checking for mkstemp -configure:5114: gcc -o conftest -g -Og conftest.c >&5 -configure:5114: $? = 0 -configure:5114: result: yes -configure:5114: checking for strndup -configure:5114: gcc -o conftest -g -Og conftest.c >&5 -conftest.c:50:6: warning: conflicting types for built-in function 'strndup' [-Wbuiltin-declaration-mismatch] - char strndup (); - ^~~~~~~ -configure:5114: $? = 0 -configure:5114: result: yes -configure:5114: checking for setrlimit -configure:5114: gcc -o conftest -g -Og conftest.c >&5 -configure:5114: $? = 0 -configure:5114: result: yes -configure:5114: checking for backtrace_symbols_fd -configure:5114: gcc -o conftest -g -Og conftest.c >&5 -configure:5114: $? = 0 -configure:5114: result: yes -configure:5217: checking whether g++ supports C++11 features by default -configure:5511: g++ -c -g -Og conftest.cpp >&5 -configure:5511: $? = 0 -configure:5518: result: yes -configure:6199: checking whether preprocessor accepts -MM or -M -Using built-in specs. -COLLECT_GCC=gcc -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) -COLLECT_GCC_OPTIONS='-E' '-v' '-MM' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -E -quiet -v -imultiarch x86_64-linux-gnu -MM _test_.c -mtune=generic -march=x86-64 -fstack-protector-strong -Wformat -Wformat-security -ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/lib/gcc/x86_64-linux-gnu/7/include - /usr/local/include - /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -_test_.o: _test_.c -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-E' '-v' '-MM' '-mtune=generic' '-march=x86-64' -configure:6214: result: -MM -configure:6221: checking whether C accepts -ggdb -configure:6241: gcc -c -ggdb conftest.c >&5 -configure:6241: $? = 0 -configure:6250: result: yes -configure:6262: checking whether C accepts -pipe -configure:6282: gcc -c -pipe conftest.c >&5 -configure:6282: $? = 0 -configure:6291: result: yes -configure:6354: checking for gcc option to accept ISO C99 -configure:6503: gcc -c -pipe -ggdb -g -Og conftest.c >&5 -configure:6503: $? = 0 -configure:6516: result: none needed -configure:6537: checking return type of signal handlers -configure:6555: gcc -c -pipe -ggdb -g -Og conftest.c >&5 -conftest.c: In function 'main': -conftest.c:37:10: error: void value not ignored as it ought to be - return *(signal (0, 0)) (0) == 1; - ~^~~~~~~~~~~~~~~~~~ -configure:6555: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_H 1 -| #define HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP 1 -| #define HAVE_STRERROR 1 -| #define HAVE_MKSTEMP 1 -| #define HAVE_STRNDUP 1 -| #define HAVE_SETRLIMIT 1 -| #define HAVE_BACKTRACE_SYMBOLS_FD 1 -| #define HAVE_CXX11 1 -| /* end confdefs.h. */ -| #include <sys/types.h> -| #include <signal.h> -| -| int -| main () -| { -| return *(signal (0, 0)) (0) == 1; -| ; -| return 0; -| } -configure:6562: result: void -configure:6575: checking size of char -configure:6580: gcc -o conftest -pipe -ggdb -g -Og conftest.c >&5 -configure:6580: $? = 0 -configure:6580: ./conftest -configure:6580: $? = 0 -configure:6594: result: 1 -configure:6608: checking size of short -configure:6613: gcc -o conftest -pipe -ggdb -g -Og conftest.c >&5 -configure:6613: $? = 0 -configure:6613: ./conftest -configure:6613: $? = 0 -configure:6627: result: 2 -configure:6641: checking size of int -configure:6646: gcc -o conftest -pipe -ggdb -g -Og conftest.c >&5 -configure:6646: $? = 0 -configure:6646: ./conftest -configure:6646: $? = 0 -configure:6660: result: 4 -configure:6674: checking size of long -configure:6679: gcc -o conftest -pipe -ggdb -g -Og conftest.c >&5 -configure:6679: $? = 0 -configure:6679: ./conftest -configure:6679: $? = 0 -configure:6693: result: 8 -configure:6707: checking size of long long -configure:6712: gcc -o conftest -pipe -ggdb -g -Og conftest.c >&5 -configure:6712: $? = 0 -configure:6712: ./conftest -configure:6712: $? = 0 -configure:6726: result: 8 -configure:6736: checking whether char is unsigned -configure:6755: gcc -c -pipe -ggdb -g -Og conftest.c >&5 -configure:6755: $? = 0 -configure:6762: result: no -configure:6795: checking type name for byte -configure:6803: result: char -configure:6805: checking type name for word -configure:6808: result: short -configure:6810: checking type name for dword -configure:6813: result: int -configure:6815: checking type name for qword -configure:6818: result: long -configure:6870: checking whether byte ordering is bigendian -configure:6885: gcc -c -pipe -ggdb -g -Og conftest.c >&5 -conftest.c:46:9: error: unknown type name 'not' - not a universal capable compiler - ^~~ -conftest.c:46:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' - not a universal capable compiler - ^~~~~~~~~ -conftest.c:46:15: error: unknown type name 'universal' -configure:6885: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_H 1 -| #define HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP 1 -| #define HAVE_STRERROR 1 -| #define HAVE_MKSTEMP 1 -| #define HAVE_STRNDUP 1 -| #define HAVE_SETRLIMIT 1 -| #define HAVE_BACKTRACE_SYMBOLS_FD 1 -| #define HAVE_CXX11 1 -| #define RETSIGTYPE void -| #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_DWORD int -| #define TYPE_QWORD long -| #define TYPE_UBYTE unsigned char -| #define TYPE_UWORD unsigned short -| #define TYPE_UDWORD unsigned int -| #define TYPE_UQWORD unsigned long -| /* end confdefs.h. */ -| #ifndef __APPLE_CC__ -| not a universal capable compiler -| #endif -| typedef int dummy; -| -configure:6930: gcc -c -pipe -ggdb -g -Og conftest.c >&5 -configure:6930: $? = 0 -configure:6948: gcc -c -pipe -ggdb -g -Og conftest.c >&5 -conftest.c: In function 'main': -conftest.c:52:4: error: unknown type name 'not'; did you mean 'ino_t'? - not big endian - ^~~ - ino_t -conftest.c:52:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' - not big endian - ^~~~~~ -configure:6948: $? = 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 SDCC_VERSION_LO 0 -| #define SDCC_VERSION_HI 0 -| #define SDCC_VERSION_P 0 -| #define SDCC_VERSION_STR "0.0.0" -| #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 HAVE_ENDIAN_H 1 -| #define HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP 1 -| #define HAVE_STRERROR 1 -| #define HAVE_MKSTEMP 1 -| #define HAVE_STRNDUP 1 -| #define HAVE_SETRLIMIT 1 -| #define HAVE_BACKTRACE_SYMBOLS_FD 1 -| #define HAVE_CXX11 1 -| #define RETSIGTYPE void -| #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_DWORD int -| #define TYPE_QWORD long -| #define TYPE_UBYTE unsigned char -| #define TYPE_UWORD unsigned short -| #define TYPE_UDWORD unsigned int -| #define TYPE_UQWORD unsigned long -| /* 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:7076: result: no -configure:8486: checking for lyx -configure:8502: found /usr/bin/lyx -configure:8514: result: lyx -configure:8524: checking for latex2html -configure:8552: result: : -configure:8562: checking for latex -configure:8578: found /usr/bin/latex -configure:8590: result: latex -configure:8600: checking for dvipdfm -configure:8616: found /usr/bin/dvipdfm -configure:8628: result: dvipdfm -configure:8638: checking for pdflatex -configure:8654: found /usr/bin/pdflatex -configure:8666: result: pdflatex -configure:8676: checking for makeindex -configure:8692: found /usr/bin/makeindex -configure:8704: result: makeindex -configure:9072: 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:1014: creating doc/Makefile -config.status:1014: creating src/ds390/Makefile -config.status:1014: creating sdas/as8xcxxx/Makefile -config.status:1014: creating src/stm8/Makefile -config.status:1014: creating sdas/asstm8/Makefile -config.status:1014: creating main.mk -config.status:1014: creating src/Makefile -config.status:1014: creating device/include/Makefile -config.status:1014: creating sdas/linksrc/Makefile -config.status:1014: creating support/makebin/Makefile -config.status:1014: creating support/regression/Makefile -config.status:1014: creating support/valdiag/Makefile -config.status:1014: creating support/scripts/Makefile -config.status:1014: creating support/regression/ports/host/spec.mk -config.status:1014: creating Makefile -config.status:1014: creating Makefile.common -config.status:1014: creating device/non-free/include/Makefile -config.status:1014: creating sdccconf.h -config.status:1014: creating sdas/linksrc/asxxxx_config.h -config.status:1189: sdas/linksrc/asxxxx_config.h is unchanged -configure:10359: === configuring in support/cpp (/home/xavier/sdcc_gas/support/cpp) -configure:10422: running /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=. -configure:10359: === configuring in debugger/mcs51 (/home/xavier/sdcc_gas/debugger/mcs51) -configure:10422: running /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=. -configure:10359: === configuring in support/sdbinutils (/home/xavier/sdcc_gas/support/sdbinutils) -configure:10422: running /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=. -configure:10734: result: -sdcc 0.0.0 is now configured for - - Build: x86_64-pc-linux-gnu - Host: x86_64-pc-linux-gnu - Source directory: . - Yacc: bison -y - C compiler: gcc - CFLAGS: -pipe -ggdb -g -Og - C++ compiler: g++ - CXXFLAGS: -pipe -ggdb -g -Og - CPPFLAGS: - LDFLAGS: - MAKEDEP: g++ -MM - - ENABLED Ports: - ds390 no - ds400 no - hc08 no - s08 no - mcs51 no - pic14 no - pic16 no - z80 no - z180 no - r2k no - r3ka no - gbz80 no - tlcs90 no - ez80_z80 no - stm8 yes - pdk13 no - pdk14 no - pdk15 no - pdk16 no - - Disable non-free lib: 0 - Disable packihx: 1 - Disable ucsim: 1 - Disable device lib: 1 - Disable sdcpp: 0 - Disable sdcdb: 0 - Disable sdbinutil: 0 - Enable documentation: 0 - Enable libgc: 0 - - Install paths: - binary files: ${prefix} - include/library files: ${datarootdir}/sdcc - include files: ${datarootdir}/sdcc/include - library files: ${datarootdir}/sdcc/lib - non-free files: ${datarootdir}/sdcc/non-free - non-free include files: ${datarootdir}/sdcc/non-free/include - non-free library files: ${datarootdir}/sdcc/non-free/lib - documentation: ${datarootdir}/doc/${PACKAGE} - - prefix: /usr/local - datadir: ${datarootdir} - datarootdir: ${prefix}/share - - Search paths (incomplete, see manual for all search paths): - binary files: $SDCC_HOME/bin - include files: /share/sdcc/include - path(argv[0])/../share/sdcc/include - /usr/local/share/sdcc/include - /share/sdcc/non-free/include - path(argv[0])/../share/sdcc/non-free/include - /usr/local/share/sdcc/non-free/include - library files: $SDCC_HOME/share/sdcc/lib/<model> - path(argv[0])/../share/sdcc/lib/<model> - /usr/local/share/sdcc/lib/<model> - $SDCC_HOME/share/sdcc/non-free/lib/<model> - path(argv[0])/../share/sdcc/non-free/lib/<model> - /usr/local/share/sdcc/non-free/lib/<model> - - -## ---------------- ## -## Cache variables. ## -## ---------------- ## - -ac_cv_build=x86_64-pc-linux-gnu -ac_cv_c_bigendian=no -ac_cv_c_char_unsigned=no -ac_cv_c_compiler_gnu=yes -ac_cv_cxx_compiler_gnu=yes -ac_cv_env_CCC_set= -ac_cv_env_CCC_value= -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_CXXCPP_set= -ac_cv_env_CXXCPP_value= -ac_cv_env_CXXFLAGS_set= -ac_cv_env_CXXFLAGS_value= -ac_cv_env_CXX_set= -ac_cv_env_CXX_value= -ac_cv_env_LDFLAGS_set= -ac_cv_env_LDFLAGS_value= -ac_cv_env_LIBS_set= -ac_cv_env_LIBS_value= -ac_cv_env_LIB_TYPE_set= -ac_cv_env_LIB_TYPE_value= -ac_cv_env_build_alias_set= -ac_cv_env_build_alias_value= -ac_cv_env_docdir_set=set -ac_cv_env_docdir_value='${datarootdir}/doc/${PACKAGE}' -ac_cv_env_host_alias_set= -ac_cv_env_host_alias_value= -ac_cv_env_inclib_dir_suffix_set= -ac_cv_env_inclib_dir_suffix_value= -ac_cv_env_include_dir_suffix_set= -ac_cv_env_include_dir_suffix_value= -ac_cv_env_lib_dir_suffix_set= -ac_cv_env_lib_dir_suffix_value= -ac_cv_env_non_free_inclib_dir_suffix_set= -ac_cv_env_non_free_inclib_dir_suffix_value= -ac_cv_env_non_free_include_dir_suffix_set= -ac_cv_env_non_free_include_dir_suffix_value= -ac_cv_env_non_free_lib_dir_suffix_set= -ac_cv_env_non_free_lib_dir_suffix_value= -ac_cv_env_sdccconf_h_dir_separator_set= -ac_cv_env_sdccconf_h_dir_separator_value= -ac_cv_env_target_alias_set= -ac_cv_env_target_alias_value= -ac_cv_func_backtrace_symbols_fd=yes -ac_cv_func_mkstemp=yes -ac_cv_func_setrlimit=yes -ac_cv_func_strerror=yes -ac_cv_func_strndup=yes -ac_cv_header_boost_graph_adjacency_list_hpp=yes -ac_cv_header_endian_h=yes -ac_cv_header_gala_graph_h=no -ac_cv_header_inttypes_h=yes -ac_cv_header_machine_endian_h=no -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_endian_h=no -ac_cv_header_sys_isa_defs_h=no -ac_cv_header_sys_stat_h=yes -ac_cv_header_sys_types_h=yes -ac_cv_header_treedec_combinations_hpp=no -ac_cv_header_unistd_h=yes -ac_cv_host=x86_64-pc-linux-gnu -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_AS=as -ac_cv_prog_AUTOCONF=autoconf -ac_cv_prog_AWK=gawk -ac_cv_prog_CCACHE=ccache -ac_cv_prog_CP=cp -ac_cv_prog_CPP='gcc -E' -ac_cv_prog_CXXCPP='g++ -E' -ac_cv_prog_DVIPDFM=dvipdfm -ac_cv_prog_LATEX2HTML=: -ac_cv_prog_LATEX=latex -ac_cv_prog_LEX=flex -ac_cv_prog_LYX=lyx -ac_cv_prog_M4=m4 -ac_cv_prog_MAKEINDEX=makeindex -ac_cv_prog_PDFLATEX=pdflatex -ac_cv_prog_PYTHON=python3.6 -ac_cv_prog_STRIP=strip -ac_cv_prog_YACC='bison -y' -ac_cv_prog_ac_ct_CC=gcc -ac_cv_prog_ac_ct_CXX=g++ -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_cxx_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 -ac_cv_type_signal=void -ax_cv_cxx_compile_cxx11=yes -sdcc_cv_MM=-MM -sdcc_cv_c_ggdb=yes -sdcc_cv_c_pipe=yes -sdcc_cv_version=0.0.0 -sdcc_cv_versionhi=0 -sdcc_cv_versionlo=0 -sdcc_cv_versionp=0 - -## ----------------- ## -## Output variables. ## -## ----------------- ## - -AR='ar' -AS='as' -AUTOCONF='autoconf' -AWK='gawk' -C99_FLAG='--std=c99' -CC='gcc' -CCACHE='ccache' -CFLAGS=' -pipe -ggdb -g -Og' -CP='cp' -CPP='gcc -E' -CPPFLAGS='' -CXX='g++' -CXXCPP='g++ -E' -CXXFLAGS='-pipe -ggdb -g -Og' -DEFS='-DHAVE_CONFIG_H' -DVIPDFM='dvipdfm' -ECHO_C='' -ECHO_N='-n' -ECHO_T='' -EGREP='/bin/grep -E' -EXEEXT='' -GREP='/bin/grep' -HAVE_CXX11='1' -INSTALL_DATA='${INSTALL} -m 644' -INSTALL_PROGRAM='${INSTALL}' -INSTALL_SCRIPT='${INSTALL}' -LATEX2HTML=':' -LATEX='latex' -LDFLAGS='' -LEX='flex' -LIBOBJS='' -LIBS='' -LIB_TYPE='RANLIB' -LTLIBOBJS='' -LYX='lyx' -M4='m4' -MAKEDEP='g++ -MM' -MAKEINDEX='makeindex' -OBJEXT='o' -OPT_DISABLE_AVR='1' -OPT_DISABLE_DEVICE_LIB='1' -OPT_DISABLE_DS390='1' -OPT_DISABLE_DS400='1' -OPT_DISABLE_EZ80_Z80='1' -OPT_DISABLE_GBZ80='1' -OPT_DISABLE_HC08='1' -OPT_DISABLE_MCS51='1' -OPT_DISABLE_NON_FREE='0' -OPT_DISABLE_PACKIHX='1' -OPT_DISABLE_PDK13='1' -OPT_DISABLE_PDK14='1' -OPT_DISABLE_PDK15='1' -OPT_DISABLE_PDK16='1' -OPT_DISABLE_PIC14='1' -OPT_DISABLE_PIC16='1' -OPT_DISABLE_R2K='1' -OPT_DISABLE_R3KA='1' -OPT_DISABLE_S08='1' -OPT_DISABLE_SDBINUTILS='0' -OPT_DISABLE_SDCDB='0' -OPT_DISABLE_SDCPP='0' -OPT_DISABLE_STM8='0' -OPT_DISABLE_TLCS90='1' -OPT_DISABLE_UCSIM='1' -OPT_DISABLE_Z180='1' -OPT_DISABLE_Z80='1' -OPT_ENABLE_DOC='0' -OPT_ENABLE_LIBGC='0' -PACKAGE='sdcc' -PACKAGE_BUGREPORT='' -PACKAGE_NAME='' -PACKAGE_STRING='' -PACKAGE_TARNAME='' -PACKAGE_URL='' -PACKAGE_VERSION='' -PATH_SEPARATOR=':' -PDFLATEX='pdflatex' -PYTHON='python3.6' -RANLIB='ranlib' -SHELL='/bin/bash' -STRIP='strip' -VERSION='0.0.0' -VERSIONHI='0' -VERSIONLO='0' -VERSIONP='0' -WALL_FLAG='-Wall -Wno-parentheses' -YACC='bison -y' -ac_ct_CC='gcc' -ac_ct_CXX='g++' -bindir='${exec_prefix}/bin' -build='x86_64-pc-linux-gnu' -build_alias='' -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='' -host_cpu='x86_64' -host_os='linux-gnu' -host_vendor='pc' -htmldir='${docdir}' -inclib_dir_suffix='sdcc' -include_dir_suffix='sdcc/include' -includedir='${prefix}/include' -infodir='${datarootdir}/info' -lib_dir_suffix='sdcc/lib' -libdir='${exec_prefix}/lib' -libexecdir='${exec_prefix}/libexec' -localedir='${datarootdir}/locale' -localstatedir='${prefix}/var' -mandir='${datarootdir}/man' -non_free_inclib_dir_suffix='sdcc/non-free' -non_free_include_dir_suffix='sdcc/non-free/include' -non_free_lib_dir_suffix='sdcc/non-free/lib' -oldincludedir='/usr/include' -pdfdir='${docdir}' -prefix='/usr/local' -program_transform_name='s,x,x,' -psdir='${docdir}' -runstatedir='${localstatedir}/run' -sbindir='${exec_prefix}/sbin' -sdccconf_h_dir_separator='/' -sharedstatedir='${prefix}/com' -subdirs=' support/cpp debugger/mcs51 support/sdbinutils' -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 SDCC_VERSION_LO 0 -#define SDCC_VERSION_HI 0 -#define SDCC_VERSION_P 0 -#define SDCC_VERSION_STR "0.0.0" -#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 HAVE_ENDIAN_H 1 -#define HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP 1 -#define HAVE_STRERROR 1 -#define HAVE_MKSTEMP 1 -#define HAVE_STRNDUP 1 -#define HAVE_SETRLIMIT 1 -#define HAVE_BACKTRACE_SYMBOLS_FD 1 -#define HAVE_CXX11 1 -#define RETSIGTYPE void -#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_DWORD int -#define TYPE_QWORD long -#define TYPE_UBYTE unsigned char -#define TYPE_UWORD unsigned short -#define TYPE_UDWORD unsigned int -#define TYPE_UQWORD unsigned long -#define DIR_SEPARATOR_STRING "/" -#define DIR_SEPARATOR_CHAR '/' -#define PREFIX "/usr/local" -#define EXEC_PREFIX "/usr/local" -#define BINDIR "/usr/local/bin" -#define DATADIR "/usr/local/share" -#define INCLUDE_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/include" -#define NON_FREE_INCLUDE_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/non-free/include" -#define LIB_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/lib" -#define NON_FREE_LIB_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/non-free/lib" -#define BIN2DATA_DIR DIR_SEPARATOR_STRING "../share" -#define PREFIX2BIN_DIR DIR_SEPARATOR_STRING "bin" -#define PREFIX2DATA_DIR DIR_SEPARATOR_STRING "share" -#define STD_LIB "libsdcc" -#define STD_INT_LIB "libint" -#define STD_LONG_LIB "liblong" -#define STD_FP_LIB "libfloat" -#define STD_DS390_LIB "libds390" -#define STD_DS400_LIB "libds400" -#define SDCC_DIR_NAME "SDCC_HOME" -#define SDCC_INCLUDE_NAME "SDCC_INCLUDE" -#define SDCC_LIB_NAME "SDCC_LIB" -#define OPT_DISABLE_MCS51 1 -#define OPT_DISABLE_Z80 1 -#define OPT_DISABLE_Z180 1 -#define OPT_DISABLE_R2K 1 -#define OPT_DISABLE_R3KA 1 -#define OPT_DISABLE_GBZ80 1 -#define OPT_DISABLE_TLCS90 1 -#define OPT_DISABLE_EZ80_Z80 1 -#define OPT_DISABLE_DS390 1 -#define OPT_DISABLE_TININative 1 -#define OPT_DISABLE_DS400 1 -#define OPT_DISABLE_PIC14 1 -#define OPT_DISABLE_PIC16 1 -#define OPT_DISABLE_HC08 1 -#define OPT_DISABLE_S08 1 -#define OPT_DISABLE_STM8 0 -#define OPT_DISABLE_PDK13 1 -#define OPT_DISABLE_PDK14 1 -#define OPT_DISABLE_PDK15 1 -#define OPT_DISABLE_PDK16 1 -#define OPT_DISABLE_AVR 1 -#define OPT_DISABLE_UCSIM 1 -#define OPT_DISABLE_DEVICE_LIB 1 -#define OPT_DISABLE_PACKIHX 1 -#define OPT_DISABLE_SDCPP 0 -#define OPT_DISABLE_SDCDB 0 -#define OPT_DISABLE_SDBINUTILS 0 -#define OPT_DISABLE_NON_FREE 0 -#define OPT_ENABLE_DOC 0 -#define OPT_ENABLE_LIBGC 0 - -configure: exit 0 diff --git a/config.status b/config.status deleted file mode 100755 index fd702d0..0000000 --- a/config.status +++ /dev/null @@ -1,1209 +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=" doc/Makefile src/ds390/Makefile sdas/as8xcxxx/Makefile src/stm8/Makefile sdas/asstm8/Makefile main.mk:main_in.mk src/Makefile device/include/Makefile sdas/linksrc/Makefile support/makebin/Makefile support/regression/Makefile support/valdiag/Makefile support/scripts/Makefile support/regression/ports/host/spec.mk:support/regression/ports/host/spec.mk.in Makefile Makefile.common:Makefile.common.in device/non-free/include/Makefile" -config_headers=" sdccconf.h:sdccconf_in.h sdas/linksrc/asxxxx_config.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-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}'" -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' -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=`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-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}' $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 - "sdccconf.h") CONFIG_HEADERS="$CONFIG_HEADERS sdccconf.h:sdccconf_in.h" ;; - "sdas/linksrc/asxxxx_config.h") CONFIG_HEADERS="$CONFIG_HEADERS sdas/linksrc/asxxxx_config.h" ;; - "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; - "src/ds390/Makefile") CONFIG_FILES="$CONFIG_FILES src/ds390/Makefile" ;; - "sdas/as8xcxxx/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/as8xcxxx/Makefile" ;; - "device/lib/ds390/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/ds390/Makefile" ;; - "device/lib/ds400/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/ds400/Makefile" ;; - "src/hc08/Makefile") CONFIG_FILES="$CONFIG_FILES src/hc08/Makefile" ;; - "sdas/as6808/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/as6808/Makefile" ;; - "device/lib/hc08/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/hc08/Makefile" ;; - "device/lib/s08/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/s08/Makefile" ;; - "src/mcs51/Makefile") CONFIG_FILES="$CONFIG_FILES src/mcs51/Makefile" ;; - "sdas/as8051/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/as8051/Makefile" ;; - "device/lib/mcs51/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/mcs51/Makefile" ;; - "device/lib/small/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/small/Makefile" ;; - "device/lib/medium/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/medium/Makefile" ;; - "device/lib/large/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/large/Makefile" ;; - "device/lib/huge/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/huge/Makefile" ;; - "src/pic14/Makefile") CONFIG_FILES="$CONFIG_FILES src/pic14/Makefile" ;; - "src/pic16/Makefile") CONFIG_FILES="$CONFIG_FILES src/pic16/Makefile" ;; - "src/z80/Makefile") CONFIG_FILES="$CONFIG_FILES src/z80/Makefile" ;; - "sdas/asz80/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/asz80/Makefile" ;; - "device/lib/z80/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/z80/Makefile" ;; - "device/lib/z180/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/z180/Makefile" ;; - "device/lib/ez80_z80/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/ez80_z80/Makefile" ;; - "sdas/asrab/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/asrab/Makefile" ;; - "device/lib/r2k/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/r2k/Makefile" ;; - "device/lib/r3ka/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/r3ka/Makefile" ;; - "sdas/astlcs90/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/astlcs90/Makefile" ;; - "device/lib/tlcs90/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/tlcs90/Makefile" ;; - "sdas/asgb/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/asgb/Makefile" ;; - "device/lib/gbz80/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/gbz80/Makefile" ;; - "src/stm8/Makefile") CONFIG_FILES="$CONFIG_FILES src/stm8/Makefile" ;; - "sdas/asstm8/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/asstm8/Makefile" ;; - "device/lib/stm8/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/stm8/Makefile" ;; - "device/lib/stm8-large/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/stm8-large/Makefile" ;; - "src/pdk/Makefile") CONFIG_FILES="$CONFIG_FILES src/pdk/Makefile" ;; - "sdas/aspdk13/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/aspdk13/Makefile" ;; - "device/lib/pdk13/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/pdk13/Makefile" ;; - "sdas/aspdk14/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/aspdk14/Makefile" ;; - "device/lib/pdk14/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/pdk14/Makefile" ;; - "sdas/aspdk15/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/aspdk15/Makefile" ;; - "device/lib/pdk15/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/pdk15/Makefile" ;; - "sdas/aspdk16/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/aspdk16/Makefile" ;; - "device/lib/Makefile") CONFIG_FILES="$CONFIG_FILES device/lib/Makefile" ;; - "device/non-free/lib/Makefile") CONFIG_FILES="$CONFIG_FILES device/non-free/lib/Makefile" ;; - "main.mk") CONFIG_FILES="$CONFIG_FILES main.mk:main_in.mk" ;; - "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; - "device/include/Makefile") CONFIG_FILES="$CONFIG_FILES device/include/Makefile" ;; - "sdas/linksrc/Makefile") CONFIG_FILES="$CONFIG_FILES sdas/linksrc/Makefile" ;; - "support/makebin/Makefile") CONFIG_FILES="$CONFIG_FILES support/makebin/Makefile" ;; - "support/regression/Makefile") CONFIG_FILES="$CONFIG_FILES support/regression/Makefile" ;; - "support/valdiag/Makefile") CONFIG_FILES="$CONFIG_FILES support/valdiag/Makefile" ;; - "support/scripts/Makefile") CONFIG_FILES="$CONFIG_FILES support/scripts/Makefile" ;; - "support/regression/ports/host/spec.mk") CONFIG_FILES="$CONFIG_FILES support/regression/ports/host/spec.mk:support/regression/ports/host/spec.mk.in" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "Makefile.common") CONFIG_FILES="$CONFIG_FILES Makefile.common:Makefile.common.in" ;; - "device/non-free/include/Makefile") CONFIG_FILES="$CONFIG_FILES device/non-free/include/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["subdirs"]=" support/cpp debugger/mcs51 support/sdbinutils" -S["OPT_ENABLE_LIBGC"]="0" -S["MAKEINDEX"]="makeindex" -S["PDFLATEX"]="pdflatex" -S["DVIPDFM"]="dvipdfm" -S["LATEX"]="latex" -S["LATEX2HTML"]=":" -S["LYX"]="lyx" -S["OPT_ENABLE_DOC"]="0" -S["OPT_DISABLE_NON_FREE"]="0" -S["OPT_DISABLE_SDBINUTILS"]="0" -S["OPT_DISABLE_SDCDB"]="0" -S["OPT_DISABLE_SDCPP"]="0" -S["OPT_DISABLE_PACKIHX"]="1" -S["OPT_DISABLE_DEVICE_LIB"]="1" -S["OPT_DISABLE_UCSIM"]="1" -S["OPT_DISABLE_AVR"]="1" -S["OPT_DISABLE_PDK16"]="1" -S["OPT_DISABLE_PDK15"]="1" -S["OPT_DISABLE_PDK14"]="1" -S["OPT_DISABLE_PDK13"]="1" -S["OPT_DISABLE_STM8"]="0" -S["OPT_DISABLE_S08"]="1" -S["OPT_DISABLE_HC08"]="1" -S["OPT_DISABLE_PIC16"]="1" -S["OPT_DISABLE_PIC14"]="1" -S["OPT_DISABLE_DS400"]="1" -S["OPT_DISABLE_DS390"]="1" -S["OPT_DISABLE_EZ80_Z80"]="1" -S["OPT_DISABLE_TLCS90"]="1" -S["OPT_DISABLE_GBZ80"]="1" -S["OPT_DISABLE_R3KA"]="1" -S["OPT_DISABLE_R2K"]="1" -S["OPT_DISABLE_Z180"]="1" -S["OPT_DISABLE_Z80"]="1" -S["OPT_DISABLE_MCS51"]="1" -S["non_free_lib_dir_suffix"]="sdcc/non-free/lib" -S["lib_dir_suffix"]="sdcc/lib" -S["non_free_include_dir_suffix"]="sdcc/non-free/include" -S["non_free_inclib_dir_suffix"]="sdcc/non-free" -S["include_dir_suffix"]="sdcc/include" -S["inclib_dir_suffix"]="sdcc" -S["LIB_TYPE"]="RANLIB" -S["sdccconf_h_dir_separator"]="/" -S["C99_FLAG"]="--std=c99" -S["WALL_FLAG"]="-Wall -Wno-parentheses" -S["MAKEDEP"]="g++ -MM" -S["HAVE_CXX11"]="1" -S["CCACHE"]="ccache" -S["CXXCPP"]="g++ -E" -S["EGREP"]="/bin/grep -E" -S["GREP"]="/bin/grep" -S["PYTHON"]="python3.6" -S["YACC"]="bison -y" -S["LEX"]="flex" -S["M4"]="m4" -S["AR"]="ar" -S["CP"]="cp" -S["AS"]="as" -S["STRIP"]="strip" -S["AUTOCONF"]="autoconf" -S["RANLIB"]="ranlib" -S["INSTALL_DATA"]="${INSTALL} -m 644" -S["INSTALL_SCRIPT"]="${INSTALL}" -S["INSTALL_PROGRAM"]="${INSTALL}" -S["ac_ct_CXX"]="g++" -S["CXXFLAGS"]="-pipe -ggdb -g -Og" -S["CXX"]="g++" -S["CPP"]="gcc -E" -S["OBJEXT"]="o" -S["EXEEXT"]="" -S["ac_ct_CC"]="gcc" -S["CPPFLAGS"]="" -S["LDFLAGS"]="" -S["CFLAGS"]=" -pipe -ggdb -g -Og" -S["CC"]="gcc" -S["VERSIONP"]="0" -S["VERSIONLO"]="0" -S["VERSIONHI"]="0" -S["VERSION"]="0.0.0" -S["PACKAGE"]="sdcc" -S["AWK"]="gawk" -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"]="" -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["SDCC_VERSION_LO"]=" 0" -D["SDCC_VERSION_HI"]=" 0" -D["SDCC_VERSION_P"]=" 0" -D["SDCC_VERSION_STR"]=" \"0.0.0\"" -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["HAVE_ENDIAN_H"]=" 1" -D["HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP"]=" 1" -D["HAVE_STRERROR"]=" 1" -D["HAVE_MKSTEMP"]=" 1" -D["HAVE_STRNDUP"]=" 1" -D["HAVE_SETRLIMIT"]=" 1" -D["HAVE_BACKTRACE_SYMBOLS_FD"]=" 1" -D["HAVE_CXX11"]=" 1" -D["RETSIGTYPE"]=" void" -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_DWORD"]=" int" -D["TYPE_QWORD"]=" long" -D["TYPE_UBYTE"]=" unsigned char" -D["TYPE_UWORD"]=" unsigned short" -D["TYPE_UDWORD"]=" unsigned int" -D["TYPE_UQWORD"]=" unsigned long" -D["DIR_SEPARATOR_STRING"]=" \"/\"" -D["DIR_SEPARATOR_CHAR"]=" '/'" -D["PREFIX"]=" \"/usr/local\"" -D["EXEC_PREFIX"]=" \"/usr/local\"" -D["BINDIR"]=" \"/usr/local/bin\"" -D["DATADIR"]=" \"/usr/local/share\"" -D["INCLUDE_DIR_SUFFIX"]=" DIR_SEPARATOR_STRING \"sdcc/include\"" -D["NON_FREE_INCLUDE_DIR_SUFFIX"]=" DIR_SEPARATOR_STRING \"sdcc/non-free/include\"" -D["LIB_DIR_SUFFIX"]=" DIR_SEPARATOR_STRING \"sdcc/lib\"" -D["NON_FREE_LIB_DIR_SUFFIX"]=" DIR_SEPARATOR_STRING \"sdcc/non-free/lib\"" -D["BIN2DATA_DIR"]=" DIR_SEPARATOR_STRING \"../share\"" -D["PREFIX2BIN_DIR"]=" DIR_SEPARATOR_STRING \"bin\"" -D["PREFIX2DATA_DIR"]=" DIR_SEPARATOR_STRING \"share\"" -D["STD_LIB"]=" \"libsdcc\"" -D["STD_INT_LIB"]=" \"libint\"" -D["STD_LONG_LIB"]=" \"liblong\"" -D["STD_FP_LIB"]=" \"libfloat\"" -D["STD_DS390_LIB"]=" \"libds390\"" -D["STD_DS400_LIB"]=" \"libds400\"" -D["SDCC_DIR_NAME"]=" \"SDCC_HOME\"" -D["SDCC_INCLUDE_NAME"]=" \"SDCC_INCLUDE\"" -D["SDCC_LIB_NAME"]=" \"SDCC_LIB\"" -D["OPT_DISABLE_MCS51"]=" 1" -D["OPT_DISABLE_Z80"]=" 1" -D["OPT_DISABLE_Z180"]=" 1" -D["OPT_DISABLE_R2K"]=" 1" -D["OPT_DISABLE_R3KA"]=" 1" -D["OPT_DISABLE_GBZ80"]=" 1" -D["OPT_DISABLE_TLCS90"]=" 1" -D["OPT_DISABLE_EZ80_Z80"]=" 1" -D["OPT_DISABLE_DS390"]=" 1" -D["OPT_DISABLE_TININative"]=" 1" -D["OPT_DISABLE_DS400"]=" 1" -D["OPT_DISABLE_PIC14"]=" 1" -D["OPT_DISABLE_PIC16"]=" 1" -D["OPT_DISABLE_HC08"]=" 1" -D["OPT_DISABLE_S08"]=" 1" -D["OPT_DISABLE_STM8"]=" 0" -D["OPT_DISABLE_PDK13"]=" 1" -D["OPT_DISABLE_PDK14"]=" 1" -D["OPT_DISABLE_PDK15"]=" 1" -D["OPT_DISABLE_PDK16"]=" 1" -D["OPT_DISABLE_AVR"]=" 1" -D["OPT_DISABLE_UCSIM"]=" 1" -D["OPT_DISABLE_DEVICE_LIB"]=" 1" -D["OPT_DISABLE_PACKIHX"]=" 1" -D["OPT_DISABLE_SDCPP"]=" 0" -D["OPT_DISABLE_SDCDB"]=" 0" -D["OPT_DISABLE_SDBINUTILS"]=" 0" -D["OPT_DISABLE_NON_FREE"]=" 0" -D["OPT_ENABLE_DOC"]=" 0" -D["OPT_ENABLE_LIBGC"]=" 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 " -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 - # - - 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[ ]*=[ ]*/{ -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 -s&@INSTALL@&$ac_INSTALL&;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/debugger/mcs51/Makefile b/debugger/mcs51/Makefile deleted file mode 100644 index eafe8a8..0000000 --- a/debugger/mcs51/Makefile +++ /dev/null @@ -1,118 +0,0 @@ -# -# -# - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = gcc -MM - -top_builddir = ../../ -top_srcdir = ./../.. -SLIB = $(top_srcdir)/support/util -SDCCLIB = $(top_srcdir)/src - - -srcdir = . - -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin - -transform = s,x,x, - -STD_INC = @sdcc_include_dir@ -CPPFLAGS = -I. -I$(top_builddir) -I$(top_srcdir) -I$(SLIB) -DHAVE_CONFIG_H -CFLAGS = -pipe -ggdb -g -O2 -Wall -LDFLAGS = - -EXEEXT = - -LIBS = -lnsl -lreadline -LIBDIRS = - -OBJECTS = sdcdb.o symtab.o simi.o \ - break.o cmd.o -SLIBOBJS = NewAlloc.o -SDCCOBJS = SDCCset.o SDCChasht.o SDCCerr.o - -SOURCES = $(patsubst %.o,%.c,$(OBJECTS)) -SLIBSOURCES = $(patsubst %.o,$(SLIB)/%.c,$(SLIBOBJS)) -SDCCSOURCES = $(patsubst %.o,$(SDCCLIB)/%.c,$(SDCCOBJS)) - -TARGET = $(top_builddir)/bin/sdcdb$(EXEEXT) - - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf $(TARGET) - -# Compiling and installing everything and runing test -# --------------------------------------------------- -install: all installdirs - $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)/`echo sdcdb|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTDIR)$(bindir)/`echo sdcdb|sed '$(transform)'`$(EXEEXT) - cp $(srcdir)/sdcdb.el $(DESTDIR)$(bindir)/`echo 'sdcdb'|sed '$(transform)'`.el - cp $(srcdir)/sdcdbsrc.el $(DESTDIR)$(bindir)/`echo 'sdcdbsrc'|sed '$(transform)'`.el - - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTDIR)$(bindir)/`echo sdcdb|sed '$(transform)'`$(EXEEXT) - rm -f $(DESTDIR)$(bindir)/`echo 'sdcdb'|sed '$(transform)'`.el - rm -f $(DESTDIR)$(bindir)/`echo 'sdcdbsrc'|sed '$(transform)'`.el - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(SOURCES) $(SLIBSOURCES) $(SDCCSOURCES) $(srcdir)/*.h $(top_builddir)/*.h $(top_srcdir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall installcheck installdirs checkconf \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(TARGET): $(OBJECTS) $(SLIBOBJS) $(SDCCOBJS) - $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(SLIBOBJS) $(SDCCOBJS) $(LIBDIRS) $(LIBS) - -.c.o: - $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< - -$(SLIBOBJS):%.o:$(SLIB)/%.c - $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< - -$(SDCCOBJS):%.o:$(SDCCLIB)/%.c - $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of cpp/Makefile diff --git a/debugger/mcs51/config.log b/debugger/mcs51/config.log deleted file mode 100644 index d5daaa4..0000000 --- a/debugger/mcs51/config.log +++ /dev/null @@ -1,630 +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:2100: checking for gcc -configure:2116: found /usr/bin/gcc -configure:2127: result: gcc -configure:2356: checking for C compiler version -configure:2365: 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:2376: $? = 0 -configure:2365: 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:2376: $? = 0 -configure:2365: gcc -V >&5 -gcc: error: unrecognized command line option '-V' -gcc: fatal error: no input files -compilation terminated. -configure:2376: $? = 1 -configure:2365: gcc -qversion >&5 -gcc: error: unrecognized command line option '-qversion'; did you mean '--version'? -gcc: fatal error: no input files -compilation terminated. -configure:2376: $? = 1 -configure:2396: checking whether the C compiler works -configure:2418: gcc conftest.c >&5 -configure:2422: $? = 0 -configure:2470: result: yes -configure:2473: checking for C compiler default output file name -configure:2475: result: a.out -configure:2481: checking for suffix of executables -configure:2488: gcc -o conftest conftest.c >&5 -configure:2492: $? = 0 -configure:2514: result: -configure:2536: checking whether we are cross compiling -configure:2544: gcc -o conftest conftest.c >&5 -configure:2548: $? = 0 -configure:2555: ./conftest -configure:2559: $? = 0 -configure:2574: result: no -configure:2579: checking for suffix of object files -configure:2601: gcc -c conftest.c >&5 -configure:2605: $? = 0 -configure:2626: result: o -configure:2630: checking whether we are using the GNU C compiler -configure:2649: gcc -c conftest.c >&5 -configure:2649: $? = 0 -configure:2658: result: yes -configure:2667: checking whether gcc accepts -g -configure:2687: gcc -c -g conftest.c >&5 -configure:2687: $? = 0 -configure:2728: result: yes -configure:2745: checking for gcc option to accept ISO C89 -configure:2808: gcc -c -g -O2 conftest.c >&5 -configure:2808: $? = 0 -configure:2821: result: none needed -configure:2847: checking how to run the C preprocessor -configure:2878: gcc -E conftest.c -configure:2878: $? = 0 -configure:2892: 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:2892: $? = 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:2917: result: gcc -E -configure:2937: gcc -E conftest.c -configure:2937: $? = 0 -configure:2951: 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:2951: $? = 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:2980: checking for grep that handles long lines and -e -configure:3038: result: /bin/grep -configure:3043: checking for egrep -configure:3105: result: /bin/grep -E -configure:3110: checking for ANSI C header files -configure:3130: gcc -c -g -O2 conftest.c >&5 -configure:3130: $? = 0 -configure:3203: gcc -o conftest -g -O2 conftest.c >&5 -configure:3203: $? = 0 -configure:3203: ./conftest -configure:3203: $? = 0 -configure:3214: result: yes -configure:3227: checking for sys/types.h -configure:3227: gcc -c -g -O2 conftest.c >&5 -configure:3227: $? = 0 -configure:3227: result: yes -configure:3227: checking for sys/stat.h -configure:3227: gcc -c -g -O2 conftest.c >&5 -configure:3227: $? = 0 -configure:3227: result: yes -configure:3227: checking for stdlib.h -configure:3227: gcc -c -g -O2 conftest.c >&5 -configure:3227: $? = 0 -configure:3227: result: yes -configure:3227: checking for string.h -configure:3227: gcc -c -g -O2 conftest.c >&5 -configure:3227: $? = 0 -configure:3227: result: yes -configure:3227: checking for memory.h -configure:3227: gcc -c -g -O2 conftest.c >&5 -configure:3227: $? = 0 -configure:3227: result: yes -configure:3227: checking for strings.h -configure:3227: gcc -c -g -O2 conftest.c >&5 -configure:3227: $? = 0 -configure:3227: result: yes -configure:3227: checking for inttypes.h -configure:3227: gcc -c -g -O2 conftest.c >&5 -configure:3227: $? = 0 -configure:3227: result: yes -configure:3227: checking for stdint.h -configure:3227: gcc -c -g -O2 conftest.c >&5 -configure:3227: $? = 0 -configure:3227: result: yes -configure:3227: checking for unistd.h -configure:3227: gcc -c -g -O2 conftest.c >&5 -configure:3227: $? = 0 -configure:3227: result: yes -configure:3241: checking readline/readline.h usability -configure:3241: gcc -c -g -O2 conftest.c >&5 -configure:3241: $? = 0 -configure:3241: result: yes -configure:3241: checking readline/readline.h presence -configure:3241: gcc -E conftest.c -configure:3241: $? = 0 -configure:3241: result: yes -configure:3241: checking for readline/readline.h -configure:3241: result: yes -configure:3250: checking for GNU Readline version -configure:3271: result: -1 -configure:3280: checking for GNU Readline library -lreadline.dll -configure:3304: gcc -o conftest -g -O2 conftest.c -lreadline.dll >&5 -/usr/bin/ld: cannot find -lreadline.dll -collect2: error: ld returned 1 exit status -configure:3304: $? = 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. */ -| -| /* includes */ -| #include <stdio.h> -| #include <readline/readline.h> -| -| int -| main () -| { -| -| /* function-body */ -| int dummy = rl_completion_append_character; /* rl_completion_append_character appeared in version 2.1 */ -| readline(NULL); -| -| ; -| return 0; -| } -configure:3313: result: no -configure:3280: checking for GNU Readline library -lreadline -configure:3304: gcc -o conftest -g -O2 conftest.c -lreadline >&5 -configure:3304: $? = 0 -configure:3307: result: yes -configure:3385: checking for gcc -configure:3412: result: gcc -configure:3641: checking for C compiler version -configure:3650: 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:3661: $? = 0 -configure:3650: 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:3661: $? = 0 -configure:3650: gcc -V >&5 -gcc: error: unrecognized command line option '-V' -gcc: fatal error: no input files -compilation terminated. -configure:3661: $? = 1 -configure:3650: gcc -qversion >&5 -gcc: error: unrecognized command line option '-qversion'; did you mean '--version'? -gcc: fatal error: no input files -compilation terminated. -configure:3661: $? = 1 -configure:3665: checking whether we are using the GNU C compiler -configure:3693: result: yes -configure:3702: checking whether gcc accepts -g -configure:3763: result: yes -configure:3780: checking for gcc option to accept ISO C89 -configure:3856: result: none needed -configure:3881: checking how to run the C preprocessor -configure:3951: result: gcc -E -configure:3971: gcc -E conftest.c -configure:3971: $? = 0 -configure:3985: gcc -E conftest.c -conftest.c:20:10: fatal error: ac_nonexistent.h: No such file or directory - #include <ac_nonexistent.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:3985: $? = 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 HAVE_LIBREADLINE -1 -| /* end confdefs.h. */ -| #include <ac_nonexistent.h> -configure:4056: checking for a BSD-compatible install -configure:4124: result: /usr/bin/install -c -configure:4178: checking for ranlib -configure:4194: found /usr/bin/ranlib -configure:4205: result: ranlib -configure:4229: checking for autoconf -configure:4245: found /usr/bin/autoconf -configure:4257: result: autoconf -configure:4267: checking for strip -configure:4283: found /usr/bin/strip -configure:4295: result: strip -configure:4305: checking for as -configure:4321: found /usr/bin/as -configure:4333: result: as -configure:4343: checking for cp -configure:4359: found /bin/cp -configure:4371: result: cp -configure:4402: checking for unistd.h -configure:4402: result: yes -configure:4402: checking sys/wait.h usability -configure:4402: gcc -c -g -O2 conftest.c >&5 -configure:4402: $? = 0 -configure:4402: result: yes -configure:4402: checking sys/wait.h presence -configure:4402: gcc -E conftest.c -configure:4402: $? = 0 -configure:4402: result: yes -configure:4402: checking for sys/wait.h -configure:4402: result: yes -configure:4415: checking sys/socket.h usability -configure:4415: gcc -c -g -O2 conftest.c >&5 -configure:4415: $? = 0 -configure:4415: result: yes -configure:4415: checking sys/socket.h presence -configure:4415: gcc -E conftest.c -configure:4415: $? = 0 -configure:4415: result: yes -configure:4415: checking for sys/socket.h -configure:4415: result: yes -configure:4445: checking for socket in -lsocket -configure:4470: gcc -o conftest -g -O2 conftest.c -lsocket >&5 -/usr/bin/ld: cannot find -lsocket -collect2: error: ld returned 1 exit status -configure:4470: $? = 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 HAVE_LIBREADLINE -1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_WAIT_H 1 -| #define HAVE_SYS_SOCKET_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 socket (); -| int -| main () -| { -| return socket (); -| ; -| return 0; -| } -configure:4479: result: no -configure:4490: checking for xdr_short in -lnsl -configure:4515: gcc -o conftest -g -O2 conftest.c -lnsl >&5 -configure:4515: $? = 0 -configure:4524: result: yes -configure:4588: checking whether preprocessor accepts -MM or -M -Using built-in specs. -COLLECT_GCC=gcc -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) -COLLECT_GCC_OPTIONS='-E' '-v' '-MM' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -E -quiet -v -imultiarch x86_64-linux-gnu -MM _test_.c -mtune=generic -march=x86-64 -fstack-protector-strong -Wformat -Wformat-security -ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/lib/gcc/x86_64-linux-gnu/7/include - /usr/local/include - /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -_test_.o: _test_.c -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-E' '-v' '-MM' '-mtune=generic' '-march=x86-64' -configure:4603: result: -MM -configure:4609: checking whether accepts -ggdb -configure:4629: gcc -c -ggdb conftest.c >&5 -configure:4629: $? = 0 -configure:4637: result: yes -configure:4647: checking whether accepts -pipe -configure:4667: gcc -c -pipe conftest.c >&5 -configure:4667: $? = 0 -configure:4675: result: yes -configure:4731: checking for gcc option to accept ISO C99 -configure:4880: gcc -c -pipe -ggdb -g -O2 conftest.c >&5 -configure:4880: $? = 0 -configure:4893: result: none needed -configure:5122: 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:821: creating Makefile -config.status:821: creating config.h -config.status:996: 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_lib_dir_suffix_set= -ac_cv_env_lib_dir_suffix_value= -ac_cv_env_sdccconf_h_dir_separator_set= -ac_cv_env_sdccconf_h_dir_separator_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_readline_readline_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_socket_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_lib_nsl_xdr_short=yes -ac_cv_lib_socket_socket=no -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_AS=as -ac_cv_prog_AUTOCONF=autoconf -ac_cv_prog_CP=cp -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 -bor_cv_c_ggdb=yes -bor_cv_c_pipe=yes -sdcc_cv_MM=-MM -wi_cv_lib_readline=yes - -## ----------------- ## -## Output variables. ## -## ----------------- ## - -AS='as' -AUTOCONF='autoconf' -C99_FLAG='--std=c99' -CC='gcc' -CFLAGS=' -pipe -ggdb -g -O2' -CP='cp' -CPP='gcc -E' -CPPFLAGS='' -DEFS='-DHAVE_CONFIG_H' -ECHO_C='' -ECHO_N='-n' -ECHO_T='' -EGREP='/bin/grep -E' -EXEEXT='' -GREP='/bin/grep' -INSTALL_DATA='${INSTALL} -m 644' -INSTALL_PROGRAM='${INSTALL}' -INSTALL_SCRIPT='${INSTALL}' -LDFLAGS='' -LIBOBJS='' -LIBREADLINE='-lreadline' -LIBS='-lnsl ' -LTLIBOBJS='' -MAKEDEP='gcc -MM' -OBJEXT='o' -PACKAGE_BUGREPORT='' -PACKAGE_NAME='' -PACKAGE_STRING='' -PACKAGE_TARNAME='' -PACKAGE_URL='' -PACKAGE_VERSION='' -PATH_SEPARATOR=':' -RANLIB='ranlib' -SHELL='/bin/bash' -STRIP='strip' -WALL_FLAG='-Wall' -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' -lib_dir_suffix='sdcc/lib' -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' -sdccconf_h_dir_separator='/' -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 HAVE_LIBREADLINE -1 -#define HAVE_UNISTD_H 1 -#define HAVE_SYS_WAIT_H 1 -#define HAVE_SYS_SOCKET_H 1 -#define HAVE_LIBNSL 1 -#define DIR_SEPARATOR_STRING "/" -#define DATADIR "/usr/local/share" -#define LIB_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/lib" - -configure: exit 0 diff --git a/debugger/mcs51/config.status b/debugger/mcs51/config.status deleted file mode 100755 index ceb8eb0..0000000 --- a/debugger/mcs51/config.status +++ /dev/null @@ -1,1016 +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" - -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' '--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/debugger/mcs51' -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=`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 - - -# 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" ;; - "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["lib_dir_suffix"]="sdcc/lib" -S["sdccconf_h_dir_separator"]="/" -S["C99_FLAG"]="--std=c99" -S["WALL_FLAG"]="-Wall" -S["MAKEDEP"]="gcc -MM" -S["CP"]="cp" -S["AS"]="as" -S["STRIP"]="strip" -S["AUTOCONF"]="autoconf" -S["RANLIB"]="ranlib" -S["INSTALL_DATA"]="${INSTALL} -m 644" -S["INSTALL_SCRIPT"]="${INSTALL}" -S["INSTALL_PROGRAM"]="${INSTALL}" -S["LIBREADLINE"]="-lreadline" -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"]=" -pipe -ggdb -g -O2" -S["CC"]="gcc" -S["target_alias"]="" -S["host_alias"]="" -S["build_alias"]="" -S["LIBS"]="-lnsl " -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["HAVE_LIBREADLINE"]=" -1" -D["HAVE_UNISTD_H"]=" 1" -D["HAVE_SYS_WAIT_H"]=" 1" -D["HAVE_SYS_SOCKET_H"]=" 1" -D["HAVE_LIBNSL"]=" 1" -D["DIR_SEPARATOR_STRING"]=" \"/\"" -D["DATADIR"]=" \"/usr/local/share\"" -D["LIB_DIR_SUFFIX"]=" DIR_SEPARATOR_STRING \"sdcc/lib\"" - 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 - # - - 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[ ]*=[ ]*/{ -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 -s&@INSTALL@&$ac_INSTALL&;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/device/include/Makefile b/device/include/Makefile deleted file mode 100644 index 7b28326..0000000 --- a/device/include/Makefile +++ /dev/null @@ -1,159 +0,0 @@ -# -# -# - -VERSION = 0.0.0 -VERSIONHI = 0 -VERSIONLO = 0 -VERSIONP = 0 - -SHELL = /bin/sh -CPP = gcc -E -INSTALL = /usr/bin/install -c -CP = cp - -top_builddir = ../.. -top_srcdir = ../.. - -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -inclibdir = @inclibdir@ -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = ${datarootdir}/info - -srcdir = . - -include_dir_suffix = sdcc/include -inclib_dir_suffix = sdcc - -sdcc_includedir = $(DESTDIR)$(datadir)/$(include_dir_suffix) -sdcc_inclibdir = $(DESTDIR)$(datadir)/$(inclib_dir_suffix) - -CPPFLAGS = -I$(top_builddir) - - -# Compiling entire program or any subproject -# ------------------------------------------ -all: - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(CP) -r $(srcdir)/asm $(srcdir)/*.h $(sdcc_includedir) - for target in mcs51 ds390 pic14 pic16 z80 hc08 stm8; \ - do \ - if [ "`grep $${target} $(top_builddir)/ports.build`" = "$${target}" ]; \ - then \ - for mask in '*.h' '*.inc' '*.txt'; \ - do \ - if `ls $(srcdir)/$${target}/$${mask} > /dev/null 2>&1`; \ - then \ - $(CP) $(srcdir)/$${target}/$${mask} $(sdcc_includedir)/$${target}/; \ - fi; \ - done; \ - fi; \ - done; - # z80 family: z180, r2k, r3ka, gbz80, and tlcs90 - if [ "`grep z80 $(top_builddir)/ports.build`" = "z80" ]; \ - then \ - for target in z180 r2k gbz80 r3ka tlcs90; \ - do \ - for mask in '*.h' '*.inc' '*.txt'; \ - do \ - if `ls $(srcdir)/$${target}/$${mask} > /dev/null 2>&1`; \ - then \ - $(CP) $(srcdir)/$${target}/$${mask} $(sdcc_includedir)/$${target}/; \ - fi; \ - done; \ - done; \ - fi - # ds390 family: ds400 - if [ "`grep ds390 $(top_builddir)/ports.build`" = "ds390" ]; \ - then \ - for target in ds400; \ - do \ - for mask in '*.h' '*.inc' '*.txt'; \ - do \ - if `ls $(srcdir)/$${target}/$${mask} > /dev/null 2>&1`; \ - then \ - $(CP) $(srcdir)/$${target}/$${mask} $(sdcc_includedir)/$${target}/; \ - fi; \ - done; \ - done; \ - fi - # 6808 family: s08 - if [ "`grep hc08 $(top_builddir)/ports.build`" = "hc08" ]; \ - then \ - for target in s08; \ - do \ - for mask in '*.h' '*.inc' '*.txt'; \ - do \ - if `ls $(srcdir)/$${target}/$${mask} > /dev/null 2>&1`; \ - then \ - $(CP) $(srcdir)/$${target}/$${mask} $(sdcc_includedir)/$${target}/; \ - fi; \ - done; \ - done; \ - fi - find $(sdcc_includedir) -type d -name '.svn' -exec rm -rf {} \; - # correct file modes - find $(sdcc_includedir) -type f -exec chmod 644 {} \; - - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -rf $(sdcc_includedir) - rm -rf $(sdcc_inclibdir) - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - mkdir -p $(sdcc_includedir) - for target in mcs51 ds390 ds400 pic14 pic16 z80 z180 gbz80 hc08; \ - do \ - if [ -d $(srcdir)/$${target} ]; \ - then \ - mkdir -p $(sdcc_includedir)/$${target}; \ - fi; \ - done - - -# Creating dependencies -# --------------------- -dep: - -include $(srcdir)/clean.mk - -# My rules -# -------- - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; \ - then \ - $(MAKE) -f $(srcdir)/conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" \ - freshconf; \ - fi - -# End of main_in.mk/main.mk diff --git a/device/lib/Makefile b/device/lib/Makefile deleted file mode 100644 index fb66ca7..0000000 --- a/device/lib/Makefile +++ /dev/null @@ -1,675 +0,0 @@ -# -# -# - -VERSION = 3.9.3 -VERSIONHI = 3 -VERSIONLO = 9 -VERSIONP = 3 - -SHELL = /bin/sh -INSTALL = /usr/bin/install -c -CP = cp - -LIB_TYPE = RANLIB - -ifeq ($(shell uname -s),Linux) -CP_U = $(CP) -u -else -CP_U = $(CP) -endif - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -INCDIR = $(top_srcdir)/device/include -ifndef PORTINCDIR -PORTINCDIR = $(INCDIR)/mcs51 -endif - -CC = $(top_builddir)/bin/sdcc -# The predefined macros reflect what SDCC predefines (so we don't get any errors when generating Makefile.dep). -CPP = $(top_builddir)/bin/sdcpp -D__STDC_ISO_10646__=201409L -D__STDC_UTF_16__=1 -D__STDC_UTF_32__=1 - -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = ${datarootdir}/info - -lib_dir_suffix = sdcc/lib - -sdcc_libdir = $(DESTDIR)$(datadir)/$(lib_dir_suffix) - -CPPFLAGS = -I$(INCDIR) -I$(PORTINCDIR) -CFLAGS = $(MODELFLAGS) --nostdinc --std-c11 - -BUILDDIR = build -# Default -PORT = z80 -ifndef PORTDIR -PORTDIR = $(BUILDDIR)/$(PORT) -endif - -OPT_DISABLE_AVR = 1 -OPT_DISABLE_DS390 = 0 -OPT_DISABLE_DS400 = 0 -OPT_DISABLE_HC08 = 0 -OPT_DISABLE_S08 = 0 -OPT_DISABLE_MCS51 = 0 -OPT_DISABLE_PIC14 = 0 -OPT_DISABLE_PIC16 = 0 -OPT_DISABLE_XA51 = @OPT_DISABLE_XA51@ -OPT_DISABLE_Z80 = 0 -OPT_DISABLE_Z180 = 0 -OPT_DISABLE_EZ80_Z80 = 0 -OPT_DISABLE_R2K = 0 -OPT_DISABLE_R3KA = 0 -OPT_DISABLE_TLCS90 = 0 -OPT_DISABLE_GBZ80 = 0 -OPT_DISABLE_STM8 = 0 -OPT_DISABLE_PDK13 = 0 -OPT_DISABLE_PDK14 = 0 -OPT_DISABLE_PDK15 = 0 - -SOURCES_FLOAT = $(COMMON_FLOAT) \ - _fscmp.c \ - _fsget1arg.c \ - _fsget2args.c \ - _fsnormalize.c \ - _fsreturnval.c \ - _fsrshift.c \ - _fsswapargs.c \ - _logexpf.c - -SOURCES_INT = $(COMMON_INT) \ - _divsint.c \ - _divuint.c \ - _modsint.c \ - _moduint.c \ - _mulint.c - -SOURCES_LONG = $(COMMON_LONG) \ - _divulong.c \ - _mullong.c - -SOURCES_LONGLONG = $(COMMON_LONGLONG) \ - _rrulonglong.c \ - _rrslonglong.c \ - _rlulonglong.c \ - _rlslonglong.c \ - _mullonglong.c \ - _divslonglong.c \ - _divulonglong.c \ - _modslonglong.c \ - _modulonglong.c - -SOURCES_SDCC = $(COMMON_SDCC) \ - _autobaud.c \ - _bp.c \ - _decdptr.c \ - _gptrget.c \ - _gptrgetc.c \ - _gptrput.c \ - _ser.c \ - _setjmp.c \ - serial.c \ - _itoa.c \ - _ltoa.c \ - _spx.c \ - _startup.c \ - _strcmp.c \ - _strlen.c \ - __memcpy.c \ - memcpy.c \ - _memmove.c \ - _strcpy.c \ - _heap.c \ - sprintf.c \ - vprintf.c \ - printf_fast.c \ - printf_fast_f.c \ - printf_tiny.c \ - printfl.c \ - bpx.c - -SOURCES = $(SOURCES_FLOAT) $(SOURCES_INT) $(SOURCES_LONG) $(SOURCES_LONGLONG) $(SOURCES_SDCC) - -OBJECTS_FLOAT = $(SOURCES_FLOAT:%.c=$(PORT)/%.rel) -OBJECTS_INT = $(SOURCES_INT:%.c=$(PORT)/%.rel) -OBJECTS_LONG = $(SOURCES_LONG:%.c=$(PORT)/%.rel) -OBJECTS_LONGLONG = $(SOURCES_LONGLONG:%.c=$(PORT)/%.rel) -OBJECTS_SDCC = $(SOURCES_SDCC:%.c=$(PORT)/%.rel) - -OBJECTS = $(OBJECTS_FLOAT) $(OBJECTS_INT) $(OBJECTS_LONG) $(OBJECTS_LONGLONG) $(OBJECTS_SDCC) - -XA51_FLOAT = $(COMMON_FLOAT) - -XA51_INT = $(COMMON_INT) \ - _divsint.c \ - _divuint.c \ - _modsint.c \ - _moduint.c \ - _mulint.c - -XA51_LONG = $(COMMON_LONG) \ - _divulong.c \ - _mullong.c - -XA51_SDCC = $(COMMON_SDCC) \ - _memmove.c \ - _strlen.c \ - _heap.c - -XA51SOURCES = $(XA51_FLOAT) $(XA51_INT) $(XA51_LONG) $(XA51_SDCC) -XA51OBJECTS = $(XA51SOURCES:%.c=$(PORT)/%.rel) - -LIB_FILES = $(PORTDIR)/libfloat.lib $(PORTDIR)/libint.lib $(PORTDIR)/liblong.lib $(PORTDIR)/liblonglong.lib $(PORTDIR)/libsdcc.lib - -OEXT = .rel - -include $(srcdir)/incl.mk - -ifeq ($(OPT_DISABLE_DS390), 0) -TARGETS += model-ds390 -endif - -ifeq ($(OPT_DISABLE_DS400), 0) -TARGETS += model-ds400 -endif - -ifeq ($(OPT_DISABLE_HC08), 0) -TARGETS += model-hc08 -endif - -ifeq ($(OPT_DISABLE_S08), 0) -TARGETS += model-s08 -endif - -ifeq ($(OPT_DISABLE_MCS51), 0) -TARGETS += models small-mcs51-stack-auto large-mcs51-stack-auto -endif - -ifeq ($(OPT_DISABLE_PIC14), 0) -TARGETS += model-pic14 -endif - -ifeq ($(OPT_DISABLE_PIC16), 0) -TARGETS += model-pic16 -endif - -ifeq ($(OPT_DISABLE_Z80), 0) -TARGETS += model-z80 -endif - -ifeq ($(OPT_DISABLE_Z180), 0) -TARGETS += model-z180 -endif - -ifeq ($(OPT_DISABLE_EZ80_Z80), 0) -TARGETS += model-ez80_z80 -endif - -ifeq ($(OPT_DISABLE_R2K), 0) -TARGETS += model-r2k -endif - -ifeq ($(OPT_DISABLE_R3KA), 0) -TARGETS += model-r3ka -endif - -ifeq ($(OPT_DISABLE_TLCS90), 0) -TARGETS += model-tlcs90 -endif - -ifeq ($(OPT_DISABLE_GBZ80), 0) -TARGETS += model-gbz80 -endif - -ifeq ($(OPT_DISABLE_STM8), 0) -TARGETS += model-stm8 -TARGETS += model-stm8-large -endif - -ifeq ($(OPT_DISABLE_PDK13), 0) -TARGETS += model-pdk13 -endif - -ifeq ($(OPT_DISABLE_PDK14), 0) -TARGETS += model-pdk14 -endif - -ifeq ($(OPT_DISABLE_PDK15), 0) -TARGETS += model-pdk15 -endif - -# Compiling entire program or any subproject -# ------------------------------------------ -all: - $(MAKE) checkconf -ifneq ($(TARGETS), ) - $(MAKE) $(TARGETS) -endif - -objects: - $(MAKE) build-dir - $(MAKE) $(OBJECTS) - $(MAKE) port-specific-objects - $(MAKE) $(LIB_FILES) - $(MAKE) clean_intermediate - -models: - if grep '^mcs51$$' $(top_builddir)/ports.build > /dev/null; then \ - for model in $(MODELS); do \ - $(MAKE) MODELFLAGS="--model-$$model" PORT=$$model PORTINCDIR=$(INCDIR)/mcs51 objects; \ - done \ - fi - -small-mcs51-stack-auto: - if grep '^mcs51$$' $(top_builddir)/ports.build > /dev/null; then \ - mkdir -p small-stack-auto; cp small/Makefile small-stack-auto; \ - $(MAKE) MODELFLAGS="--model-small --stack-auto" PORT=small-stack-auto PORTDIR=$(BUILDDIR)/small-stack-auto PORTINCDIR=$(INCDIR)/mcs51 objects; \ - fi - -large-mcs51-stack-auto: - if grep '^mcs51$$' $(top_builddir)/ports.build > /dev/null; then \ - mkdir -p large-stack-auto; cp small/Makefile large-stack-auto; \ - $(MAKE) MODELFLAGS="--model-large --stack-auto" PORT=large-stack-auto PORTDIR=$(BUILDDIR)/large-stack-auto PORTINCDIR=$(INCDIR)/mcs51 objects; \ - fi - -model-mcs51-stack-auto: - if grep '^mcs51$$' $(top_builddir)/ports.build > /dev/null; then \ - for model in $(MODELS); do \ - mkdir -p $${model}-stack-auto; cp $${model}/Makefile $${model}-stack-auto; \ - $(MAKE) MODELFLAGS="--model-$$model --stack-auto" PORT=$${model}-stack-auto PORTDIR=$(BUILDDIR)/$${model}-stack-auto PORTINCDIR=$(INCDIR)/mcs51 objects; \ - done \ - fi - -model-mcs51-xstack-auto: - if grep '^mcs51$$' $(top_builddir)/ports.build > /dev/null; then \ - for model in $(MODELS); do \ - mkdir -p $${model}-xstack-auto; cp $${model}/Makefile $${model}-xstack-auto; \ - $(MAKE) MODELFLAGS="--model-$$model --stack-auto --xstack" PORT=$${model}-xstack-auto PORTDIR=$(BUILDDIR)/$${model}-xstack-auto PORTINCDIR=$(INCDIR)/mcs51 objects; \ - done \ - fi - -model-ds390: - if grep '^ds390$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mds390" PORT=ds390 PORTINCDIR=$(INCDIR)/mcs51 objects; \ - fi - -model-ds400: - if grep '^ds390$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mds400" PORT=ds400 PORTINCDIR=$(INCDIR)/mcs51 objects; \ - fi - -model-xa51: - if grep '^xa51$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mxa51" PORT=xa51 objects-xa51; \ - fi - -objects-xa51: - $(MAKE) build-dir - $(MAKE) $(XA51OBJECTS) - $(MAKE) port-specific-objects - -$(PORTDIR)/lib$(PORT).lib: $(XA51OBJECTS) -ifeq ($(LIB_TYPE), SDCCLIB) - $(top_builddir)/bin/sdcclib -a $(PORTDIR)/lib$(PORT).lib $(XA51OBJECTS) -else - ifeq ($(LIB_TYPE), AR) - $(top_builddir)/bin/sdar -rcSD $(PORTDIR)/lib$(PORT).lib $(XA51OBJECTS) - else - ifeq ($(LIB_TYPE), RANLIB) - $(top_builddir)/bin/sdar -rcD $(PORTDIR)/lib$(PORT).lib $(XA51OBJECTS) - else - rm -f $(PORTDIR)/lib$(PORT).lib - for i in $(notdir $(basename $(XA51OBJECTS))); do echo $$i >> $(PORTDIR)/lib$(PORT).lib; done - cp $(XA51OBJECTS) $(PORTDIR) - endif - endif -endif - -model-z80: - if grep '^z80$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mz80" PORT=z80 objects-z80 OEXT=.o; \ - fi - -model-z180: - if grep '^z80$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mz180" PORT=z180 objects-z80 OEXT=.o; \ - fi - -model-ez80_z80: - if grep '^z80$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mez80_z80" PORT=ez80_z80 objects-z80 OEXT=.o; \ - fi - -model-r2k: - if grep '^z80$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mr2k" PORT=r2k objects-z80 OEXT=.o; \ - fi - -model-r3ka: - if grep '^z80$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mr3ka" PORT=r3ka objects-z80 OEXT=.o; \ - fi - -model-tlcs90: - if grep '^z80$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mtlcs90" PORT=tlcs90 objects-z80 OEXT=.o; \ - fi - -model-gbz80: - if grep '^z80$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mgbz80" PORT=gbz80 objects-z80 OEXT=.o; \ - fi - -objects-z80: - $(MAKE) build-dir - $(MAKE) port-specific-objects - $(MAKE) clean_intermediate - -model-hc08: - if grep '^hc08$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mhc08" PORT=hc08 objects-hc08; \ - fi - -model-s08: - if grep '^hc08$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-ms08" PORT=s08 objects-hc08; \ - fi - -objects-hc08: - $(MAKE) build-dir - $(MAKE) port-specific-objects - $(MAKE) clean_intermediate - -model-stm8: - if grep '^stm8$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mstm8" PORT=stm8 objects-stm8; \ - fi - -objects-stm8: - $(MAKE) build-dir - $(MAKE) port-specific-objects - $(MAKE) clean_intermediate - -model-stm8-large: - if grep '^stm8$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mstm8 --model-large" PORT=stm8-large objects-stm8; \ - fi - -objects-stm8-large: - $(MAKE) build-dir - $(MAKE) port-specific-objects - $(MAKE) clean_intermediate - -model-pdk13: - if grep '^pdk$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mpdk13" PORT=pdk13 objects-pdk13; \ - fi - -objects-pdk13: - $(MAKE) build-dir - $(MAKE) port-specific-objects - $(MAKE) clean_intermediate - -model-pdk14: - if grep '^pdk$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mpdk14" PORT=pdk14 objects-pdk14; \ - fi - -objects-pdk14: - $(MAKE) build-dir - $(MAKE) port-specific-objects - $(MAKE) clean_intermediate - -model-pdk15: - if grep '^pdk$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) MODELFLAGS="-mpdk15" PORT=pdk15 objects-pdk15; \ - fi - -objects-pdk15: - $(MAKE) build-dir - $(MAKE) port-specific-objects - $(MAKE) clean_intermediate - -model-pic16: - if grep '^pic16$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) PORT=pic16 objects-pic16; \ - fi - -objects-pic16: - $(MAKE) build-dir - $(MAKE) port-specific-objects-pic16 - $(MAKE) clean_intermediate-pic16 - -model-pic14: - if grep '^pic14$$' $(top_builddir)/ports.build > /dev/null; then \ - $(MAKE) PORT=pic14 objects-pic14; \ - fi - -objects-pic14: - $(MAKE) build-dir - $(MAKE) port-specific-objects-pic14 - $(MAKE) clean_intermediate-pic14 - -build-dir: - $(MAKE) $(PORTDIR) - $(MAKE) $(PORT) - -$(PORTDIR): - mkdir -p $(PORTDIR) - -$(PORT): - mkdir -p $(PORT) - -port-specific-objects: - -if [ -f $(PORT)/Makefile ]; then \ - $(MAKE) -C $(PORT) PORT=$(PORT); \ - fi - -port-specific-objects-pic16: - -if [ -f $(PORT)/Makefile ]; then \ - $(MAKE) -C $(PORT); \ - for i in $(PORT)/*/lib*.a; do cp -f $$i $(PORTDIR)/`basename $$i .a`.lib; done; \ - cp -f $(PORT)/*/crt0*.o $(PORTDIR); \ - fi - -port-specific-objects-pic14: - -if [ -f $(PORT)/Makefile ]; then \ - $(MAKE) -C $(PORT); \ - find $(PORT) -name 'lib*.a' | while read i; do \ - cp -f "$$i" $(PORTDIR)/`basename "$$i" .a`.lib; \ - done; \ - fi - -ifeq ($(LIB_TYPE), SDCCLIB) - -$(PORTDIR)/libfloat.lib: $(OBJECTS_FLOAT) - $(top_builddir)/bin/sdcclib -a $(PORTDIR)/libfloat.lib $(OBJECTS_FLOAT) - -$(PORTDIR)/libint.lib: $(OBJECTS_INT) - $(top_builddir)/bin/sdcclib -a $(PORTDIR)/libint.lib $(OBJECTS_INT) - -$(PORTDIR)/liblong.lib: $(OBJECTS_LONG) - $(top_builddir)/bin/sdcclib -a $(PORTDIR)/liblong.lib $(OBJECTS_LONG) - -$(PORTDIR)/liblonglong.lib: $(OBJECTS_LONGLONG) - $(top_builddir)/bin/sdcclib -a $(PORTDIR)/liblonglong.lib $(OBJECTS_LONGLONG) - -$(PORTDIR)/libsdcc.lib: $(OBJECTS_SDCC) - $(top_builddir)/bin/sdcclib -a $(PORTDIR)/libsdcc.lib $(OBJECTS_SDCC) - -else - ifeq ($(LIB_TYPE), AR) - -$(PORTDIR)/libfloat.lib: $(OBJECTS_FLOAT) - $(top_builddir)/bin/sdar -rcSD $(PORTDIR)/libfloat.lib $(OBJECTS_FLOAT) - -$(PORTDIR)/libint.lib: $(OBJECTS_INT) - $(top_builddir)/bin/sdar -rcSD $(PORTDIR)/libint.lib $(OBJECTS_INT) - -$(PORTDIR)/liblong.lib: $(OBJECTS_LONG) - $(top_builddir)/bin/sdar -rcSD $(PORTDIR)/liblong.lib $(OBJECTS_LONG) - -$(PORTDIR)/liblonglong.lib: $(OBJECTS_LONGLONG) - $(top_builddir)/bin/sdar -rcSD $(PORTDIR)/liblonglong.lib $(OBJECTS_LONGLONG) - -$(PORTDIR)/libsdcc.lib: $(OBJECTS_SDCC) - $(top_builddir)/bin/sdar -rcSD $(PORTDIR)/libsdcc.lib $(OBJECTS_SDCC) - - else - ifeq ($(LIB_TYPE), RANLIB) - -$(PORTDIR)/libfloat.lib: $(OBJECTS_FLOAT) - $(top_builddir)/bin/sdar -rcD $(PORTDIR)/libfloat.lib $(OBJECTS_FLOAT) - -$(PORTDIR)/libint.lib: $(OBJECTS_INT) - $(top_builddir)/bin/sdar -rcD $(PORTDIR)/libint.lib $(OBJECTS_INT) - -$(PORTDIR)/liblong.lib: $(OBJECTS_LONG) - $(top_builddir)/bin/sdar -rcD $(PORTDIR)/liblong.lib $(OBJECTS_LONG) - -$(PORTDIR)/liblonglong.lib: $(OBJECTS_LONGLONG) - $(top_builddir)/bin/sdar -rcD $(PORTDIR)/liblonglong.lib $(OBJECTS_LONGLONG) - -$(PORTDIR)/libsdcc.lib: $(OBJECTS_SDCC) - $(top_builddir)/bin/sdar -rcD $(PORTDIR)/libsdcc.lib $(OBJECTS_SDCC) - - else - -$(PORTDIR)/libfloat.lib: $(OBJECTS_FLOAT) - rm -f $(PORTDIR)/libfloat.lib - for i in $(notdir $(basename $(OBJECTS_FLOAT))); do echo $$i >> $(PORTDIR)/libfloat.lib; done - cp $(OBJECTS_FLOAT) $(PORTDIR) - -$(PORTDIR)/libint.lib: $(OBJECTS_INT) - rm -f $(PORTDIR)/libint.lib - for i in $(notdir $(basename $(OBJECTS_INT))); do echo $$i >> $(PORTDIR)/libint.lib; done - cp $(OBJECTS_INT) $(PORTDIR) - -$(PORTDIR)/liblong.lib: $(OBJECTS_LONG) - rm -f $(PORTDIR)/liblong.lib - for i in $(notdir $(basename $(OBJECTS_LONG))); do echo $$i >> $(PORTDIR)/liblong.lib; done - cp $(OBJECTS_LONG) $(PORTDIR) - -$(PORTDIR)/liblonglong.lib: $(OBJECTS_LONGLONG) - rm -f $(PORTDIR)/liblonglong.lib - for i in $(notdir $(basename $(OBJECTS_LONGLONG))); do echo $$i >> $(PORTDIR)/liblonglong.lib; done - cp $(OBJECTS_LONGLONG) $(PORTDIR) - -$(PORTDIR)/libsdcc.lib: $(OBJECTS_SDCC) - rm -f $(PORTDIR)/libsdcc.lib - for i in $(notdir $(basename $(OBJECTS_SDCC))); do echo $$i >> $(PORTDIR)/libsdcc.lib; done - cp $(OBJECTS_SDCC) $(PORTDIR) - - endif - endif -endif - -clean_intermediate: - rm -f $(PORTDIR)/*.lst $(PORTDIR)/*.sym - -clean_intermediate-pic16: - $(MAKE) -C $(PORT) clean-intermediate - -clean_intermediate-pic14: - $(MAKE) -C $(PORT) clean-intermediate - -# Compiling and installing everything and runing test -# --------------------------------------------------- -install: all installdirs - [ ! -d "$(BUILDDIR)" ] || $(CP_U) -r $(BUILDDIR)/* $(sdcc_libdir) - $(CP_U) -r $(MODELS) $(srcdir)/mcs51 $(srcdir)/ds390 $(srcdir)/ds400 \ - $(srcdir)/z80 $(srcdir)/z180 $(srcdir)/ez80_z80 $(srcdir)/r2k $(srcdir)/r3ka $(srcdir)/tlcs90 $(srcdir)/gbz80 \ - $(srcdir)/hc08 $(srcdir)/s08 \ - $(srcdir)/stm8 \ - $(srcdir)/pdk13 $(srcdir)/pdk14 $(srcdir)/pdk15 \ - $(srcdir)/pic14 $(srcdir)/pic16 $(srcdir)/*.c $(sdcc_libdir)/src - $(CP_U) -r $(MODELS) mcs51 ds390 ds400 z80 z180 ez80_z80 r2k r3ka tlcs90 gbz80 hc08 s08 stm8 pdk13 pdk14 pdk15 $(sdcc_libdir)/src - - for src in $(MODELS) ds390 ds400 z80 z180 ez80_z80 r2k r3ka tlcs90 gbz80 hc08 s08 stm8 pdk13 pdk14 pdk15 pic14 pic16; do \ - find $(sdcc_libdir)/src/$$src -depth \ - \( -name '*.rel' -o -name '*.dump*' -o -name '*.sym' -o -name '*.o' -o -name '*.lib' -o \ - -name '*.lst' -o -name '*.asm' -o -name '.svn' -o -name 'autom4te.cache' -o \ - -name 'build' -o -name 'bin' -o -name 'Makefile*' -o -name 'config*' -o \ - -name 'depcomp' -o -name 'missing' -o -name 'install-sh' -o \ - -name 'bootstrap.sh' \) \ - -exec rm -rf {} + ; \ - done - find $(sdcc_libdir)/src/mcs51 -depth \ - \( -name '*.rel' -o -name '*.dump*' -o -name '*.sym' -o -name '*.o' -o -name '*.lib' -o \ - -name '*.lst' -o -name '.svn' -o -name 'build' -o -name 'bin' -o \ - -name 'Makefile*' \) \ - -exec rm -rf {} + - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -rf $(sdcc_libdir) - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - for model in $(MODELS); do \ - mkdir -p $(sdcc_libdir)/$$model; \ - done - for libdir in small-stack-auto ds390 ds400 hc08 s08 pic16 pic14; do \ - mkdir -p $(sdcc_libdir)/$$libdir; \ - done - mkdir -p $(sdcc_libdir)/src - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(SOURCES) $(INCDIR)/*.h $(PORTINCDIR)/*.h - rm -f Makefile.dep - for i in $(filter %.c,$^); do \ - $(CPP) -std=c11 -M $(CPPFLAGS) $$i >$${i}.dep; \ - cat $${i}.dep >>Makefile.dep; \ - rm $${i}.dep; \ - done - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs checkconf \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- - -.SUFFIXES: .rel .o - -$(PORT)/%$(OEXT): %.c - $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f $(srcdir)/conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" \ - freshconf;\ - fi - -# End of main_in.mk/main.mk diff --git a/device/lib/pic14/.checkdevices/check.lst b/device/lib/pic14/.checkdevices/check.lst deleted file mode 100644 index f3f1dd7..0000000 --- a/device/lib/pic14/.checkdevices/check.lst +++ /dev/null @@ -1,2105 +0,0 @@ -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 1 - - -LOC OBJECT CODE LINE SOURCE TEXT - VALUE - - 00001 include "p16f1788.inc" - 00001 LIST - 00002 - 00003 ;========================================================================== - 00004 ; Build date : Aug 07 2014 - 00005 ; MPASM PIC16F1788 processor include - 00006 ; - 00007 ; (c) Copyright 1999-2014 Microchip Technology, All rights reserved - 00008 ;========================================================================== - 00009 - 03036 LIST - 00002 CODE -0000 3104 00003 ADDFSR FSR0, 4 -0001 0012 00004 MOVIW FSR0++ - 00005 END -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 2 - - -SYMBOL TABLE - LABEL VALUE - -ABDEN 00000000 -ABDOVF 00000007 -ACKDT 00000005 -ACKEN 00000004 -ACKSTAT 00000006 -ACKTIM 00000007 -ADCON0 0000009D -ADCON1 0000009E -ADCON2 0000009F -ADCS0 00000004 -ADCS1 00000005 -ADCS2 00000006 -ADD0 00000000 -ADD1 00000001 -ADD2 00000002 -ADD3 00000003 -ADD4 00000004 -ADD5 00000005 -ADD6 00000006 -ADD7 00000007 -ADDEN 00000003 -ADFM 00000007 -ADFVR0 00000000 -ADFVR1 00000001 -ADGO 00000001 -ADIE 00000006 -ADIF 00000006 -ADNREF 00000002 -ADON 00000000 -ADPREF0 00000000 -ADPREF1 00000001 -ADRES 0000009B -ADRESH 0000009C -ADRESL 0000009B -ADRMD 00000007 -AHEN 00000001 -ANSA0 00000000 -ANSA1 00000001 -ANSA2 00000002 -ANSA3 00000003 -ANSA4 00000004 -ANSA5 00000005 -ANSA7 00000007 -ANSB0 00000000 -ANSB1 00000001 -ANSB2 00000002 -ANSB3 00000003 -ANSB4 00000004 -ANSB5 00000005 -ANSB6 00000006 -ANSC0 00000000 -ANSC1 00000001 -ANSC2 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 3 - - -SYMBOL TABLE - LABEL VALUE - -ANSC3 00000003 -ANSC4 00000004 -ANSC5 00000005 -ANSC6 00000006 -ANSC7 00000007 -ANSELA 0000018C -ANSELB 0000018D -ANSELC 0000018E -APFCON 0000011D -APFCON0 0000011D -APFCON1 0000011D -APFCON2 0000011C -BAUD1CON 0000019F -BAUDCON 0000019F -BAUDCON1 0000019F -BAUDCTL 0000019F -BAUDCTL1 0000019F -BCL1IE 00000003 -BCL1IF 00000003 -BF 00000000 -BOEN 00000004 -BORCON 00000116 -BORFS 00000006 -BORRDY 00000000 -BRG16 00000003 -BRGH 00000002 -BSR 00000008 -BSR0 00000000 -BSR1 00000001 -BSR2 00000002 -BSR3 00000003 -BSR4 00000004 -BSR_SHAD 00000FE6 -BUF0 00000000 -BUF1 00000001 -BUF2 00000002 -BUF3 00000003 -BUF4 00000004 -BUF5 00000005 -BUF6 00000006 -BUF7 00000007 -C 00000000 -C1HYS 00000001 -C1IE 00000005 -C1IF 00000005 -C1INTN 00000006 -C1INTP 00000007 -C1NCH0 00000000 -C1NCH1 00000001 -C1NCH2 00000002 -C1OE 00000005 -C1ON 00000007 -C1OUT 00000006 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 4 - - -SYMBOL TABLE - LABEL VALUE - -C1PCH0 00000003 -C1PCH1 00000004 -C1PCH2 00000005 -C1POL 00000004 -C1SP 00000002 -C1SYNC 00000000 -C1ZLF 00000003 -C2HYS 00000001 -C2IE 00000006 -C2IF 00000006 -C2INTN 00000006 -C2INTP 00000007 -C2NCH0 00000000 -C2NCH1 00000001 -C2NCH2 00000002 -C2OE 00000005 -C2ON 00000007 -C2OUT 00000006 -C2OUTSEL 00000007 -C2PCH0 00000003 -C2PCH1 00000004 -C2PCH2 00000005 -C2POL 00000004 -C2SP 00000002 -C2SYNC 00000000 -C2ZLF 00000003 -C3HYS 00000001 -C3IE 00000001 -C3IF 00000001 -C3INTN 00000006 -C3INTP 00000007 -C3NCH0 00000000 -C3NCH1 00000001 -C3NCH2 00000002 -C3OE 00000005 -C3ON 00000007 -C3OUT 00000006 -C3PCH0 00000003 -C3PCH1 00000004 -C3PCH2 00000005 -C3POL 00000004 -C3SP 00000002 -C3SYNC 00000000 -C3ZLF 00000003 -C4HYS 00000001 -C4IE 00000002 -C4IF 00000002 -C4INTN 00000006 -C4INTP 00000007 -C4NCH0 00000000 -C4NCH1 00000001 -C4NCH2 00000002 -C4OE 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 5 - - -SYMBOL TABLE - LABEL VALUE - -C4ON 00000007 -C4OUT 00000006 -C4PCH0 00000003 -C4PCH1 00000004 -C4PCH2 00000005 -C4POL 00000004 -C4SP 00000002 -C4SYNC 00000000 -C4ZLF 00000003 -CCP1CON 00000293 -CCP1IE 00000002 -CCP1IF 00000002 -CCP1M0 00000000 -CCP1M1 00000001 -CCP1M2 00000002 -CCP1M3 00000003 -CCP1SEL 00000006 -CCP2CON 0000029A -CCP2IE 00000000 -CCP2IF 00000000 -CCP2M0 00000000 -CCP2M1 00000001 -CCP2M2 00000002 -CCP2M3 00000003 -CCP2SEL 00000000 -CCP3CON 00000313 -CCP3IE 00000004 -CCP3IF 00000004 -CCP3M0 00000000 -CCP3M1 00000001 -CCP3M2 00000002 -CCP3M3 00000003 -CCP3SEL 00000000 -CCPR1 00000291 -CCPR1H 00000292 -CCPR1L 00000291 -CCPR2 00000298 -CCPR2H 00000299 -CCPR2L 00000298 -CCPR3 00000311 -CCPR3H 00000312 -CCPR3L 00000311 -CDAFVR0 00000002 -CDAFVR1 00000003 -CFGS 00000006 -CHS0 00000002 -CHS1 00000003 -CHS2 00000004 -CHS3 00000005 -CHS4 00000006 -CHSN0 00000000 -CHSN1 00000001 -CHSN2 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 6 - - -SYMBOL TABLE - LABEL VALUE - -CHSN3 00000003 -CKE 00000006 -CKP 00000004 -CLKRCON 0000051A -CLKRDC0 00000003 -CLKRDC1 00000004 -CLKRDIV0 00000000 -CLKRDIV1 00000001 -CLKRDIV2 00000002 -CLKREN 00000007 -CLKROE 00000006 -CLKRSLR 00000005 -CM1CON0 00000111 -CM1CON1 00000112 -CM2CON0 00000113 -CM2CON1 00000114 -CM3CON0 0000011E -CM3CON1 0000011F -CM4CON0 0000011A -CM4CON1 0000011B -CMOUT 00000115 -CREN 00000004 -CSRC 00000007 -C_SHAD 00000000 -DAC1CON0 00000118 -DAC1CON1 00000119 -DAC1EN 00000007 -DAC1NSS 00000000 -DAC1OE1 00000005 -DAC1OE2 00000004 -DAC1PSS0 00000002 -DAC1PSS1 00000003 -DAC1R0 00000000 -DAC1R1 00000001 -DAC1R2 00000002 -DAC1R3 00000003 -DAC1R4 00000004 -DAC1R5 00000005 -DAC1R6 00000006 -DAC1R7 00000007 -DAC2CON0 00000591 -DAC2EN 00000007 -DAC2OE1 00000005 -DAC2OE2 00000004 -DAC2REF 00000592 -DAC3CON0 00000593 -DAC3EN 00000007 -DAC3OE1 00000005 -DAC3OE2 00000004 -DAC3REF 00000594 -DAC4CON0 00000595 -DAC4EN 00000007 -DAC4OE1 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 7 - - -SYMBOL TABLE - LABEL VALUE - -DAC4OE2 00000004 -DAC4REF 00000596 -DACEN 00000007 -DACNSS 00000000 -DACOE0 00000004 -DACOE1 00000005 -DACPSS0 00000002 -DACPSS1 00000003 -DACR0 00000000 -DACR1 00000001 -DACR2 00000002 -DACR3 00000003 -DACR4 00000004 -DACR5 00000005 -DACR6 00000006 -DACR7 00000007 -DC 00000001 -DC1B0 00000004 -DC1B1 00000005 -DC2B0 00000004 -DC2B1 00000005 -DC3B0 00000004 -DC3B1 00000005 -DC_SHAD 00000001 -DHEN 00000000 -DONE 00000001 -D_NOT_A 00000005 -EEADR 00000191 -EEADRH 00000192 -EEADRL 00000191 -EECON1 00000195 -EECON2 00000196 -EEDAT 00000193 -EEDATH 00000194 -EEDATL 00000193 -EEIE 00000004 -EEIF 00000004 -EEPGD 00000007 -EN 00000007 -F 00000001 -FERR 00000002 -FREE 00000004 -FSR0 00000004 -FSR0H 00000005 -FSR0H_SHAD 00000FE9 -FSR0L 00000004 -FSR0L_SHAD 00000FE8 -FSR1 00000006 -FSR1H 00000007 -FSR1H_SHAD 00000FEB -FSR1L 00000006 -FSR1L_SHAD 00000FEA -FVRCON 00000117 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 8 - - -SYMBOL TABLE - LABEL VALUE - -FVREN 00000007 -FVRRDY 00000006 -GCEN 00000007 -GIE 00000007 -GO 00000001 -GO_NOT_DONE 00000001 -HFIOFL 00000003 -HFIOFR 00000004 -HFIOFS 00000000 -INDF0 00000000 -INDF1 00000001 -INLVLA 0000038C -INLVLA0 00000000 -INLVLA1 00000001 -INLVLA2 00000002 -INLVLA3 00000003 -INLVLA4 00000004 -INLVLA5 00000005 -INLVLA6 00000006 -INLVLA7 00000007 -INLVLB 0000038D -INLVLB0 00000000 -INLVLB1 00000001 -INLVLB2 00000002 -INLVLB3 00000003 -INLVLB4 00000004 -INLVLB5 00000005 -INLVLB6 00000006 -INLVLB7 00000007 -INLVLC 0000038E -INLVLC0 00000000 -INLVLC1 00000001 -INLVLC2 00000002 -INLVLC3 00000003 -INLVLC4 00000004 -INLVLC5 00000005 -INLVLC6 00000006 -INLVLC7 00000007 -INLVLE 00000390 -INLVLE3 00000003 -INTCON 0000000B -INTE 00000004 -INTEDG 00000006 -INTF 00000001 -IOCAF 00000393 -IOCAF0 00000000 -IOCAF1 00000001 -IOCAF2 00000002 -IOCAF3 00000003 -IOCAF4 00000004 -IOCAF5 00000005 -IOCAF6 00000006 -IOCAF7 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 9 - - -SYMBOL TABLE - LABEL VALUE - -IOCAN 00000392 -IOCAN0 00000000 -IOCAN1 00000001 -IOCAN2 00000002 -IOCAN3 00000003 -IOCAN4 00000004 -IOCAN5 00000005 -IOCAN6 00000006 -IOCAN7 00000007 -IOCAP 00000391 -IOCAP0 00000000 -IOCAP1 00000001 -IOCAP2 00000002 -IOCAP3 00000003 -IOCAP4 00000004 -IOCAP5 00000005 -IOCAP6 00000006 -IOCAP7 00000007 -IOCBF 00000396 -IOCBF0 00000000 -IOCBF1 00000001 -IOCBF2 00000002 -IOCBF3 00000003 -IOCBF4 00000004 -IOCBF5 00000005 -IOCBF6 00000006 -IOCBF7 00000007 -IOCBN 00000395 -IOCBN0 00000000 -IOCBN1 00000001 -IOCBN2 00000002 -IOCBN3 00000003 -IOCBN4 00000004 -IOCBN5 00000005 -IOCBN6 00000006 -IOCBN7 00000007 -IOCBP 00000394 -IOCBP0 00000000 -IOCBP1 00000001 -IOCBP2 00000002 -IOCBP3 00000003 -IOCBP4 00000004 -IOCBP5 00000005 -IOCBP6 00000006 -IOCBP7 00000007 -IOCCF 00000399 -IOCCF0 00000000 -IOCCF1 00000001 -IOCCF2 00000002 -IOCCF3 00000003 -IOCCF4 00000004 -IOCCF5 00000005 -IOCCF6 00000006 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 10 - - -SYMBOL TABLE - LABEL VALUE - -IOCCF7 00000007 -IOCCN 00000398 -IOCCN0 00000000 -IOCCN1 00000001 -IOCCN2 00000002 -IOCCN3 00000003 -IOCCN4 00000004 -IOCCN5 00000005 -IOCCN6 00000006 -IOCCN7 00000007 -IOCCP 00000397 -IOCCP0 00000000 -IOCCP1 00000001 -IOCCP2 00000002 -IOCCP3 00000003 -IOCCP4 00000004 -IOCCP5 00000005 -IOCCP6 00000006 -IOCCP7 00000007 -IOCEF 0000039F -IOCEF3 00000003 -IOCEN 0000039E -IOCEN3 00000003 -IOCEP 0000039D -IOCEP3 00000003 -IOCIE 00000003 -IOCIF 00000000 -IRCF0 00000003 -IRCF1 00000004 -IRCF2 00000005 -IRCF3 00000006 -LATA 0000010C -LATA0 00000000 -LATA1 00000001 -LATA2 00000002 -LATA3 00000003 -LATA4 00000004 -LATA5 00000005 -LATA6 00000006 -LATA7 00000007 -LATB 0000010D -LATB0 00000000 -LATB1 00000001 -LATB2 00000002 -LATB3 00000003 -LATB4 00000004 -LATB5 00000005 -LATB6 00000006 -LATB7 00000007 -LATC 0000010E -LATC0 00000000 -LATC1 00000001 -LATC2 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 11 - - -SYMBOL TABLE - LABEL VALUE - -LATC3 00000003 -LATC4 00000004 -LATC5 00000005 -LATC6 00000006 -LATC7 00000007 -LFIOFR 00000001 -LWLO 00000005 -MC1OUT 00000000 -MC2OUT 00000001 -MC3OUT 00000002 -MC4OUT 00000003 -MFIOFR 00000002 -MSK0 00000000 -MSK1 00000001 -MSK2 00000002 -MSK3 00000003 -MSK4 00000004 -MSK5 00000005 -MSK6 00000006 -MSK7 00000007 -NOT_BOR 00000000 -NOT_PD 00000003 -NOT_POR 00000001 -NOT_RI 00000002 -NOT_RMCLR 00000003 -NOT_RWDT 00000004 -NOT_T1SYNC 00000002 -NOT_TO 00000004 -NOT_WPUEN 00000007 -ODCONA 0000028C -ODCONA0 00000000 -ODCONA1 00000001 -ODCONA2 00000002 -ODCONA3 00000003 -ODCONA4 00000004 -ODCONA5 00000005 -ODCONA6 00000006 -ODCONA7 00000007 -ODCONB 0000028D -ODCONB0 00000000 -ODCONB1 00000001 -ODCONB2 00000002 -ODCONB3 00000003 -ODCONB4 00000004 -ODCONB5 00000005 -ODCONB6 00000006 -ODCONB7 00000007 -ODCONC 0000028E -ODCONC0 00000000 -ODCONC1 00000001 -ODCONC2 00000002 -ODCONC3 00000003 -ODCONC4 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 12 - - -SYMBOL TABLE - LABEL VALUE - -ODCONC5 00000005 -ODCONC6 00000006 -ODCONC7 00000007 -OERR 00000001 -OPA1CON 00000511 -OPA1EN 00000007 -OPA1PCH0 00000000 -OPA1PCH1 00000001 -OPA1PCH2 00000002 -OPA1SP 00000006 -OPA2CON 00000513 -OPA2EN 00000007 -OPA2PCH0 00000000 -OPA2PCH1 00000001 -OPA2PCH2 00000002 -OPA2SP 00000006 -OPTION_REG 00000095 -OSCCON 00000099 -OSCSTAT 0000009A -OSCTUNE 00000098 -OSFIE 00000007 -OSFIF 00000007 -OSTS 00000005 -P 00000004 -P1ARSEN 00000005 -P1ASDEN 00000006 -P1ASDLA 00000000 -P1ASDLB 00000001 -P1ASDLC 00000002 -P1ASDLD 00000003 -P1ASDLE 00000004 -P1ASDLF 00000005 -P1ASDOV 00000000 -P1ASDSC1 00000001 -P1ASDSC2 00000002 -P1ASDSC3 00000003 -P1ASDSC4 00000004 -P1ASDSIN 00000007 -P1ASE 00000007 -P1CPRE0 00000004 -P1CPRE1 00000005 -P1CSRC0 00000000 -P1CSRC1 00000001 -P1DBFE 00000005 -P1DBRE 00000004 -P1DCPOL 00000005 -P1DCSC1 00000001 -P1DCSC2 00000002 -P1DCSC3 00000003 -P1DCSC4 00000004 -P1DCSIN 00000007 -P1DCST 00000000 -P1FEBM0 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 13 - - -SYMBOL TABLE - LABEL VALUE - -P1FEBM1 00000005 -P1FEBSC1 00000001 -P1FEBSC2 00000002 -P1FEBSC3 00000003 -P1FEBSC4 00000004 -P1FEBSIN 00000007 -P1HSMEN 00000000 -P1INPOL 00000006 -P1LSMEN 00000001 -P1MDLBIT 00000005 -P1MDLEN 00000007 -P1MDLPOL 00000006 -P1MODE0 00000000 -P1MODE1 00000001 -P1MODE2 00000002 -P1MODE3 00000003 -P1MSRC0 00000000 -P1MSRC1 00000001 -P1MSRC2 00000002 -P1MSRC3 00000003 -P1OEA 00000000 -P1OEB 00000001 -P1OEC 00000002 -P1OED 00000003 -P1OEE 00000004 -P1OEF 00000005 -P1PHSC1 00000001 -P1PHSC2 00000002 -P1PHSC3 00000003 -P1PHSC4 00000004 -P1PHSIN 00000007 -P1PHST 00000000 -P1POFST 00000007 -P1POLA 00000000 -P1POLB 00000001 -P1POLC 00000002 -P1POLD 00000003 -P1POLE 00000004 -P1POLF 00000005 -P1PRPOL 00000006 -P1PRSC1 00000001 -P1PRSC2 00000002 -P1PRSC3 00000003 -P1PRSC4 00000004 -P1PRSIN 00000007 -P1PRST 00000000 -P1REBM0 00000000 -P1REBM1 00000001 -P1REBSC1 00000001 -P1REBSC2 00000002 -P1REBSC3 00000003 -P1REBSC4 00000004 -P1REBSIN 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 14 - - -SYMBOL TABLE - LABEL VALUE - -P1SSYNC 00000007 -P1STRA 00000000 -P1STRB 00000001 -P1STRC 00000002 -P1STRD 00000003 -P1STRE 00000004 -P1STRF 00000005 -P1SYNC0 00000000 -P1SYNC1 00000001 -P1SYNC2 00000002 -P1TDCIE 00000005 -P1TDCIF 00000001 -P1TOVIE 00000007 -P1TOVIF 00000003 -P1TPHIE 00000006 -P1TPHIF 00000002 -P1TPRIE 00000004 -P1TPRIF 00000000 -P2ARSEN 00000005 -P2ASDEN 00000006 -P2ASDLA 00000000 -P2ASDLB 00000001 -P2ASDOV 00000000 -P2ASDSC1 00000001 -P2ASDSC2 00000002 -P2ASDSC3 00000003 -P2ASDSC4 00000004 -P2ASDSIN 00000007 -P2ASE 00000007 -P2CPRE0 00000004 -P2CPRE1 00000005 -P2CSRC0 00000000 -P2CSRC1 00000001 -P2DBFE 00000005 -P2DBRE 00000004 -P2DCPOL 00000005 -P2DCSC1 00000001 -P2DCSC2 00000002 -P2DCSC3 00000003 -P2DCSC4 00000004 -P2DCSIN 00000007 -P2DCST 00000000 -P2FEBM0 00000004 -P2FEBM1 00000005 -P2FEBSC1 00000001 -P2FEBSC2 00000002 -P2FEBSC3 00000003 -P2FEBSC4 00000004 -P2FEBSIN 00000007 -P2HSMEN 00000000 -P2INPOL 00000006 -P2LSMEN 00000001 -P2MDLBIT 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 15 - - -SYMBOL TABLE - LABEL VALUE - -P2MDLEN 00000007 -P2MDLPOL 00000006 -P2MODE0 00000000 -P2MODE1 00000001 -P2MODE2 00000002 -P2MODE3 00000003 -P2MSRC0 00000000 -P2MSRC1 00000001 -P2MSRC2 00000002 -P2MSRC3 00000003 -P2OEA 00000000 -P2OEB 00000001 -P2PHSC1 00000001 -P2PHSC2 00000002 -P2PHSC3 00000003 -P2PHSC4 00000004 -P2PHSIN 00000007 -P2PHST 00000000 -P2POFST 00000007 -P2POLA 00000000 -P2POLB 00000001 -P2PRPOL 00000006 -P2PRSC1 00000001 -P2PRSC2 00000002 -P2PRSC3 00000003 -P2PRSC4 00000004 -P2PRSIN 00000007 -P2PRST 00000000 -P2REBM0 00000000 -P2REBM1 00000001 -P2REBSC1 00000001 -P2REBSC2 00000002 -P2REBSC3 00000003 -P2REBSC4 00000004 -P2REBSIN 00000007 -P2SSYNC 00000007 -P2STRA 00000000 -P2STRB 00000001 -P2SYNC0 00000000 -P2SYNC1 00000001 -P2SYNC2 00000002 -P2TDCIE 00000005 -P2TDCIF 00000001 -P2TOVIE 00000007 -P2TOVIF 00000003 -P2TPHIE 00000006 -P2TPHIF 00000002 -P2TPRIE 00000004 -P2TPRIF 00000000 -P3ARSEN 00000005 -P3ASDEN 00000006 -P3ASDLA 00000000 -P3ASDLB 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 16 - - -SYMBOL TABLE - LABEL VALUE - -P3ASDOV 00000000 -P3ASDSC1 00000001 -P3ASDSC2 00000002 -P3ASDSC3 00000003 -P3ASDSC4 00000004 -P3ASDSIN 00000007 -P3ASE 00000007 -P3CPRE0 00000004 -P3CPRE1 00000005 -P3CSRC0 00000000 -P3CSRC1 00000001 -P3DBFE 00000005 -P3DBRE 00000004 -P3DCPOL 00000005 -P3DCSC1 00000001 -P3DCSC2 00000002 -P3DCSC3 00000003 -P3DCSC4 00000004 -P3DCSIN 00000007 -P3DCST 00000000 -P3FEBM0 00000004 -P3FEBM1 00000005 -P3FEBSC1 00000001 -P3FEBSC2 00000002 -P3FEBSC3 00000003 -P3FEBSC4 00000004 -P3FEBSIN 00000007 -P3HSMEN 00000000 -P3INPOL 00000006 -P3LSMEN 00000001 -P3MDLBIT 00000005 -P3MDLEN 00000007 -P3MDLPOL 00000006 -P3MODE0 00000000 -P3MODE1 00000001 -P3MODE2 00000002 -P3MODE3 00000003 -P3MSRC0 00000000 -P3MSRC1 00000001 -P3MSRC2 00000002 -P3MSRC3 00000003 -P3OEA 00000000 -P3OEB 00000001 -P3PHSC1 00000001 -P3PHSC2 00000002 -P3PHSC3 00000003 -P3PHSC4 00000004 -P3PHSIN 00000007 -P3PHST 00000000 -P3POFST 00000007 -P3POLA 00000000 -P3POLB 00000001 -P3PRPOL 00000006 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 17 - - -SYMBOL TABLE - LABEL VALUE - -P3PRSC1 00000001 -P3PRSC2 00000002 -P3PRSC3 00000003 -P3PRSC4 00000004 -P3PRSIN 00000007 -P3PRST 00000000 -P3REBM0 00000000 -P3REBM1 00000001 -P3REBSC1 00000001 -P3REBSC2 00000002 -P3REBSC3 00000003 -P3REBSC4 00000004 -P3REBSIN 00000007 -P3SSYNC 00000007 -P3STRA 00000000 -P3STRB 00000001 -P3SYNC0 00000000 -P3SYNC1 00000001 -P3SYNC2 00000002 -P3TDCIE 00000005 -P3TDCIF 00000001 -P3TOVIE 00000007 -P3TOVIF 00000003 -P3TPHIE 00000006 -P3TPHIF 00000002 -P3TPRIE 00000004 -P3TPRIF 00000000 -P4ARSEN 00000005 -P4ASDEN 00000006 -P4ASDLA 00000000 -P4ASDLB 00000001 -P4ASDOV 00000000 -P4ASDSC1 00000001 -P4ASDSC2 00000002 -P4ASDSC3 00000003 -P4ASDSC4 00000004 -P4ASDSIN 00000007 -P4ASE 00000007 -P4CPRE0 00000004 -P4CPRE1 00000005 -P4CSRC0 00000000 -P4CSRC1 00000001 -P4DBFE 00000005 -P4DBRE 00000004 -P4DCPOL 00000005 -P4DCSC1 00000001 -P4DCSC2 00000002 -P4DCSC3 00000003 -P4DCSC4 00000004 -P4DCSIN 00000007 -P4DCST 00000000 -P4FEBM0 00000004 -P4FEBM1 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 18 - - -SYMBOL TABLE - LABEL VALUE - -P4FEBSC1 00000001 -P4FEBSC2 00000002 -P4FEBSC3 00000003 -P4FEBSC4 00000004 -P4FEBSIN 00000007 -P4HSMEN 00000000 -P4INPOL 00000006 -P4LSMEN 00000001 -P4MDLBIT 00000005 -P4MDLEN 00000007 -P4MDLPOL 00000006 -P4MODE0 00000000 -P4MODE1 00000001 -P4MODE2 00000002 -P4MODE3 00000003 -P4MSRC0 00000000 -P4MSRC1 00000001 -P4MSRC2 00000002 -P4MSRC3 00000003 -P4OEA 00000000 -P4OEB 00000001 -P4PHSC1 00000001 -P4PHSC2 00000002 -P4PHSC3 00000003 -P4PHSC4 00000004 -P4PHSIN 00000007 -P4PHST 00000000 -P4POFST 00000007 -P4POLA 00000000 -P4POLB 00000001 -P4PRPOL 00000006 -P4PRSC1 00000001 -P4PRSC2 00000002 -P4PRSC3 00000003 -P4PRSC4 00000004 -P4PRSIN 00000007 -P4PRST 00000000 -P4REBM0 00000000 -P4REBM1 00000001 -P4REBSC1 00000001 -P4REBSC2 00000002 -P4REBSC3 00000003 -P4REBSC4 00000004 -P4REBSIN 00000007 -P4SSYNC 00000007 -P4STRA 00000000 -P4STRB 00000001 -P4SYNC0 00000000 -P4SYNC1 00000001 -P4SYNC2 00000002 -P4TDCIE 00000005 -P4TDCIF 00000001 -P4TOVIE 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 19 - - -SYMBOL TABLE - LABEL VALUE - -P4TOVIF 00000003 -P4TPHIE 00000006 -P4TPHIF 00000002 -P4TPRIE 00000004 -P4TPRIF 00000000 -PCH0 00000000 -PCH1 00000001 -PCH2 00000002 -PCIE 00000006 -PCL 00000002 -PCLATH 0000000A -PCLATH_SHAD 00000FE7 -PCON 00000096 -PEIE 00000006 -PEN 00000002 -PIE1 00000091 -PIE2 00000092 -PIE3 00000093 -PIE4 00000094 -PIR1 00000011 -PIR2 00000012 -PIR3 00000013 -PIR4 00000014 -PLLR 00000006 -PMSC3TIE 00000006 -PORTA 0000000C -PORTB 0000000D -PORTC 0000000E -PORTE 00000010 -PR2 0000001B -PS0 00000000 -PS1 00000001 -PS2 00000002 -PSA 00000003 -PSMC1ASDC 00000E9D -PSMC1ASDL 00000E9E -PSMC1ASDS 00000E9F -PSMC1BLKF 00000EAC -PSMC1BLKF0 00000000 -PSMC1BLKF1 00000001 -PSMC1BLKF2 00000002 -PSMC1BLKF3 00000003 -PSMC1BLKF4 00000004 -PSMC1BLKF5 00000005 -PSMC1BLKF6 00000006 -PSMC1BLKF7 00000007 -PSMC1BLKR 00000EAB -PSMC1BLKR0 00000000 -PSMC1BLKR1 00000001 -PSMC1BLKR2 00000002 -PSMC1BLKR3 00000003 -PSMC1BLKR4 00000004 -PSMC1BLKR5 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 20 - - -SYMBOL TABLE - LABEL VALUE - -PSMC1BLKR6 00000006 -PSMC1BLKR7 00000007 -PSMC1BLNK 00000E97 -PSMC1CLK 00000E94 -PSMC1CON 00000E91 -PSMC1DBF 00000EAA -PSMC1DBF0 00000000 -PSMC1DBF1 00000001 -PSMC1DBF2 00000002 -PSMC1DBF3 00000003 -PSMC1DBF4 00000004 -PSMC1DBF5 00000005 -PSMC1DBF6 00000006 -PSMC1DBF7 00000007 -PSMC1DBR 00000EA9 -PSMC1DBR0 00000000 -PSMC1DBR1 00000001 -PSMC1DBR2 00000002 -PSMC1DBR3 00000003 -PSMC1DBR4 00000004 -PSMC1DBR5 00000005 -PSMC1DBR6 00000006 -PSMC1DBR7 00000007 -PSMC1DC 00000EA3 -PSMC1DC0 00000000 -PSMC1DC1 00000001 -PSMC1DC10 00000002 -PSMC1DC11 00000003 -PSMC1DC12 00000004 -PSMC1DC13 00000005 -PSMC1DC14 00000006 -PSMC1DC15 00000007 -PSMC1DC2 00000002 -PSMC1DC3 00000003 -PSMC1DC4 00000004 -PSMC1DC5 00000005 -PSMC1DC6 00000006 -PSMC1DC7 00000007 -PSMC1DC8 00000000 -PSMC1DC9 00000001 -PSMC1DCH 00000EA4 -PSMC1DCL 00000EA3 -PSMC1DCS 00000E9B -PSMC1EN 00000007 -PSMC1FEBS 00000E99 -PSMC1FFA 00000EAD -PSMC1FFA0 00000000 -PSMC1FFA1 00000001 -PSMC1FFA2 00000002 -PSMC1FFA3 00000003 -PSMC1INT 00000EA0 -PSMC1LD 00000006 -PSMC1MDL 00000E92 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 21 - - -SYMBOL TABLE - LABEL VALUE - -PSMC1OEN 00000E95 -PSMC1PH 00000EA1 -PSMC1PH0 00000000 -PSMC1PH1 00000001 -PSMC1PH10 00000002 -PSMC1PH11 00000003 -PSMC1PH12 00000004 -PSMC1PH13 00000005 -PSMC1PH14 00000006 -PSMC1PH15 00000007 -PSMC1PH2 00000002 -PSMC1PH3 00000003 -PSMC1PH4 00000004 -PSMC1PH5 00000005 -PSMC1PH6 00000006 -PSMC1PH7 00000007 -PSMC1PH8 00000000 -PSMC1PH9 00000001 -PSMC1PHH 00000EA2 -PSMC1PHL 00000EA1 -PSMC1PHS 00000E9A -PSMC1POL 00000E96 -PSMC1PR 00000EA5 -PSMC1PR0 00000000 -PSMC1PR1 00000001 -PSMC1PR10 00000002 -PSMC1PR11 00000003 -PSMC1PR12 00000004 -PSMC1PR13 00000005 -PSMC1PR14 00000006 -PSMC1PR15 00000007 -PSMC1PR2 00000002 -PSMC1PR3 00000003 -PSMC1PR4 00000004 -PSMC1PR5 00000005 -PSMC1PR6 00000006 -PSMC1PR7 00000007 -PSMC1PR8 00000000 -PSMC1PR9 00000001 -PSMC1PRH 00000EA6 -PSMC1PRL 00000EA5 -PSMC1PRS 00000E9C -PSMC1REBS 00000E98 -PSMC1SIE 00000000 -PSMC1SIF 00000000 -PSMC1STR0 00000EAE -PSMC1STR1 00000EAF -PSMC1SYNC 00000E93 -PSMC1TIE 00000004 -PSMC1TIF 00000004 -PSMC1TMR 00000EA7 -PSMC1TMR0 00000000 -PSMC1TMR1 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 22 - - -SYMBOL TABLE - LABEL VALUE - -PSMC1TMR10 00000002 -PSMC1TMR11 00000003 -PSMC1TMR12 00000004 -PSMC1TMR13 00000005 -PSMC1TMR14 00000006 -PSMC1TMR15 00000007 -PSMC1TMR2 00000002 -PSMC1TMR3 00000003 -PSMC1TMR4 00000004 -PSMC1TMR5 00000005 -PSMC1TMR6 00000006 -PSMC1TMR7 00000007 -PSMC1TMR8 00000000 -PSMC1TMR9 00000001 -PSMC1TMRH 00000EA8 -PSMC1TMRL 00000EA7 -PSMC2ASDC 00000EBD -PSMC2ASDL 00000EBE -PSMC2ASDS 00000EBF -PSMC2BLKF 00000ECC -PSMC2BLKF0 00000000 -PSMC2BLKF1 00000001 -PSMC2BLKF2 00000002 -PSMC2BLKF3 00000003 -PSMC2BLKF4 00000004 -PSMC2BLKF5 00000005 -PSMC2BLKF6 00000006 -PSMC2BLKF7 00000007 -PSMC2BLKR 00000ECB -PSMC2BLKR0 00000000 -PSMC2BLKR1 00000001 -PSMC2BLKR2 00000002 -PSMC2BLKR3 00000003 -PSMC2BLKR4 00000004 -PSMC2BLKR5 00000005 -PSMC2BLKR6 00000006 -PSMC2BLKR7 00000007 -PSMC2BLNK 00000EB7 -PSMC2CLK 00000EB4 -PSMC2CON 00000EB1 -PSMC2DBF 00000ECA -PSMC2DBF0 00000000 -PSMC2DBF1 00000001 -PSMC2DBF2 00000002 -PSMC2DBF3 00000003 -PSMC2DBF4 00000004 -PSMC2DBF5 00000005 -PSMC2DBF6 00000006 -PSMC2DBF7 00000007 -PSMC2DBR 00000EC9 -PSMC2DBR0 00000000 -PSMC2DBR1 00000001 -PSMC2DBR2 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 23 - - -SYMBOL TABLE - LABEL VALUE - -PSMC2DBR3 00000003 -PSMC2DBR4 00000004 -PSMC2DBR5 00000005 -PSMC2DBR6 00000006 -PSMC2DBR7 00000007 -PSMC2DC 00000EC3 -PSMC2DC0 00000000 -PSMC2DC1 00000001 -PSMC2DC10 00000002 -PSMC2DC11 00000003 -PSMC2DC12 00000004 -PSMC2DC13 00000005 -PSMC2DC14 00000006 -PSMC2DC15 00000007 -PSMC2DC2 00000002 -PSMC2DC3 00000003 -PSMC2DC4 00000004 -PSMC2DC5 00000005 -PSMC2DC6 00000006 -PSMC2DC7 00000007 -PSMC2DC8 00000000 -PSMC2DC9 00000001 -PSMC2DCH 00000EC4 -PSMC2DCL 00000EC3 -PSMC2DCS 00000EBB -PSMC2EN 00000007 -PSMC2FEBS 00000EB9 -PSMC2FFA 00000ECD -PSMC2FFA0 00000000 -PSMC2FFA1 00000001 -PSMC2FFA2 00000002 -PSMC2FFA3 00000003 -PSMC2INT 00000EC0 -PSMC2LD 00000006 -PSMC2MDL 00000EB2 -PSMC2OEN 00000EB5 -PSMC2PH 00000EC1 -PSMC2PH0 00000000 -PSMC2PH1 00000001 -PSMC2PH10 00000002 -PSMC2PH11 00000003 -PSMC2PH12 00000004 -PSMC2PH13 00000005 -PSMC2PH14 00000006 -PSMC2PH15 00000007 -PSMC2PH2 00000002 -PSMC2PH3 00000003 -PSMC2PH4 00000004 -PSMC2PH5 00000005 -PSMC2PH6 00000006 -PSMC2PH7 00000007 -PSMC2PH8 00000000 -PSMC2PH9 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 24 - - -SYMBOL TABLE - LABEL VALUE - -PSMC2PHH 00000EC2 -PSMC2PHL 00000EC1 -PSMC2PHS 00000EBA -PSMC2POL 00000EB6 -PSMC2PR 00000EC5 -PSMC2PR0 00000000 -PSMC2PR1 00000001 -PSMC2PR10 00000002 -PSMC2PR11 00000003 -PSMC2PR12 00000004 -PSMC2PR13 00000005 -PSMC2PR14 00000006 -PSMC2PR15 00000007 -PSMC2PR2 00000002 -PSMC2PR3 00000003 -PSMC2PR4 00000004 -PSMC2PR5 00000005 -PSMC2PR6 00000006 -PSMC2PR7 00000007 -PSMC2PR8 00000000 -PSMC2PR9 00000001 -PSMC2PRH 00000EC6 -PSMC2PRL 00000EC5 -PSMC2PRS 00000EBC -PSMC2REBS 00000EB8 -PSMC2SIE 00000001 -PSMC2SIF 00000001 -PSMC2STR0 00000ECE -PSMC2STR1 00000ECF -PSMC2SYNC 00000EB3 -PSMC2TIE 00000005 -PSMC2TIF 00000005 -PSMC2TMR 00000EC7 -PSMC2TMR0 00000000 -PSMC2TMR1 00000001 -PSMC2TMR10 00000002 -PSMC2TMR11 00000003 -PSMC2TMR12 00000004 -PSMC2TMR13 00000005 -PSMC2TMR14 00000006 -PSMC2TMR15 00000007 -PSMC2TMR2 00000002 -PSMC2TMR3 00000003 -PSMC2TMR4 00000004 -PSMC2TMR5 00000005 -PSMC2TMR6 00000006 -PSMC2TMR7 00000007 -PSMC2TMR8 00000000 -PSMC2TMR9 00000001 -PSMC2TMRH 00000EC8 -PSMC2TMRL 00000EC7 -PSMC3ASDC 00000EDD -PSMC3ASDL 00000EDE -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 25 - - -SYMBOL TABLE - LABEL VALUE - -PSMC3ASDS 00000EDF -PSMC3BLKF 00000EEC -PSMC3BLKF0 00000000 -PSMC3BLKF1 00000001 -PSMC3BLKF2 00000002 -PSMC3BLKF3 00000003 -PSMC3BLKF4 00000004 -PSMC3BLKF5 00000005 -PSMC3BLKF6 00000006 -PSMC3BLKF7 00000007 -PSMC3BLKR 00000EEB -PSMC3BLKR0 00000000 -PSMC3BLKR1 00000001 -PSMC3BLKR2 00000002 -PSMC3BLKR3 00000003 -PSMC3BLKR4 00000004 -PSMC3BLKR5 00000005 -PSMC3BLKR6 00000006 -PSMC3BLKR7 00000007 -PSMC3BLNK 00000ED7 -PSMC3CLK 00000ED4 -PSMC3CON 00000ED1 -PSMC3DBF 00000EEA -PSMC3DBF0 00000000 -PSMC3DBF1 00000001 -PSMC3DBF2 00000002 -PSMC3DBF3 00000003 -PSMC3DBF4 00000004 -PSMC3DBF5 00000005 -PSMC3DBF6 00000006 -PSMC3DBF7 00000007 -PSMC3DBR 00000EE9 -PSMC3DBR0 00000000 -PSMC3DBR1 00000001 -PSMC3DBR2 00000002 -PSMC3DBR3 00000003 -PSMC3DBR4 00000004 -PSMC3DBR5 00000005 -PSMC3DBR6 00000006 -PSMC3DBR7 00000007 -PSMC3DC 00000EE3 -PSMC3DC0 00000000 -PSMC3DC1 00000001 -PSMC3DC10 00000002 -PSMC3DC11 00000003 -PSMC3DC12 00000004 -PSMC3DC13 00000005 -PSMC3DC14 00000006 -PSMC3DC15 00000007 -PSMC3DC2 00000002 -PSMC3DC3 00000003 -PSMC3DC4 00000004 -PSMC3DC5 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 26 - - -SYMBOL TABLE - LABEL VALUE - -PSMC3DC6 00000006 -PSMC3DC7 00000007 -PSMC3DC8 00000000 -PSMC3DC9 00000001 -PSMC3DCH 00000EE4 -PSMC3DCL 00000EE3 -PSMC3DCS 00000EDB -PSMC3EN 00000007 -PSMC3FEBS 00000ED9 -PSMC3FFA 00000EED -PSMC3FFA0 00000000 -PSMC3FFA1 00000001 -PSMC3FFA2 00000002 -PSMC3FFA3 00000003 -PSMC3INT 00000EE0 -PSMC3LD 00000006 -PSMC3MDL 00000ED2 -PSMC3OEN 00000ED5 -PSMC3PH 00000EE1 -PSMC3PH0 00000000 -PSMC3PH1 00000001 -PSMC3PH10 00000002 -PSMC3PH11 00000003 -PSMC3PH12 00000004 -PSMC3PH13 00000005 -PSMC3PH14 00000006 -PSMC3PH15 00000007 -PSMC3PH2 00000002 -PSMC3PH3 00000003 -PSMC3PH4 00000004 -PSMC3PH5 00000005 -PSMC3PH6 00000006 -PSMC3PH7 00000007 -PSMC3PH8 00000000 -PSMC3PH9 00000001 -PSMC3PHH 00000EE2 -PSMC3PHL 00000EE1 -PSMC3PHS 00000EDA -PSMC3POL 00000ED6 -PSMC3PR 00000EE5 -PSMC3PR0 00000000 -PSMC3PR1 00000001 -PSMC3PR10 00000002 -PSMC3PR11 00000003 -PSMC3PR12 00000004 -PSMC3PR13 00000005 -PSMC3PR14 00000006 -PSMC3PR15 00000007 -PSMC3PR2 00000002 -PSMC3PR3 00000003 -PSMC3PR4 00000004 -PSMC3PR5 00000005 -PSMC3PR6 00000006 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 27 - - -SYMBOL TABLE - LABEL VALUE - -PSMC3PR7 00000007 -PSMC3PR8 00000000 -PSMC3PR9 00000001 -PSMC3PRH 00000EE6 -PSMC3PRL 00000EE5 -PSMC3PRS 00000EDC -PSMC3REBS 00000ED8 -PSMC3SIE 00000002 -PSMC3SIF 00000002 -PSMC3STR0 00000EEE -PSMC3STR1 00000EEF -PSMC3SYNC 00000ED3 -PSMC3TIE 00000006 -PSMC3TIF 00000006 -PSMC3TMR 00000EE7 -PSMC3TMR0 00000000 -PSMC3TMR1 00000001 -PSMC3TMR10 00000002 -PSMC3TMR11 00000003 -PSMC3TMR12 00000004 -PSMC3TMR13 00000005 -PSMC3TMR14 00000006 -PSMC3TMR15 00000007 -PSMC3TMR2 00000002 -PSMC3TMR3 00000003 -PSMC3TMR4 00000004 -PSMC3TMR5 00000005 -PSMC3TMR6 00000006 -PSMC3TMR7 00000007 -PSMC3TMR8 00000000 -PSMC3TMR9 00000001 -PSMC3TMRH 00000EE8 -PSMC3TMRL 00000EE7 -PSMC4ASDC 00000F1D -PSMC4ASDL 00000F1E -PSMC4ASDS 00000F1F -PSMC4BLKF 00000F2C -PSMC4BLKF0 00000000 -PSMC4BLKF1 00000001 -PSMC4BLKF2 00000002 -PSMC4BLKF3 00000003 -PSMC4BLKF4 00000004 -PSMC4BLKF5 00000005 -PSMC4BLKF6 00000006 -PSMC4BLKF7 00000007 -PSMC4BLKR 00000F2B -PSMC4BLKR0 00000000 -PSMC4BLKR1 00000001 -PSMC4BLKR2 00000002 -PSMC4BLKR3 00000003 -PSMC4BLKR4 00000004 -PSMC4BLKR5 00000005 -PSMC4BLKR6 00000006 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 28 - - -SYMBOL TABLE - LABEL VALUE - -PSMC4BLKR7 00000007 -PSMC4BLNK 00000F17 -PSMC4CLK 00000F14 -PSMC4CON 00000F11 -PSMC4DBF 00000F2A -PSMC4DBF0 00000000 -PSMC4DBF1 00000001 -PSMC4DBF2 00000002 -PSMC4DBF3 00000003 -PSMC4DBF4 00000004 -PSMC4DBF5 00000005 -PSMC4DBF6 00000006 -PSMC4DBF7 00000007 -PSMC4DBR 00000F29 -PSMC4DBR0 00000000 -PSMC4DBR1 00000001 -PSMC4DBR2 00000002 -PSMC4DBR3 00000003 -PSMC4DBR4 00000004 -PSMC4DBR5 00000005 -PSMC4DBR6 00000006 -PSMC4DBR7 00000007 -PSMC4DC 00000F23 -PSMC4DC0 00000000 -PSMC4DC1 00000001 -PSMC4DC10 00000002 -PSMC4DC11 00000003 -PSMC4DC12 00000004 -PSMC4DC13 00000005 -PSMC4DC14 00000006 -PSMC4DC15 00000007 -PSMC4DC2 00000002 -PSMC4DC3 00000003 -PSMC4DC4 00000004 -PSMC4DC5 00000005 -PSMC4DC6 00000006 -PSMC4DC7 00000007 -PSMC4DC8 00000000 -PSMC4DC9 00000001 -PSMC4DCH 00000F24 -PSMC4DCL 00000F23 -PSMC4DCS 00000F1B -PSMC4EN 00000007 -PSMC4FEBS 00000F19 -PSMC4FFA 00000F2D -PSMC4FFA0 00000000 -PSMC4FFA1 00000001 -PSMC4FFA2 00000002 -PSMC4FFA3 00000003 -PSMC4INT 00000F20 -PSMC4LD 00000006 -PSMC4MDL 00000F12 -PSMC4OEN 00000F15 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 29 - - -SYMBOL TABLE - LABEL VALUE - -PSMC4PH 00000F21 -PSMC4PH0 00000000 -PSMC4PH1 00000001 -PSMC4PH10 00000002 -PSMC4PH11 00000003 -PSMC4PH12 00000004 -PSMC4PH13 00000005 -PSMC4PH14 00000006 -PSMC4PH15 00000007 -PSMC4PH2 00000002 -PSMC4PH3 00000003 -PSMC4PH4 00000004 -PSMC4PH5 00000005 -PSMC4PH6 00000006 -PSMC4PH7 00000007 -PSMC4PH8 00000000 -PSMC4PH9 00000001 -PSMC4PHH 00000F22 -PSMC4PHL 00000F21 -PSMC4PHS 00000F1A -PSMC4POL 00000F16 -PSMC4PR 00000F25 -PSMC4PR0 00000000 -PSMC4PR1 00000001 -PSMC4PR10 00000002 -PSMC4PR11 00000003 -PSMC4PR12 00000004 -PSMC4PR13 00000005 -PSMC4PR14 00000006 -PSMC4PR15 00000007 -PSMC4PR2 00000002 -PSMC4PR3 00000003 -PSMC4PR4 00000004 -PSMC4PR5 00000005 -PSMC4PR6 00000006 -PSMC4PR7 00000007 -PSMC4PR8 00000000 -PSMC4PR9 00000001 -PSMC4PRH 00000F26 -PSMC4PRL 00000F25 -PSMC4PRS 00000F1C -PSMC4REBS 00000F18 -PSMC4SIE 00000003 -PSMC4SIF 00000003 -PSMC4STR0 00000F2E -PSMC4STR1 00000F2F -PSMC4SYNC 00000F13 -PSMC4TIE 00000007 -PSMC4TIF 00000007 -PSMC4TMR 00000F27 -PSMC4TMR0 00000000 -PSMC4TMR1 00000001 -PSMC4TMR10 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 30 - - -SYMBOL TABLE - LABEL VALUE - -PSMC4TMR11 00000003 -PSMC4TMR12 00000004 -PSMC4TMR13 00000005 -PSMC4TMR14 00000006 -PSMC4TMR15 00000007 -PSMC4TMR2 00000002 -PSMC4TMR3 00000003 -PSMC4TMR4 00000004 -PSMC4TMR5 00000005 -PSMC4TMR6 00000006 -PSMC4TMR7 00000007 -PSMC4TMR8 00000000 -PSMC4TMR9 00000001 -PSMC4TMRH 00000F28 -PSMC4TMRL 00000F27 -RA0 00000000 -RA1 00000001 -RA2 00000002 -RA3 00000003 -RA4 00000004 -RA5 00000005 -RA6 00000006 -RA7 00000007 -RB0 00000000 -RB1 00000001 -RB2 00000002 -RB3 00000003 -RB4 00000004 -RB5 00000005 -RB6 00000006 -RB7 00000007 -RC0 00000000 -RC1 00000001 -RC1REG 00000199 -RC1STA 0000019D -RC2 00000002 -RC3 00000003 -RC4 00000004 -RC5 00000005 -RC6 00000006 -RC7 00000007 -RCEN 00000003 -RCIDL 00000006 -RCIE 00000005 -RCIF 00000005 -RCREG 00000199 -RCREG1 00000199 -RCSTA 0000019D -RCSTA1 0000019D -RD 00000000 -RE3 00000003 -RSEN 00000001 -RX9 00000006 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 31 - - -SYMBOL TABLE - LABEL VALUE - -RX9D 00000000 -RXSEL 00000001 -R_NOT_W 00000002 -S 00000003 -SBCDE 00000002 -SBOREN 00000007 -SCIE 00000005 -SCKP 00000004 -SCKSEL 00000004 -SCS0 00000000 -SCS1 00000001 -SDAHT 00000003 -SDISEL 00000003 -SDOSEL 00000005 -SEN 00000000 -SENDB 00000003 -SLRCONA 0000030C -SLRCONA0 00000000 -SLRCONA1 00000001 -SLRCONA2 00000002 -SLRCONA3 00000003 -SLRCONA4 00000004 -SLRCONA5 00000005 -SLRCONA6 00000006 -SLRCONA7 00000007 -SLRCONB 0000030D -SLRCONB0 00000000 -SLRCONB1 00000001 -SLRCONB2 00000002 -SLRCONB3 00000003 -SLRCONB4 00000004 -SLRCONB5 00000005 -SLRCONB6 00000006 -SLRCONB7 00000007 -SLRCONC 0000030E -SLRCONC0 00000000 -SLRCONC1 00000001 -SLRCONC2 00000002 -SLRCONC3 00000003 -SLRCONC4 00000004 -SLRCONC5 00000005 -SLRCONC6 00000006 -SLRCONC7 00000007 -SMP 00000007 -SP 00000006 -SP1BRG 0000019B -SP1BRGH 0000019C -SP1BRGL 0000019B -SPBRG 0000019B -SPBRG1 0000019B -SPBRGH 0000019C -SPBRGH1 0000019C -SPBRGL 0000019B -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 32 - - -SYMBOL TABLE - LABEL VALUE - -SPEN 00000007 -SPLLEN 00000007 -SREN 00000005 -SSP1ADD 00000212 -SSP1ADD0 00000000 -SSP1ADD1 00000001 -SSP1ADD2 00000002 -SSP1ADD3 00000003 -SSP1ADD4 00000004 -SSP1ADD5 00000005 -SSP1ADD6 00000006 -SSP1ADD7 00000007 -SSP1BUF 00000211 -SSP1BUF0 00000000 -SSP1BUF1 00000001 -SSP1BUF2 00000002 -SSP1BUF3 00000003 -SSP1BUF4 00000004 -SSP1BUF5 00000005 -SSP1BUF6 00000006 -SSP1BUF7 00000007 -SSP1CON 00000215 -SSP1CON1 00000215 -SSP1CON2 00000216 -SSP1CON3 00000217 -SSP1IE 00000003 -SSP1IF 00000003 -SSP1MSK 00000213 -SSP1MSK0 00000000 -SSP1MSK1 00000001 -SSP1MSK2 00000002 -SSP1MSK3 00000003 -SSP1MSK4 00000004 -SSP1MSK5 00000005 -SSP1MSK6 00000006 -SSP1MSK7 00000007 -SSP1STAT 00000214 -SSPADD 00000212 -SSPBUF 00000211 -SSPCON 00000215 -SSPCON1 00000215 -SSPCON2 00000216 -SSPCON3 00000217 -SSPEN 00000005 -SSPM0 00000000 -SSPM1 00000001 -SSPM2 00000002 -SSPM3 00000003 -SSPMSK 00000213 -SSPOV 00000006 -SSPSTAT 00000214 -STATUS 00000003 -STATUS_SHAD 00000FE4 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 33 - - -SYMBOL TABLE - LABEL VALUE - -STKOVF 00000007 -STKPTR 00000FED -STKUNF 00000006 -SWDTEN 00000000 -SYNC 00000004 -T0CS 00000005 -T0IE 00000005 -T0IF 00000002 -T0SE 00000004 -T1CKPS0 00000004 -T1CKPS1 00000005 -T1CON 00000018 -T1GCON 00000019 -T1GGO 00000003 -T1GPOL 00000006 -T1GSPM 00000004 -T1GSS0 00000000 -T1GSS1 00000001 -T1GTM 00000005 -T1GVAL 00000002 -T1OSCEN 00000003 -T1OSCR 00000007 -T2CKPS0 00000000 -T2CKPS1 00000001 -T2CON 0000001C -T2OUTPS0 00000003 -T2OUTPS1 00000004 -T2OUTPS2 00000005 -T2OUTPS3 00000006 -TMR0 00000015 -TMR0CS 00000005 -TMR0IE 00000005 -TMR0IF 00000002 -TMR0SE 00000004 -TMR1 00000016 -TMR1CS0 00000006 -TMR1CS1 00000007 -TMR1GE 00000007 -TMR1GIE 00000007 -TMR1GIF 00000007 -TMR1H 00000017 -TMR1IE 00000000 -TMR1IF 00000000 -TMR1L 00000016 -TMR1ON 00000000 -TMR2 0000001A -TMR2IE 00000001 -TMR2IF 00000001 -TMR2ON 00000002 -TOSH 00000FEF -TOSL 00000FEE -TRIGSEL0 00000004 -TRIGSEL1 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 34 - - -SYMBOL TABLE - LABEL VALUE - -TRIGSEL2 00000006 -TRIGSEL3 00000007 -TRISA 0000008C -TRISA0 00000000 -TRISA1 00000001 -TRISA2 00000002 -TRISA3 00000003 -TRISA4 00000004 -TRISA5 00000005 -TRISA6 00000006 -TRISA7 00000007 -TRISB 0000008D -TRISB0 00000000 -TRISB1 00000001 -TRISB2 00000002 -TRISB3 00000003 -TRISB4 00000004 -TRISB5 00000005 -TRISB6 00000006 -TRISB7 00000007 -TRISC 0000008E -TRISC0 00000000 -TRISC1 00000001 -TRISC2 00000002 -TRISC3 00000003 -TRISC4 00000004 -TRISC5 00000005 -TRISC6 00000006 -TRISC7 00000007 -TRISE 00000090 -TRISE3 00000003 -TRMT 00000001 -TSEN 00000005 -TSRNG 00000004 -TUN0 00000000 -TUN1 00000001 -TUN2 00000002 -TUN3 00000003 -TUN4 00000004 -TUN5 00000005 -TX1REG 0000019A -TX1STA 0000019E -TX9 00000006 -TX9D 00000000 -TXEN 00000005 -TXIE 00000004 -TXIF 00000004 -TXREG 0000019A -TXREG1 0000019A -TXSEL 00000002 -TXSTA 0000019E -TXSTA1 0000019E -UA 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 35 - - -SYMBOL TABLE - LABEL VALUE - -VREGCON 00000197 -VREGPM 00000001 -W 00000000 -WCOL 00000007 -WDTCON 00000097 -WDTPS0 00000001 -WDTPS1 00000002 -WDTPS2 00000003 -WDTPS3 00000004 -WDTPS4 00000005 -WPUA 0000020C -WPUA0 00000000 -WPUA1 00000001 -WPUA2 00000002 -WPUA3 00000003 -WPUA4 00000004 -WPUA5 00000005 -WPUA6 00000006 -WPUA7 00000007 -WPUB 0000020D -WPUB0 00000000 -WPUB1 00000001 -WPUB2 00000002 -WPUB3 00000003 -WPUB4 00000004 -WPUB5 00000005 -WPUB6 00000006 -WPUB7 00000007 -WPUC 0000020E -WPUC0 00000000 -WPUC1 00000001 -WPUC2 00000002 -WPUC3 00000003 -WPUC4 00000004 -WPUC5 00000005 -WPUC6 00000006 -WPUC7 00000007 -WPUE 00000210 -WPUE3 00000003 -WR 00000001 -WREG 00000009 -WREG_SHAD 00000FE5 -WREN 00000002 -WRERR 00000003 -WUE 00000001 -Z 00000002 -Z_SHAD 00000002 -_BOREN_NSLEEP 00003DFF -_BOREN_OFF 000039FF -_BOREN_ON 00003FFF -_BOREN_SBODEN 00003BFF -_BORV_HI 00003BFF -_BORV_LO 00003FFF -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 36 - - -SYMBOL TABLE - LABEL VALUE - -_CLKOUTEN_OFF 00003FFF -_CLKOUTEN_ON 000037FF -_CONFIG1 00008007 -_CONFIG2 00008008 -_CPD_OFF 00003FFF -_CPD_ON 00003EFF -_CP_OFF 00003FFF -_CP_ON 00003F7F -_DEBUG_OFF 00003FFF -_DEBUG_ON 00002FFF -_DEVID1 00008006 -_FCMEN_OFF 00001FFF -_FCMEN_ON 00003FFF -_FOSC_ECH 00003FFF -_FOSC_ECL 00003FFD -_FOSC_ECM 00003FFE -_FOSC_EXTRC 00003FFB -_FOSC_HS 00003FFA -_FOSC_INTOSC 00003FFC -_FOSC_LP 00003FF8 -_FOSC_XT 00003FF9 -_IDLOC0 00008000 -_IDLOC1 00008001 -_IDLOC2 00008002 -_IDLOC3 00008003 -_IESO_OFF 00002FFF -_IESO_ON 00003FFF -_LPBOR_OFF 00003FFF -_LPBOR_ON 000037FF -_LVP_OFF 00001FFF -_LVP_ON 00003FFF -_MCLRE_OFF 00003FBF -_MCLRE_ON 00003FFF -_PLLEN_OFF 00003EFF -_PLLEN_ON 00003FFF -_PWRTE_OFF 00003FFF -_PWRTE_ON 00003FDF -_STVREN_OFF 00003DFF -_STVREN_ON 00003FFF -_VCAPEN_OFF 00003FFF -_VCAPEN_ON 00003FDF -_WDTE_NSLEEP 00003FF7 -_WDTE_OFF 00003FE7 -_WDTE_ON 00003FFF -_WDTE_SWDTEN 00003FEF -_WRT_ALL 00003FFC -_WRT_BOOT 00003FFE -_WRT_HALF 00003FFD -_WRT_OFF 00003FFF -__16F1788 00000001 -__CODE_END 00003FFF -__CODE_START 00000000 -__COMMON_RAM_END 0000007F -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:38 PAGE 37 - - -SYMBOL TABLE - LABEL VALUE - -__COMMON_RAM_START 00000070 -__EEPROM_END 0000F0FF -__EEPROM_START 0000F000 -__LINEAR_RAM_END 000027EF -__LINEAR_RAM_START 00002000 -__VECTOR_INT 00000004 -__VECTOR_RESET 00000000 - -Errors : 0 -Warnings : 0 reported, 0 suppressed -Messages : 0 reported, 0 suppressed - -
\ No newline at end of file diff --git a/device/lib/pic14/.checkdevices/check.o b/device/lib/pic14/.checkdevices/check.o Binary files differdeleted file mode 100644 index bd6ab0d..0000000 --- a/device/lib/pic14/.checkdevices/check.o +++ /dev/null diff --git a/device/lib/pic14/a.lst b/device/lib/pic14/a.lst deleted file mode 100644 index 31bafe0..0000000 --- a/device/lib/pic14/a.lst +++ /dev/null @@ -1,22 +0,0 @@ -gplink-1.4.0 #1107 (Apr 3 2018) -Copyright (c) 1998-2014 gputils project -Listing File Generated: 10-15-2019 15:44:38 - - -Address Value Disassembly Source -------- ----- ----------- ------ - include "p16f1788.inc" - LIST - - ;========================================================================== - ; Build date : Aug 07 2014 - ; MPASM PIC16F1788 processor include - ; - ; (c) Copyright 1999-2014 Microchip Technology, All rights reserved - ;========================================================================== - - NOLIST - CODE -000000 3104 addfsr 4, .4 ADDFSR FSR0, 4 -000001 0012 moviw 0++ MOVIW FSR0++ - END diff --git a/device/lib/pic16/.checkdevices/check.lst b/device/lib/pic16/.checkdevices/check.lst deleted file mode 100644 index a8ee0d9..0000000 --- a/device/lib/pic16/.checkdevices/check.lst +++ /dev/null @@ -1,2749 +0,0 @@ -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 1 - - -LOC OBJECT CODE LINE SOURCE TEXT - VALUE - - 00001 include "p18lf66k80.inc" - 00001 LIST - 00002 - 00003 ;========================================================================== - 00004 ; Build date : Aug 07 2014 - 00005 ; MPASM PIC18LF66K80 processor include - 00006 ; - 00007 ; (c) Copyright 1999-2014 Microchip Technology, All rights reserved - 00008 ;========================================================================== - 00009 - 05573 LIST - 00002 END -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 2 - - -SYMBOL TABLE - LABEL VALUE - -A 00000000 -ABAT 00000004 -ABDEN 00000000 -ABDOVF 00000007 -ACCESS 00000000 -ACKDT 00000005 -ACKEN 00000004 -ACKSTAT 00000006 -ACQT0 00000003 -ACQT1 00000004 -ACQT2 00000005 -ADCMD 00000005 -ADCON0 00000FC2 -ADCON1 00000FC1 -ADCON2 00000FC0 -ADCS0 00000000 -ADCS1 00000001 -ADCS2 00000002 -ADDEN 00000003 -ADDEN1 00000003 -ADDEN2 00000003 -ADEN 00000003 -ADFM 00000007 -ADIE 00000006 -ADIF 00000006 -ADIP 00000006 -ADMSK1 00000001 -ADMSK2 00000002 -ADMSK3 00000003 -ADMSK4 00000004 -ADMSK5 00000005 -ADON 00000000 -ADRES 00000FC3 -ADRESH 00000FC4 -ADRESL 00000FC3 -ANCON0 00000F5D -ANCON1 00000F5C -ANSEL0 00000000 -ANSEL1 00000001 -ANSEL10 00000002 -ANSEL11 00000003 -ANSEL12 00000004 -ANSEL13 00000005 -ANSEL14 00000006 -ANSEL2 00000002 -ANSEL3 00000003 -ANSEL4 00000004 -ANSEL5 00000005 -ANSEL6 00000006 -ANSEL7 00000007 -ANSEL8 00000000 -ANSEL9 00000001 -B0CON 00000E80 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 3 - - -SYMBOL TABLE - LABEL VALUE - -B0D0 00000E86 -B0D00 00000000 -B0D01 00000001 -B0D02 00000002 -B0D03 00000003 -B0D04 00000004 -B0D05 00000005 -B0D06 00000006 -B0D07 00000007 -B0D1 00000E87 -B0D10 00000000 -B0D11 00000001 -B0D12 00000002 -B0D13 00000003 -B0D14 00000004 -B0D15 00000005 -B0D16 00000006 -B0D17 00000007 -B0D2 00000E88 -B0D20 00000000 -B0D21 00000001 -B0D22 00000002 -B0D23 00000003 -B0D24 00000004 -B0D25 00000005 -B0D26 00000006 -B0D27 00000007 -B0D3 00000E89 -B0D30 00000000 -B0D31 00000001 -B0D32 00000002 -B0D33 00000003 -B0D34 00000004 -B0D35 00000005 -B0D36 00000006 -B0D37 00000007 -B0D4 00000E8A -B0D40 00000000 -B0D41 00000001 -B0D42 00000002 -B0D43 00000003 -B0D44 00000004 -B0D45 00000005 -B0D46 00000006 -B0D47 00000007 -B0D5 00000E8B -B0D50 00000000 -B0D51 00000001 -B0D52 00000002 -B0D53 00000003 -B0D54 00000004 -B0D55 00000005 -B0D56 00000006 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 4 - - -SYMBOL TABLE - LABEL VALUE - -B0D57 00000007 -B0D6 00000E8C -B0D60 00000000 -B0D61 00000001 -B0D62 00000002 -B0D63 00000003 -B0D64 00000004 -B0D65 00000005 -B0D66 00000006 -B0D67 00000007 -B0D7 00000E8D -B0D70 00000000 -B0D71 00000001 -B0D72 00000002 -B0D73 00000003 -B0D74 00000004 -B0D75 00000005 -B0D76 00000006 -B0D77 00000007 -B0DLC 00000E85 -B0EIDH 00000E83 -B0EIDL 00000E84 -B0IE 00000002 -B0SIDH 00000E81 -B0SIDL 00000E82 -B0TXEN 00000002 -B1CON 00000E90 -B1D0 00000E96 -B1D00 00000000 -B1D01 00000001 -B1D02 00000002 -B1D03 00000003 -B1D04 00000004 -B1D05 00000005 -B1D06 00000006 -B1D07 00000007 -B1D1 00000E97 -B1D10 00000000 -B1D11 00000001 -B1D12 00000002 -B1D13 00000003 -B1D14 00000004 -B1D15 00000005 -B1D16 00000006 -B1D17 00000007 -B1D2 00000E98 -B1D20 00000000 -B1D21 00000001 -B1D22 00000002 -B1D23 00000003 -B1D24 00000004 -B1D25 00000005 -B1D26 00000006 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 5 - - -SYMBOL TABLE - LABEL VALUE - -B1D27 00000007 -B1D3 00000E99 -B1D30 00000000 -B1D31 00000001 -B1D32 00000002 -B1D33 00000003 -B1D34 00000004 -B1D35 00000005 -B1D36 00000006 -B1D37 00000007 -B1D4 00000E9A -B1D40 00000000 -B1D41 00000001 -B1D42 00000002 -B1D43 00000003 -B1D44 00000004 -B1D45 00000005 -B1D46 00000006 -B1D47 00000007 -B1D5 00000E9B -B1D50 00000000 -B1D51 00000001 -B1D52 00000002 -B1D53 00000003 -B1D54 00000004 -B1D55 00000005 -B1D56 00000006 -B1D57 00000007 -B1D6 00000E9C -B1D60 00000000 -B1D61 00000001 -B1D62 00000002 -B1D63 00000003 -B1D64 00000004 -B1D65 00000005 -B1D66 00000006 -B1D67 00000007 -B1D7 00000E9D -B1D70 00000000 -B1D71 00000001 -B1D72 00000002 -B1D73 00000003 -B1D74 00000004 -B1D75 00000005 -B1D76 00000006 -B1D77 00000007 -B1DLC 00000E95 -B1EIDH 00000E93 -B1EIDL 00000E94 -B1IE 00000003 -B1SIDH 00000E91 -B1SIDL 00000E92 -B1TXEN 00000003 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 6 - - -SYMBOL TABLE - LABEL VALUE - -B2CON 00000EA0 -B2D0 00000EA6 -B2D00 00000000 -B2D01 00000001 -B2D02 00000002 -B2D03 00000003 -B2D04 00000004 -B2D05 00000005 -B2D06 00000006 -B2D07 00000007 -B2D1 00000EA7 -B2D10 00000000 -B2D11 00000001 -B2D12 00000002 -B2D13 00000003 -B2D14 00000004 -B2D15 00000005 -B2D16 00000006 -B2D17 00000007 -B2D2 00000EA8 -B2D20 00000000 -B2D21 00000001 -B2D22 00000002 -B2D23 00000003 -B2D24 00000004 -B2D25 00000005 -B2D26 00000006 -B2D27 00000007 -B2D3 00000EA9 -B2D30 00000000 -B2D31 00000001 -B2D32 00000002 -B2D33 00000003 -B2D34 00000004 -B2D35 00000005 -B2D36 00000006 -B2D37 00000007 -B2D4 00000EAA -B2D40 00000000 -B2D41 00000001 -B2D42 00000002 -B2D43 00000003 -B2D44 00000004 -B2D45 00000005 -B2D46 00000006 -B2D47 00000007 -B2D5 00000EAB -B2D50 00000000 -B2D51 00000001 -B2D52 00000002 -B2D53 00000003 -B2D54 00000004 -B2D55 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 7 - - -SYMBOL TABLE - LABEL VALUE - -B2D56 00000006 -B2D57 00000007 -B2D6 00000EAC -B2D60 00000000 -B2D61 00000001 -B2D62 00000002 -B2D63 00000003 -B2D64 00000004 -B2D65 00000005 -B2D66 00000006 -B2D67 00000007 -B2D7 00000EAD -B2D70 00000000 -B2D71 00000001 -B2D72 00000002 -B2D73 00000003 -B2D74 00000004 -B2D75 00000005 -B2D76 00000006 -B2D77 00000007 -B2DLC 00000EA5 -B2EIDH 00000EA3 -B2EIDL 00000EA4 -B2IE 00000004 -B2SIDH 00000EA1 -B2SIDL 00000EA2 -B2TXEN 00000004 -B3CON 00000EB0 -B3D0 00000EB6 -B3D00 00000000 -B3D01 00000001 -B3D02 00000002 -B3D03 00000003 -B3D04 00000004 -B3D05 00000005 -B3D06 00000006 -B3D07 00000007 -B3D1 00000EB7 -B3D10 00000000 -B3D11 00000001 -B3D12 00000002 -B3D13 00000003 -B3D14 00000004 -B3D15 00000005 -B3D16 00000006 -B3D17 00000007 -B3D2 00000EB8 -B3D20 00000000 -B3D21 00000001 -B3D22 00000002 -B3D23 00000003 -B3D24 00000004 -B3D25 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 8 - - -SYMBOL TABLE - LABEL VALUE - -B3D26 00000006 -B3D27 00000007 -B3D3 00000EB9 -B3D30 00000000 -B3D31 00000001 -B3D32 00000002 -B3D33 00000003 -B3D34 00000004 -B3D35 00000005 -B3D36 00000006 -B3D37 00000007 -B3D4 00000EBA -B3D40 00000000 -B3D41 00000001 -B3D42 00000002 -B3D43 00000003 -B3D44 00000004 -B3D45 00000005 -B3D46 00000006 -B3D47 00000007 -B3D5 00000EBB -B3D50 00000000 -B3D51 00000001 -B3D52 00000002 -B3D53 00000003 -B3D54 00000004 -B3D55 00000005 -B3D56 00000006 -B3D57 00000007 -B3D6 00000EBC -B3D60 00000000 -B3D61 00000001 -B3D62 00000002 -B3D63 00000003 -B3D64 00000004 -B3D65 00000005 -B3D66 00000006 -B3D67 00000007 -B3D7 00000EBD -B3D70 00000000 -B3D71 00000001 -B3D72 00000002 -B3D73 00000003 -B3D74 00000004 -B3D75 00000005 -B3D76 00000006 -B3D77 00000007 -B3DLC 00000EB5 -B3EIDH 00000EB3 -B3EIDL 00000EB4 -B3IE 00000005 -B3SIDH 00000EB1 -B3SIDL 00000EB2 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 9 - - -SYMBOL TABLE - LABEL VALUE - -B3TXEN 00000005 -B4CON 00000EC0 -B4D0 00000EC6 -B4D00 00000000 -B4D01 00000001 -B4D02 00000002 -B4D03 00000003 -B4D04 00000004 -B4D05 00000005 -B4D06 00000006 -B4D07 00000007 -B4D1 00000EC7 -B4D10 00000000 -B4D11 00000001 -B4D12 00000002 -B4D13 00000003 -B4D14 00000004 -B4D15 00000005 -B4D16 00000006 -B4D17 00000007 -B4D2 00000EC8 -B4D20 00000000 -B4D21 00000001 -B4D22 00000002 -B4D23 00000003 -B4D24 00000004 -B4D25 00000005 -B4D26 00000006 -B4D27 00000007 -B4D3 00000EC9 -B4D30 00000000 -B4D31 00000001 -B4D32 00000002 -B4D33 00000003 -B4D34 00000004 -B4D35 00000005 -B4D36 00000006 -B4D37 00000007 -B4D4 00000ECA -B4D40 00000000 -B4D41 00000001 -B4D42 00000002 -B4D43 00000003 -B4D44 00000004 -B4D45 00000005 -B4D46 00000006 -B4D47 00000007 -B4D5 00000ECB -B4D50 00000000 -B4D51 00000001 -B4D52 00000002 -B4D53 00000003 -B4D54 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 10 - - -SYMBOL TABLE - LABEL VALUE - -B4D55 00000005 -B4D56 00000006 -B4D57 00000007 -B4D6 00000ECC -B4D60 00000000 -B4D61 00000001 -B4D62 00000002 -B4D63 00000003 -B4D64 00000004 -B4D65 00000005 -B4D66 00000006 -B4D67 00000007 -B4D7 00000ECD -B4D70 00000000 -B4D71 00000001 -B4D72 00000002 -B4D73 00000003 -B4D74 00000004 -B4D75 00000005 -B4D76 00000006 -B4D77 00000007 -B4DLC 00000EC5 -B4EIDH 00000EC3 -B4EIDL 00000EC4 -B4IE 00000006 -B4SIDH 00000EC1 -B4SIDL 00000EC2 -B4TXEN 00000006 -B5CON 00000ED0 -B5D0 00000ED6 -B5D00 00000000 -B5D01 00000001 -B5D02 00000002 -B5D03 00000003 -B5D04 00000004 -B5D05 00000005 -B5D06 00000006 -B5D07 00000007 -B5D1 00000ED7 -B5D10 00000000 -B5D11 00000001 -B5D12 00000002 -B5D13 00000003 -B5D14 00000004 -B5D15 00000005 -B5D16 00000006 -B5D17 00000007 -B5D2 00000ED8 -B5D20 00000000 -B5D21 00000001 -B5D22 00000002 -B5D23 00000003 -B5D24 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 11 - - -SYMBOL TABLE - LABEL VALUE - -B5D25 00000005 -B5D26 00000006 -B5D27 00000007 -B5D3 00000ED9 -B5D30 00000000 -B5D31 00000001 -B5D32 00000002 -B5D33 00000003 -B5D34 00000004 -B5D35 00000005 -B5D36 00000006 -B5D37 00000007 -B5D4 00000EDA -B5D40 00000000 -B5D41 00000001 -B5D42 00000002 -B5D43 00000003 -B5D44 00000004 -B5D45 00000005 -B5D46 00000006 -B5D47 00000007 -B5D5 00000EDB -B5D50 00000000 -B5D51 00000001 -B5D52 00000002 -B5D53 00000003 -B5D54 00000004 -B5D55 00000005 -B5D56 00000006 -B5D57 00000007 -B5D6 00000EDC -B5D60 00000000 -B5D61 00000001 -B5D62 00000002 -B5D63 00000003 -B5D64 00000004 -B5D65 00000005 -B5D66 00000006 -B5D67 00000007 -B5D7 00000EDD -B5D70 00000000 -B5D71 00000001 -B5D72 00000002 -B5D73 00000003 -B5D74 00000004 -B5D75 00000005 -B5D76 00000006 -B5D77 00000007 -B5DLC 00000ED5 -B5EIDH 00000ED3 -B5EIDL 00000ED4 -B5IE 00000007 -B5SIDH 00000ED1 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 12 - - -SYMBOL TABLE - LABEL VALUE - -B5SIDL 00000ED2 -B5TXEN 00000007 -BANKED 00000001 -BAUDCON1 00000FA7 -BAUDCON2 00000FB9 -BCLIE 00000003 -BCLIF 00000003 -BCLIP 00000003 -BF 00000000 -BGVST 00000006 -BIE0 00000E7E -BOR 00000000 -BRG16 00000003 -BRGCON1 00000E43 -BRGCON2 00000E44 -BRGCON3 00000E45 -BRGH 00000002 -BRGH1 00000002 -BRGH2 00000002 -BRP0 00000000 -BRP1 00000001 -BRP2 00000002 -BRP3 00000003 -BRP4 00000004 -BRP5 00000005 -BSEL0 00000E7D -BSR 00000FE0 -C 00000000 -C1TSEL 00000000 -C2TSEL 00000001 -C3TSEL 00000002 -C4TSEL 00000003 -C5TSEL 00000004 -CANCAP 00000004 -CANCON 00000F6F -CANCON_RO0 00000F3F -CANCON_RO1 00000F2F -CANCON_RO2 00000F1F -CANCON_RO3 00000F0F -CANCON_RO4 00000EDF -CANCON_RO5 00000ECF -CANCON_RO6 00000EBF -CANCON_RO7 00000EAF -CANCON_RO8 00000E9F -CANCON_RO9 00000E8F -CANSTAT 00000F6E -CANSTAT_RO0 00000F3E -CANSTAT_RO1 00000F2E -CANSTAT_RO2 00000F1E -CANSTAT_RO3 00000F0E -CANSTAT_RO4 00000EDE -CANSTAT_RO5 00000ECE -CANSTAT_RO6 00000EBE -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 13 - - -SYMBOL TABLE - LABEL VALUE - -CANSTAT_RO7 00000EAE -CANSTAT_RO8 00000E9E -CANSTAT_RO9 00000E8E -CCH0 00000000 -CCH1 00000001 -CCP1CON 00000FBB -CCP1IE 00000001 -CCP1IF 00000001 -CCP1IP 00000001 -CCP1M0 00000000 -CCP1M1 00000001 -CCP1M2 00000002 -CCP1M3 00000003 -CCP1MD 00000003 -CCP1OD 00000002 -CCP1X 00000005 -CCP1Y 00000004 -CCP2CON 00000F50 -CCP2IE 00000002 -CCP2IF 00000002 -CCP2IP 00000002 -CCP2M0 00000000 -CCP2M1 00000001 -CCP2M2 00000002 -CCP2M3 00000003 -CCP2MD 00000004 -CCP2OD 00000003 -CCP2X 00000005 -CCP2Y 00000004 -CCP3CON 00000F4D -CCP3IE 00000000 -CCP3IF 00000000 -CCP3IP 00000000 -CCP3M0 00000000 -CCP3M1 00000001 -CCP3M2 00000002 -CCP3M3 00000003 -CCP3MD 00000005 -CCP3OD 00000004 -CCP3X 00000005 -CCP3Y 00000004 -CCP4CON 00000F4A -CCP4IE 00000001 -CCP4IF 00000001 -CCP4IP 00000001 -CCP4M0 00000000 -CCP4M1 00000001 -CCP4M2 00000002 -CCP4M3 00000003 -CCP4MD 00000006 -CCP4OD 00000005 -CCP4X 00000005 -CCP4Y 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 14 - - -SYMBOL TABLE - LABEL VALUE - -CCP5CON 00000F47 -CCP5IE 00000002 -CCP5IF 00000002 -CCP5IP 00000002 -CCP5M0 00000000 -CCP5M1 00000001 -CCP5M2 00000002 -CCP5M3 00000003 -CCP5MD 00000007 -CCP5OD 00000006 -CCP5X 00000005 -CCP5Y 00000004 -CCPR1 00000FBC -CCPR1H 00000FBD -CCPR1L 00000FBC -CCPR2 00000F51 -CCPR2H 00000F52 -CCPR2L 00000F51 -CCPR3 00000F4E -CCPR3H 00000F4F -CCPR3L 00000F4E -CCPR4 00000F4B -CCPR4H 00000F4C -CCPR4L 00000F4B -CCPR5 00000F48 -CCPR5H 00000F49 -CCPR5L 00000F48 -CCPTMRS 00000F99 -CFGS 00000006 -CHS0 00000002 -CHS1 00000003 -CHS2 00000004 -CHS3 00000005 -CHS4 00000006 -CHSN0 00000000 -CHSN1 00000001 -CHSN2 00000002 -CIOCON 00000F70 -CKE 00000006 -CKP 00000004 -CLKSEL 00000000 -CM 00000005 -CM1CON 00000F5F -CM1CON1 00000F5F -CM2CON 00000F5E -CM2CON1 00000F5E -CMP1IE 00000004 -CMP1IF 00000004 -CMP1IP 00000004 -CMP1MD 00000000 -CMP1OUT 00000006 -CMP2IE 00000005 -CMP2IF 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 15 - - -SYMBOL TABLE - LABEL VALUE - -CMP2IP 00000005 -CMP2MD 00000001 -CMP2OUT 00000007 -CMPL0 00000006 -CMPL1 00000007 -CMSTAT 00000FB4 -CMSTATUS 00000FB4 -COE 00000006 -COMSTAT 00000F71 -CON 00000007 -CPOL 00000005 -CREF 00000002 -CREN 00000004 -CREN1 00000004 -CREN2 00000004 -CSRC 00000007 -CSRC1 00000007 -CSRC2 00000007 -CTMUCONH 00000F55 -CTMUCONL 00000F54 -CTMUDS 00000000 -CTMUEN 00000007 -CTMUICON 00000F53 -CTMUIE 00000003 -CTMUIF 00000003 -CTMUIP 00000003 -CTMUMD 00000006 -CTMUSIDL 00000005 -CTTRIG 00000000 -CVR0 00000000 -CVR1 00000001 -CVR2 00000002 -CVR3 00000003 -CVR4 00000004 -CVRCON 00000FB5 -CVREN 00000007 -CVROE 00000006 -CVRSS 00000005 -DATA_ADDRESS 00000005 -DC 00000001 -DC1B0 00000004 -DC1B1 00000005 -DC2B0 00000004 -DC2B1 00000005 -DC3B0 00000004 -DC3B1 00000005 -DC4B0 00000004 -DC4B1 00000005 -DC5B0 00000004 -DC5B1 00000005 -DDRA TRISA -DDRB TRISB -DDRC TRISC -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 16 - - -SYMBOL TABLE - LABEL VALUE - -DDRD TRISD -DDRE TRISE -DLC0 00000000 -DLC1 00000001 -DLC2 00000002 -DLC3 00000003 -DONE 00000001 -D_A 00000005 -D_NOT_A 00000005 -ECANCON 00000F72 -ECANMD 00000002 -ECCP1AS 00000FBF -ECCP1AS0 00000004 -ECCP1AS1 00000005 -ECCP1AS2 00000006 -ECCP1ASE 00000007 -ECCP1CON 00000FBB -ECCP1DEL 00000FBE -ECCP2CON 00000F50 -EDG1POL 00000004 -EDG1SEL0 00000002 -EDG1SEL1 00000003 -EDG1STAT 00000000 -EDG2POL 00000007 -EDG2SEL0 00000005 -EDG2SEL1 00000006 -EDG2STAT 00000001 -EDGEN 00000003 -EDGSEQEN 00000002 -EDI16 00000000 -EDI17 00000001 -EEADR 00000F74 -EEADRH 00000F75 -EECON1 00000F7F -EECON2 00000F7E -EEDATA 00000F73 -EEIE 00000006 -EEIF 00000006 -EEIP 00000006 -EEPGD 00000007 -EICODE0 00000000 -EICODE1 00000001 -EICODE1_ICODE0 00000001 -EICODE2 00000002 -EICODE2_ICODE1 00000002 -EICODE3 00000003 -EICODE3_ICODE2 00000003 -EICODE4 00000004 -EID0 00000000 -EID1 00000001 -EID10 00000002 -EID11 00000003 -EID12 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 17 - - -SYMBOL TABLE - LABEL VALUE - -EID13 00000005 -EID14 00000006 -EID15 00000007 -EID16 00000000 -EID17 00000001 -EID2 00000002 -EID3 00000003 -EID4 00000004 -EID5 00000005 -EID6 00000006 -EID7 00000007 -EID8 00000000 -EID9 00000001 -ENDRHI 00000005 -ERRIE 00000005 -ERRIF 00000005 -ERRIP 00000005 -EVPOL0 00000003 -EVPOL1 00000004 -EWARN 00000000 -EWIN0 00000000 -EWIN1 00000001 -EWIN2 00000002 -EWIN3 00000003 -EWIN4 00000004 -EXID 00000003 -EXIDE 00000003 -EXIDEN 00000003 -F0BP_0 00000000 -F0BP_1 00000001 -F0BP_2 00000002 -F0BP_3 00000003 -F10BP_0 00000000 -F10BP_1 00000001 -F10BP_2 00000002 -F10BP_3 00000003 -F11BP_0 00000004 -F11BP_1 00000005 -F11BP_2 00000006 -F11BP_3 00000007 -F12BP_0 00000000 -F12BP_1 00000001 -F12BP_2 00000002 -F12BP_3 00000003 -F13BP_0 00000004 -F13BP_1 00000005 -F13BP_2 00000006 -F13BP_3 00000007 -F14BP_0 00000000 -F14BP_1 00000001 -F14BP_2 00000002 -F14BP_3 00000003 -F15BP_0 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 18 - - -SYMBOL TABLE - LABEL VALUE - -F15BP_1 00000005 -F15BP_2 00000006 -F15BP_3 00000007 -F1BP_0 00000004 -F1BP_1 00000005 -F1BP_2 00000006 -F1BP_3 00000007 -F2BP_0 00000000 -F2BP_1 00000001 -F2BP_2 00000002 -F2BP_3 00000003 -F3BP_0 00000004 -F3BP_1 00000005 -F3BP_2 00000006 -F3BP_3 00000007 -F4BP_0 00000000 -F4BP_1 00000001 -F4BP_2 00000002 -F4BP_3 00000003 -F5BP_0 00000004 -F5BP_1 00000005 -F5BP_2 00000006 -F5BP_3 00000007 -F6BP_0 00000000 -F6BP_1 00000001 -F6BP_2 00000002 -F6BP_3 00000003 -F7BP_0 00000004 -F7BP_1 00000005 -F7BP_2 00000006 -F7BP_3 00000007 -F8BP_0 00000000 -F8BP_1 00000001 -F8BP_2 00000002 -F8BP_3 00000003 -F9BP_0 00000004 -F9BP_1 00000005 -F9BP_2 00000006 -F9BP_3 00000007 -FAST 00000001 -FERR 00000002 -FERR1 00000002 -FERR2 00000002 -FIFOWM 00000005 -FIFOWMIE 00000000 -FIFOWMIF 00000000 -FIFOWMIP 00000000 -FIL0_0 00000000 -FIL0_1 00000001 -FIL10_0 00000004 -FIL10_1 00000005 -FIL11_0 00000006 -FIL11_1 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 19 - - -SYMBOL TABLE - LABEL VALUE - -FIL12_0 00000000 -FIL12_1 00000001 -FIL13_0 00000002 -FIL13_1 00000003 -FIL14_0 00000004 -FIL14_1 00000005 -FIL15_0 00000006 -FIL15_1 00000007 -FIL1_0 00000002 -FIL1_1 00000003 -FIL2_0 00000004 -FIL2_1 00000005 -FIL3_0 00000006 -FIL3_1 00000007 -FIL4_0 00000000 -FIL4_1 00000001 -FIL5_0 00000002 -FIL5_1 00000003 -FIL6_0 00000004 -FIL6_1 00000005 -FIL7_0 00000006 -FIL7_1 00000007 -FIL8_0 00000000 -FIL8_1 00000001 -FIL9_0 00000002 -FIL9_1 00000003 -FILHIT0 00000000 -FILHIT0_TXPRI0 00000000 -FILHIT1 00000001 -FILHIT1_TXPRI1 00000001 -FILHIT2 00000002 -FILHIT2_RTREN 00000002 -FILHIT3 00000003 -FILHIT3_TXREQ 00000003 -FILHIT4 00000004 -FILHIT4_TXERR 00000004 -FLC0 00000000 -FLC1 00000001 -FLC2 00000002 -FLC3 00000003 -FLC4 00000004 -FP0 00000000 -FP1 00000001 -FP2 00000002 -FP3 00000003 -FREE 00000004 -FSR0 00000000 -FSR0H 00000FEA -FSR0L 00000FE9 -FSR1 00000001 -FSR1H 00000FE2 -FSR1L 00000FE1 -FSR2 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 20 - - -SYMBOL TABLE - LABEL VALUE - -FSR2H 00000FDA -FSR2L 00000FD9 -GCEN 00000007 -GIE 00000007 -GIEH 00000007 -GIEL 00000006 -GIE_GIEH 00000007 -GO 00000001 -GO_NOT_DONE 00000001 -HFIOFS 00000002 -HLVDCON 00000FA8 -HLVDEN 00000004 -HLVDIE 00000002 -HLVDIF 00000002 -HLVDIP 00000002 -HLVDL0 00000000 -HLVDL1 00000001 -HLVDL2 00000002 -HLVDL3 00000003 -I2C_DAT 00000005 -I2C_READ 00000002 -I2C_START 00000003 -I2C_STOP 00000004 -IBF 00000007 -IBOV 00000005 -ICODE0 00000001 -ICODE1 00000002 -ICODE2 00000003 -ICODE20 00000001 -ICODE21 00000002 -IDISSEN 00000001 -IDLEN 00000007 -INDF0 00000FEF -INDF1 00000FE7 -INDF2 00000FDF -INT0E 00000004 -INT0F 00000001 -INT0IE 00000004 -INT0IF 00000001 -INT1E 00000003 -INT1F 00000000 -INT1IE 00000003 -INT1IF 00000000 -INT1IP 00000006 -INT1P 00000006 -INT2E 00000004 -INT2F 00000001 -INT2IE 00000004 -INT2IF 00000001 -INT2IP 00000007 -INT2P 00000007 -INT3E 00000005 -INT3F 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 21 - - -SYMBOL TABLE - LABEL VALUE - -INT3IE 00000005 -INT3IF 00000002 -INT3IP 00000001 -INT3P 00000001 -INTCON 00000FF2 -INTCON1 00000FF2 -INTCON2 00000FF1 -INTCON3 00000FF0 -INTEDG0 00000006 -INTEDG1 00000005 -INTEDG2 00000004 -INTEDG3 00000003 -INTSRC 00000007 -IOCB 00000F5A -IOCB4 00000004 -IOCB5 00000005 -IOCB6 00000006 -IOCB7 00000007 -IPEN 00000007 -IPR1 00000F9F -IPR2 00000FA2 -IPR3 00000FA5 -IPR4 00000FB8 -IPR5 00000F78 -IRCF0 00000004 -IRCF1 00000005 -IRCF2 00000006 -IRNG0 00000000 -IRNG1 00000001 -IRVST 00000005 -IRXIE 00000007 -IRXIF 00000007 -IRXIP 00000007 -ITRIM0 00000002 -ITRIM1 00000003 -ITRIM2 00000004 -ITRIM3 00000005 -ITRIM4 00000006 -ITRIM5 00000007 -JTOFF 00000001 -JTOFF_FILHIT1 00000001 -LATA 00000F89 -LATA0 00000000 -LATA1 00000001 -LATA2 00000002 -LATA3 00000003 -LATA5 00000005 -LATA6 00000006 -LATA7 00000007 -LATB 00000F8A -LATB0 00000000 -LATB1 00000001 -LATB2 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 22 - - -SYMBOL TABLE - LABEL VALUE - -LATB3 00000003 -LATB4 00000004 -LATB5 00000005 -LATB6 00000006 -LATB7 00000007 -LATC 00000F8B -LATC0 00000000 -LATC1 00000001 -LATC2 00000002 -LATC3 00000003 -LATC4 00000004 -LATC5 00000005 -LATC6 00000006 -LATC7 00000007 -LATD 00000F8C -LATD0 00000000 -LATD1 00000001 -LATD2 00000002 -LATD3 00000003 -LATD4 00000004 -LATD5 00000005 -LATD6 00000006 -LATD7 00000007 -LATE 00000F8D -LATE0 00000000 -LATE1 00000001 -LATE2 00000002 -LATE4 00000004 -LATE5 00000005 -LATE6 00000006 -LATE7 00000007 -LATF 00000F8E -LATF0 00000000 -LATF1 00000001 -LATF2 00000002 -LATF3 00000003 -LATF4 00000004 -LATF5 00000005 -LATF6 00000006 -LATF7 00000007 -LATG 00000F8F -LATG0 00000000 -LATG1 00000001 -LATG2 00000002 -LATG3 00000003 -LATG4 00000004 -LVDIE 00000002 -LVDIF 00000002 -LVDIP 00000002 -LVDL0 00000000 -LVDL1 00000001 -LVDL2 00000002 -LVDL3 00000003 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 23 - - -SYMBOL TABLE - LABEL VALUE - -MDBIT 00000000 -MDCARH 00000F43 -MDCARL 00000F42 -MDCH0 00000000 -MDCH1 00000001 -MDCH2 00000002 -MDCH3 00000003 -MDCHODIS 00000007 -MDCHPOL 00000006 -MDCHSYNC 00000005 -MDCL0 00000000 -MDCL1 00000001 -MDCL2 00000002 -MDCL3 00000003 -MDCLODIS 00000007 -MDCLPOL 00000006 -MDCLSYNC 00000005 -MDCON 00000F45 -MDEN 00000007 -MDO 00000003 -MDOE 00000006 -MDOPOL 00000004 -MDSEL0 00000006 -MDSEL1 00000007 -MDSLR 00000005 -MDSODIS 00000007 -MDSRC 00000F44 -MDSRC0 00000000 -MDSRC1 00000001 -MDSRC2 00000002 -MDSRC3 00000003 -MFIOFS 00000001 -MFIOSEL 00000000 -MODMD 00000003 -MSEL0 00000E79 -MSEL1 00000E7A -MSEL2 00000E7B -MSEL3 00000E7C -MSK0 00000000 -MSK1 00000001 -MSK2 00000002 -MSK3 00000003 -MSK4 00000004 -MSK5 00000005 -MSK6 00000006 -MSK7 00000007 -N 00000004 -NOT_A 00000005 -NOT_ADDRESS 00000005 -NOT_BOR 00000000 -NOT_CM 00000005 -NOT_DONE 00000001 -NOT_FIFOEMPTY 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 24 - - -SYMBOL TABLE - LABEL VALUE - -NOT_PD 00000002 -NOT_POR 00000001 -NOT_RBPU 00000007 -NOT_RC8 00000006 -NOT_RI 00000004 -NOT_T1DONE 00000003 -NOT_T1SYNC 00000002 -NOT_T3DONE 00000003 -NOT_T3SYNC 00000002 -NOT_TO 00000003 -NOT_TX8 00000006 -NOT_W 00000002 -NOT_WRITE 00000002 -OBF 00000006 -ODCON 00000F91 -OERR 00000001 -OERR1 00000001 -OERR2 00000001 -OPMODE0 00000005 -OPMODE1 00000006 -OPMODE2 00000007 -OSCCON 00000FD3 -OSCCON2 00000FD2 -OSCFIE 00000007 -OSCFIF 00000007 -OSCFIP 00000007 -OSCTUNE 00000F9B -OSTS 00000003 -OV 00000003 -P 00000004 -P1DC0 00000000 -P1DC1 00000001 -P1DC2 00000002 -P1DC3 00000003 -P1DC4 00000004 -P1DC5 00000005 -P1DC6 00000006 -P1M0 00000006 -P1M1 00000007 -P1RSEN 00000007 -PADCFG1 00000F56 -PC 00000FF9 -PCL 00000FF9 -PCLATH 00000FFA -PCLATU 00000FFB -PD 00000002 -PEIE 00000006 -PEIE_GIEL 00000006 -PEN 00000002 -PIE1 00000F9D -PIE2 00000FA0 -PIE3 00000FA3 -PIE4 00000FB6 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 25 - - -SYMBOL TABLE - LABEL VALUE - -PIE5 00000F76 -PIR1 00000F9E -PIR2 00000FA1 -PIR3 00000FA4 -PIR4 00000FB7 -PIR5 00000F77 -PLLEN 00000006 -PLUSW0 00000FEB -PLUSW1 00000FE3 -PLUSW2 00000FDB -PMD0 00000F59 -PMD1 00000F58 -PMD2 00000F57 -POR 00000001 -PORTA 00000F80 -PORTB 00000F81 -PORTC 00000F82 -PORTD 00000F83 -PORTE 00000F84 -PORTF 00000F85 -PORTG 00000F86 -POSTDEC0 00000FED -POSTDEC1 00000FE5 -POSTDEC2 00000FDD -POSTINC0 00000FEE -POSTINC1 00000FE6 -POSTINC2 00000FDE -PR2 00000FCB -PR4 00000FA9 -PREINC0 00000FEC -PREINC1 00000FE4 -PREINC2 00000FDC -PROD 00000FF3 -PRODH 00000FF4 -PRODL 00000FF3 -PRSEG0 00000000 -PRSEG1 00000001 -PRSEG2 00000002 -PSA 00000003 -PSPCON 00000F46 -PSPIE 00000007 -PSPIF 00000007 -PSPIP 00000007 -PSPMD 00000007 -PSPMODE 00000004 -PSS1AC0 00000002 -PSS1AC1 00000003 -PSS1BD0 00000000 -PSS1BD1 00000001 -PSTR1CON 00000F9C -PWM1CON 00000FBE -RA0 00000000 -RA1 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 26 - - -SYMBOL TABLE - LABEL VALUE - -RA2 00000002 -RA3 00000003 -RA5 00000005 -RA6 00000006 -RA7 00000007 -RB0DBEN 00000002 -RB0DBEN_FILHIT2 00000002 -RB0_B0DLC 00000004 -RB0_B1DLC 00000004 -RB0_B2DLC 00000004 -RB0_B3DLC 00000004 -RB0_B4DLC 00000004 -RB0_B5DLC 00000004 -RB0_PORTB 00000000 -RB0_RXB0DLC 00000004 -RB0_RXB1DLC 00000004 -RB1_B0DLC 00000005 -RB1_B1DLC 00000005 -RB1_B2DLC 00000005 -RB1_B3DLC 00000005 -RB1_B4DLC 00000005 -RB1_B5DLC 00000005 -RB1_PORTB 00000001 -RB1_RXB0DLC 00000005 -RB1_RXB1DLC 00000005 -RB2 00000002 -RB3 00000003 -RB4 00000004 -RB5 00000005 -RB6 00000006 -RB7 00000007 -RBIE 00000003 -RBIF 00000000 -RBIP 00000000 -RBPU 00000007 -RC0 00000000 -RC1 00000001 -RC1IE 00000005 -RC1IF 00000005 -RC1IP 00000005 -RC2 00000002 -RC2IE 00000005 -RC2IF 00000005 -RC2IP 00000005 -RC3 00000003 -RC4 00000004 -RC5 00000005 -RC6 00000006 -RC7 00000007 -RC8_9 00000006 -RC9 00000006 -RCD8 00000000 -RCEN 00000003 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 27 - - -SYMBOL TABLE - LABEL VALUE - -RCIDL 00000006 -RCIE 00000005 -RCIF 00000005 -RCIP 00000005 -RCMT 00000006 -RCON 00000FD0 -RCREG 00000FAE -RCREG1 00000FAE -RCREG2 00000F7A -RCSTA 00000FAB -RCSTA1 00000FAB -RCSTA2 00000FA6 -RD 00000000 -RD0 00000000 -RD1 00000001 -RD16 00000001 -RD2 00000002 -RD3 00000003 -RD4 00000004 -RD5 00000005 -RD6 00000006 -RD7 00000007 -RDPU 00000007 -RE0 00000000 -RE1 00000001 -RE2 00000002 -RE3 00000003 -RE4 00000004 -RE5 00000005 -RE6 00000006 -RE7 00000007 -READ_WRITE 00000002 -REC0 00000000 -REC1 00000001 -REC2 00000002 -REC3 00000003 -REC4 00000004 -REC5 00000005 -REC6 00000006 -REC7 00000007 -REFOCON 00000F9A -REGSLP 00000007 -REPU 00000006 -RF0 00000000 -RF1 00000001 -RF2 00000002 -RF3 00000003 -RF4 00000004 -RF5 00000005 -RF6 00000006 -RF7 00000007 -RFPU 00000005 -RG0 00000000 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 28 - - -SYMBOL TABLE - LABEL VALUE - -RG1 00000001 -RG2 00000002 -RG3 00000003 -RG4 00000004 -RGPU 00000004 -RI 00000004 -RODIV0 00000000 -RODIV1 00000001 -RODIV2 00000002 -RODIV3 00000003 -ROON 00000007 -ROSEL 00000004 -ROSSLP 00000005 -RSEN 00000001 -RTREN 00000002 -RTRRO 00000005 -RX9 00000006 -RX91 00000006 -RX92 00000006 -RX9D 00000000 -RX9D1 00000000 -RX9D2 00000000 -RXB0CON 00000F60 -RXB0D0 00000F66 -RXB0D00 00000000 -RXB0D01 00000001 -RXB0D02 00000002 -RXB0D03 00000003 -RXB0D04 00000004 -RXB0D05 00000005 -RXB0D06 00000006 -RXB0D07 00000007 -RXB0D1 00000F67 -RXB0D10 00000000 -RXB0D11 00000001 -RXB0D12 00000002 -RXB0D13 00000003 -RXB0D14 00000004 -RXB0D15 00000005 -RXB0D16 00000006 -RXB0D17 00000007 -RXB0D2 00000F68 -RXB0D20 00000000 -RXB0D21 00000001 -RXB0D22 00000002 -RXB0D23 00000003 -RXB0D24 00000004 -RXB0D25 00000005 -RXB0D26 00000006 -RXB0D27 00000007 -RXB0D3 00000F69 -RXB0D30 00000000 -RXB0D31 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 29 - - -SYMBOL TABLE - LABEL VALUE - -RXB0D32 00000002 -RXB0D33 00000003 -RXB0D34 00000004 -RXB0D35 00000005 -RXB0D36 00000006 -RXB0D37 00000007 -RXB0D4 00000F6A -RXB0D40 00000000 -RXB0D41 00000001 -RXB0D42 00000002 -RXB0D43 00000003 -RXB0D44 00000004 -RXB0D45 00000005 -RXB0D46 00000006 -RXB0D47 00000007 -RXB0D5 00000F6B -RXB0D50 00000000 -RXB0D51 00000001 -RXB0D52 00000002 -RXB0D53 00000003 -RXB0D54 00000004 -RXB0D55 00000005 -RXB0D56 00000006 -RXB0D57 00000007 -RXB0D6 00000F6C -RXB0D60 00000000 -RXB0D61 00000001 -RXB0D62 00000002 -RXB0D63 00000003 -RXB0D64 00000004 -RXB0D65 00000005 -RXB0D66 00000006 -RXB0D67 00000007 -RXB0D7 00000F6D -RXB0D70 00000000 -RXB0D71 00000001 -RXB0D72 00000002 -RXB0D73 00000003 -RXB0D74 00000004 -RXB0D75 00000005 -RXB0D76 00000006 -RXB0D77 00000007 -RXB0DLC 00000F65 -RXB0EIDH 00000F63 -RXB0EIDL 00000F64 -RXB0IE 00000000 -RXB0IF 00000000 -RXB0IP 00000000 -RXB0OVFL 00000007 -RXB0SIDH 00000F61 -RXB0SIDL 00000F62 -RXB1CON 00000F30 -RXB1D0 00000F36 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 30 - - -SYMBOL TABLE - LABEL VALUE - -RXB1D00 00000000 -RXB1D01 00000001 -RXB1D02 00000002 -RXB1D03 00000003 -RXB1D04 00000004 -RXB1D05 00000005 -RXB1D06 00000006 -RXB1D07 00000007 -RXB1D1 00000F37 -RXB1D10 00000000 -RXB1D11 00000001 -RXB1D12 00000002 -RXB1D13 00000003 -RXB1D14 00000004 -RXB1D15 00000005 -RXB1D16 00000006 -RXB1D17 00000007 -RXB1D2 00000F38 -RXB1D20 00000000 -RXB1D21 00000001 -RXB1D22 00000002 -RXB1D23 00000003 -RXB1D24 00000004 -RXB1D25 00000005 -RXB1D26 00000006 -RXB1D27 00000007 -RXB1D3 00000F39 -RXB1D30 00000000 -RXB1D31 00000001 -RXB1D32 00000002 -RXB1D33 00000003 -RXB1D34 00000004 -RXB1D35 00000005 -RXB1D36 00000006 -RXB1D37 00000007 -RXB1D4 00000F3A -RXB1D40 00000000 -RXB1D41 00000001 -RXB1D42 00000002 -RXB1D43 00000003 -RXB1D44 00000004 -RXB1D45 00000005 -RXB1D46 00000006 -RXB1D47 00000007 -RXB1D5 00000F3B -RXB1D50 00000000 -RXB1D51 00000001 -RXB1D52 00000002 -RXB1D53 00000003 -RXB1D54 00000004 -RXB1D55 00000005 -RXB1D56 00000006 -RXB1D57 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 31 - - -SYMBOL TABLE - LABEL VALUE - -RXB1D6 00000F3C -RXB1D60 00000000 -RXB1D61 00000001 -RXB1D62 00000002 -RXB1D63 00000003 -RXB1D64 00000004 -RXB1D65 00000005 -RXB1D66 00000006 -RXB1D67 00000007 -RXB1D7 00000F3D -RXB1D70 00000000 -RXB1D71 00000001 -RXB1D72 00000002 -RXB1D73 00000003 -RXB1D74 00000004 -RXB1D75 00000005 -RXB1D76 00000006 -RXB1D77 00000007 -RXB1DLC 00000F35 -RXB1EIDH 00000F33 -RXB1EIDL 00000F34 -RXB1IE 00000001 -RXB1IF 00000001 -RXB1IP 00000001 -RXB1OVFL 00000006 -RXB1SIDH 00000F31 -RXB1SIDL 00000F32 -RXBP 00000003 -RXBnIE 00000001 -RXBnIF 00000001 -RXBnIP 00000001 -RXDTP 00000005 -RXERRCNT 00000E41 -RXF0EIDH 00000EE2 -RXF0EIDL 00000EE3 -RXF0EN 00000000 -RXF0SIDH 00000EE0 -RXF0SIDL 00000EE1 -RXF10EIDH 00000E5A -RXF10EIDL 00000E5B -RXF10EN 00000002 -RXF10SIDH 00000E58 -RXF10SIDL 00000E59 -RXF11EIDH 00000E5E -RXF11EIDL 00000E5F -RXF11EN 00000003 -RXF11SIDH 00000E5C -RXF11SIDL 00000E5D -RXF12EIDH 00000E62 -RXF12EIDL 00000E63 -RXF12EN 00000004 -RXF12SIDH 00000E60 -RXF12SIDL 00000E61 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 32 - - -SYMBOL TABLE - LABEL VALUE - -RXF13EIDH 00000E66 -RXF13EIDL 00000E67 -RXF13EN 00000005 -RXF13SIDH 00000E64 -RXF13SIDL 00000E65 -RXF14EIDH 00000E6A -RXF14EIDL 00000E6B -RXF14EN 00000006 -RXF14SIDH 00000E68 -RXF14SIDL 00000E69 -RXF15EIDH 00000E6E -RXF15EIDL 00000E6F -RXF15EN 00000007 -RXF15SIDH 00000E6C -RXF15SIDL 00000E6D -RXF1EIDH 00000EE6 -RXF1EIDL 00000EE7 -RXF1EN 00000001 -RXF1SIDH 00000EE4 -RXF1SIDL 00000EE5 -RXF2EIDH 00000EEA -RXF2EIDL 00000EEB -RXF2EN 00000002 -RXF2SIDH 00000EE8 -RXF2SIDL 00000EE9 -RXF3EIDH 00000EEE -RXF3EIDL 00000EEF -RXF3EN 00000003 -RXF3SIDH 00000EEC -RXF3SIDL 00000EED -RXF4EIDH 00000EF2 -RXF4EIDL 00000EF3 -RXF4EN 00000004 -RXF4SIDH 00000EF0 -RXF4SIDL 00000EF1 -RXF5EIDH 00000EF6 -RXF5EIDL 00000EF7 -RXF5EN 00000005 -RXF5SIDH 00000EF4 -RXF5SIDL 00000EF5 -RXF6EIDH 00000E4A -RXF6EIDL 00000E4B -RXF6EN 00000006 -RXF6SIDH 00000E48 -RXF6SIDL 00000E49 -RXF7EIDH 00000E4E -RXF7EIDL 00000E4F -RXF7EN 00000007 -RXF7SIDH 00000E4C -RXF7SIDL 00000E4D -RXF8EIDH 00000E52 -RXF8EIDL 00000E53 -RXF8EN 00000000 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 33 - - -SYMBOL TABLE - LABEL VALUE - -RXF8SIDH 00000E50 -RXF8SIDL 00000E51 -RXF9EIDH 00000E56 -RXF9EIDL 00000E57 -RXF9EN 00000001 -RXF9SIDH 00000E54 -RXF9SIDL 00000E55 -RXFBCON0 00000E71 -RXFBCON1 00000E72 -RXFBCON2 00000E73 -RXFBCON3 00000E74 -RXFBCON4 00000E75 -RXFBCON5 00000E76 -RXFBCON6 00000E77 -RXFBCON7 00000E78 -RXFCON0 00000E46 -RXFCON1 00000E47 -RXFUL 00000007 -RXFUL_TXBIF 00000007 -RXM0 00000005 -RXM0EIDH 00000EFA -RXM0EIDL 00000EFB -RXM0SIDH 00000EF8 -RXM0SIDL 00000EF9 -RXM0_RTRRO 00000005 -RXM1 00000006 -RXM1EIDH 00000EFE -RXM1EIDL 00000EFF -RXM1SIDH 00000EFC -RXM1SIDL 00000EFD -RXM1_TXABT 00000006 -RXRTR 00000006 -RXRTRRO_B0CON 00000005 -RXRTRRO_B1CON 00000005 -RXRTRRO_B2CON 00000005 -RXRTRRO_B3CON 00000005 -RXRTRRO_B4CON 00000005 -RXRTRRO_B5CON 00000005 -RXRTRRO_FILHIT3 00000003 -RXRTRRO_RXB0CON 00000003 -RXRTRRO_RXB1CON 00000003 -RXRTRRO_TXLARB 00000005 -RXRTR_TXRTR 00000006 -RXWARN 00000001 -R_NOT_W 00000002 -R_W 00000002 -S 00000003 -SAM 00000006 -SBOREN 00000006 -SCS0 00000000 -SCS1 00000001 -SDFLC 00000E70 -SEG1PH0 00000003 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 34 - - -SYMBOL TABLE - LABEL VALUE - -SEG1PH1 00000004 -SEG1PH2 00000005 -SEG2PH0 00000000 -SEG2PH1 00000001 -SEG2PH2 00000002 -SEG2PHTS 00000007 -SEN 00000000 -SENDB 00000003 -SENDB1 00000003 -SENDB2 00000003 -SID0 00000005 -SID1 00000006 -SID10 00000007 -SID2 00000007 -SID3 00000000 -SID4 00000001 -SID5 00000002 -SID6 00000003 -SID7 00000004 -SID8 00000005 -SID9 00000006 -SJW0 00000006 -SJW1 00000007 -SLRA 00000000 -SLRB 00000001 -SLRC 00000002 -SLRCON 00000F90 -SLRD 00000003 -SLRE 00000004 -SLRF 00000005 -SLRG 00000006 -SMP 00000007 -SOSCDRV 00000004 -SOSCEN 00000003 -SOSCGO 00000003 -SOSCRUN 00000006 -SP0 00000000 -SP1 00000001 -SP2 00000002 -SP3 00000003 -SP4 00000004 -SPBRG 00000FAF -SPBRG1 00000FAF -SPBRG2 00000F7B -SPBRGH1 00000F7D -SPBRGH2 00000F7C -SPEN 00000007 -SPEN1 00000007 -SPEN2 00000007 -SREN 00000005 -SREN1 00000005 -SREN2 00000005 -SRETEN 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 35 - - -SYMBOL TABLE - LABEL VALUE - -SRR 00000004 -SSPADD 00000FC8 -SSPBUF 00000FC9 -SSPCON1 00000FC6 -SSPCON2 00000FC5 -SSPEN 00000005 -SSPIE 00000003 -SSPIF 00000003 -SSPIP 00000003 -SSPM0 00000000 -SSPM1 00000001 -SSPM2 00000002 -SSPM3 00000003 -SSPMD 00000000 -SSPOD 00000007 -SSPOV 00000006 -SSPSTAT 00000FC7 -STATUS 00000FD8 -STKFUL 00000007 -STKOVF 00000007 -STKPTR 00000FFC -STKUNF 00000006 -STRA 00000000 -STRB 00000001 -STRC 00000002 -STRD 00000003 -STRSYNC 00000004 -SWDTE 00000000 -SWDTEN 00000000 -SYNC 00000004 -SYNC1 00000004 -SYNC2 00000004 -T08BIT 00000006 -T0CON 00000FD5 -T0CS 00000005 -T0IE 00000005 -T0IF 00000002 -T0IP 00000002 -T0PS0 00000000 -T0PS1 00000001 -T0PS2 00000002 -T0SE 00000004 -T1CKPS0 00000004 -T1CKPS1 00000005 -T1CON 00000FCD -T1GCON 00000FAA -T1GGO 00000003 -T1GGO_NOT_T1DONE 00000003 -T1GPOL 00000006 -T1GSPM 00000004 -T1GSS0 00000000 -T1GSS1 00000001 -T1GTM 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 36 - - -SYMBOL TABLE - LABEL VALUE - -T1GVAL 00000002 -T2CKPS0 00000000 -T2CKPS1 00000001 -T2CON 00000FCA -T2OUTPS0 00000003 -T2OUTPS1 00000004 -T2OUTPS2 00000005 -T2OUTPS3 00000006 -T3CKPS0 00000004 -T3CKPS1 00000005 -T3CON 00000FB1 -T3GCON 00000FB0 -T3GGO 00000003 -T3GGO_NOT_T3DONE 00000003 -T3GPOL 00000006 -T3GSPM 00000004 -T3GSS0 00000000 -T3GSS1 00000001 -T3GTM 00000005 -T3GVAL 00000002 -T4CKPS0 00000000 -T4CKPS1 00000001 -T4CON 00000F88 -T4OUTPS0 00000003 -T4OUTPS1 00000004 -T4OUTPS2 00000005 -T4OUTPS3 00000006 -TABLAT 00000FF5 -TBLPTR 00000FF6 -TBLPTRH 00000FF7 -TBLPTRL 00000FF6 -TBLPTRU 00000FF8 -TEC0 00000000 -TEC1 00000001 -TEC2 00000002 -TEC3 00000003 -TEC4 00000004 -TEC5 00000005 -TEC6 00000006 -TEC7 00000007 -TGEN 00000004 -TMR0 00000FD6 -TMR0H 00000FD7 -TMR0IE 00000005 -TMR0IF 00000002 -TMR0IP 00000002 -TMR0L 00000FD6 -TMR0MD 00000000 -TMR0ON 00000007 -TMR1 00000FCE -TMR1CS0 00000006 -TMR1CS1 00000007 -TMR1GE 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 37 - - -SYMBOL TABLE - LABEL VALUE - -TMR1GIE 00000002 -TMR1GIF 00000002 -TMR1GIP 00000002 -TMR1H 00000FCF -TMR1IE 00000000 -TMR1IF 00000000 -TMR1IP 00000000 -TMR1L 00000FCE -TMR1MD 00000001 -TMR1ON 00000000 -TMR2 00000FCC -TMR2IE 00000001 -TMR2IF 00000001 -TMR2IP 00000001 -TMR2MD 00000002 -TMR2ON 00000002 -TMR3 00000FB2 -TMR3CS0 00000006 -TMR3CS1 00000007 -TMR3GE 00000007 -TMR3GIE 00000000 -TMR3GIF 00000000 -TMR3GIP 00000000 -TMR3H 00000FB3 -TMR3IE 00000001 -TMR3IF 00000001 -TMR3IP 00000001 -TMR3L 00000FB2 -TMR3MD 00000003 -TMR3ON 00000000 -TMR4 00000F87 -TMR4IE 00000007 -TMR4IF 00000007 -TMR4IP 00000007 -TMR4MD 00000004 -TMR4ON 00000002 -TO 00000003 -TOS 00000FFD -TOSH 00000FFE -TOSL 00000FFD -TOSU 00000FFF -TRIGSEL0 00000006 -TRIGSEL1 00000007 -TRISA 00000F92 -TRISA0 00000000 -TRISA1 00000001 -TRISA2 00000002 -TRISA3 00000003 -TRISA5 00000005 -TRISA6 00000006 -TRISA7 00000007 -TRISB 00000F93 -TRISB0 00000000 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 38 - - -SYMBOL TABLE - LABEL VALUE - -TRISB1 00000001 -TRISB2 00000002 -TRISB3 00000003 -TRISB4 00000004 -TRISB5 00000005 -TRISB6 00000006 -TRISB7 00000007 -TRISC 00000F94 -TRISC0 00000000 -TRISC1 00000001 -TRISC2 00000002 -TRISC3 00000003 -TRISC4 00000004 -TRISC5 00000005 -TRISC6 00000006 -TRISC7 00000007 -TRISD 00000F95 -TRISD0 00000000 -TRISD1 00000001 -TRISD2 00000002 -TRISD3 00000003 -TRISD4 00000004 -TRISD5 00000005 -TRISD6 00000006 -TRISD7 00000007 -TRISE 00000F96 -TRISE0 00000000 -TRISE1 00000001 -TRISE2 00000002 -TRISE4 00000004 -TRISE5 00000005 -TRISE6 00000006 -TRISE7 00000007 -TRISF 00000F97 -TRISF0 00000000 -TRISF1 00000001 -TRISF2 00000002 -TRISF3 00000003 -TRISF4 00000004 -TRISF5 00000005 -TRISF6 00000006 -TRISF7 00000007 -TRISG 00000F98 -TRISG0 00000000 -TRISG1 00000001 -TRISG2 00000002 -TRISG3 00000003 -TRISG4 00000004 -TRMT 00000001 -TRMT1 00000001 -TRMT2 00000001 -TUN0 00000000 -TUN1 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 39 - - -SYMBOL TABLE - LABEL VALUE - -TUN2 00000002 -TUN3 00000003 -TUN4 00000004 -TUN5 00000005 -TX1IE 00000004 -TX1IF 00000004 -TX1IP 00000004 -TX2EN 00000006 -TX2IE 00000004 -TX2IF 00000004 -TX2IP 00000004 -TX2SRC 00000007 -TX8_9 00000006 -TX9 00000006 -TX91 00000006 -TX92 00000006 -TX9D 00000000 -TX9D1 00000000 -TX9D2 00000000 -TXABT 00000006 -TXB0CON 00000F20 -TXB0D0 00000F26 -TXB0D00 00000000 -TXB0D01 00000001 -TXB0D02 00000002 -TXB0D03 00000003 -TXB0D04 00000004 -TXB0D05 00000005 -TXB0D06 00000006 -TXB0D07 00000007 -TXB0D1 00000F27 -TXB0D10 00000000 -TXB0D11 00000001 -TXB0D12 00000002 -TXB0D13 00000003 -TXB0D14 00000004 -TXB0D15 00000005 -TXB0D16 00000006 -TXB0D17 00000007 -TXB0D2 00000F28 -TXB0D20 00000000 -TXB0D21 00000001 -TXB0D22 00000002 -TXB0D23 00000003 -TXB0D24 00000004 -TXB0D25 00000005 -TXB0D26 00000006 -TXB0D27 00000007 -TXB0D3 00000F29 -TXB0D30 00000000 -TXB0D31 00000001 -TXB0D32 00000002 -TXB0D33 00000003 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 40 - - -SYMBOL TABLE - LABEL VALUE - -TXB0D34 00000004 -TXB0D35 00000005 -TXB0D36 00000006 -TXB0D37 00000007 -TXB0D4 00000F2A -TXB0D40 00000000 -TXB0D41 00000001 -TXB0D42 00000002 -TXB0D43 00000003 -TXB0D44 00000004 -TXB0D45 00000005 -TXB0D46 00000006 -TXB0D47 00000007 -TXB0D5 00000F2B -TXB0D50 00000000 -TXB0D51 00000001 -TXB0D52 00000002 -TXB0D53 00000003 -TXB0D54 00000004 -TXB0D55 00000005 -TXB0D56 00000006 -TXB0D57 00000007 -TXB0D6 00000F2C -TXB0D60 00000000 -TXB0D61 00000001 -TXB0D62 00000002 -TXB0D63 00000003 -TXB0D64 00000004 -TXB0D65 00000005 -TXB0D66 00000006 -TXB0D67 00000007 -TXB0D7 00000F2D -TXB0D70 00000000 -TXB0D71 00000001 -TXB0D72 00000002 -TXB0D73 00000003 -TXB0D74 00000004 -TXB0D75 00000005 -TXB0D76 00000006 -TXB0D77 00000007 -TXB0DLC 00000F25 -TXB0EIDH 00000F23 -TXB0EIDL 00000F24 -TXB0IE 00000002 -TXB0IF 00000002 -TXB0IP 00000002 -TXB0SIDH 00000F21 -TXB0SIDL 00000F22 -TXB1CON 00000F10 -TXB1D0 00000F16 -TXB1D00 00000000 -TXB1D01 00000001 -TXB1D02 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 41 - - -SYMBOL TABLE - LABEL VALUE - -TXB1D03 00000003 -TXB1D04 00000004 -TXB1D05 00000005 -TXB1D06 00000006 -TXB1D07 00000007 -TXB1D1 00000F17 -TXB1D10 00000000 -TXB1D11 00000001 -TXB1D12 00000002 -TXB1D13 00000003 -TXB1D14 00000004 -TXB1D15 00000005 -TXB1D16 00000006 -TXB1D17 00000007 -TXB1D2 00000F18 -TXB1D20 00000000 -TXB1D21 00000001 -TXB1D22 00000002 -TXB1D23 00000003 -TXB1D24 00000004 -TXB1D25 00000005 -TXB1D26 00000006 -TXB1D27 00000007 -TXB1D3 00000F19 -TXB1D30 00000000 -TXB1D31 00000001 -TXB1D32 00000002 -TXB1D33 00000003 -TXB1D34 00000004 -TXB1D35 00000005 -TXB1D36 00000006 -TXB1D37 00000007 -TXB1D4 00000F1A -TXB1D40 00000000 -TXB1D41 00000001 -TXB1D42 00000002 -TXB1D43 00000003 -TXB1D44 00000004 -TXB1D45 00000005 -TXB1D46 00000006 -TXB1D47 00000007 -TXB1D5 00000F1B -TXB1D50 00000000 -TXB1D51 00000001 -TXB1D52 00000002 -TXB1D53 00000003 -TXB1D54 00000004 -TXB1D55 00000005 -TXB1D56 00000006 -TXB1D57 00000007 -TXB1D6 00000F1C -TXB1D60 00000000 -TXB1D61 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 42 - - -SYMBOL TABLE - LABEL VALUE - -TXB1D62 00000002 -TXB1D63 00000003 -TXB1D64 00000004 -TXB1D65 00000005 -TXB1D66 00000006 -TXB1D67 00000007 -TXB1D7 00000F1D -TXB1D70 00000000 -TXB1D71 00000001 -TXB1D72 00000002 -TXB1D73 00000003 -TXB1D74 00000004 -TXB1D75 00000005 -TXB1D76 00000006 -TXB1D77 00000007 -TXB1DLC 00000F15 -TXB1EIDH 00000F13 -TXB1EIDL 00000F14 -TXB1IE 00000003 -TXB1IF 00000003 -TXB1IP 00000003 -TXB1SIDH 00000F11 -TXB1SIDL 00000F12 -TXB2CON 00000F00 -TXB2D0 00000F06 -TXB2D00 00000000 -TXB2D01 00000001 -TXB2D02 00000002 -TXB2D03 00000003 -TXB2D04 00000004 -TXB2D05 00000005 -TXB2D06 00000006 -TXB2D07 00000007 -TXB2D1 00000F07 -TXB2D10 00000000 -TXB2D11 00000001 -TXB2D12 00000002 -TXB2D13 00000003 -TXB2D14 00000004 -TXB2D15 00000005 -TXB2D16 00000006 -TXB2D17 00000007 -TXB2D2 00000F08 -TXB2D20 00000000 -TXB2D21 00000001 -TXB2D22 00000002 -TXB2D23 00000003 -TXB2D24 00000004 -TXB2D25 00000005 -TXB2D26 00000006 -TXB2D27 00000007 -TXB2D3 00000F09 -TXB2D30 00000000 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 43 - - -SYMBOL TABLE - LABEL VALUE - -TXB2D31 00000001 -TXB2D32 00000002 -TXB2D33 00000003 -TXB2D34 00000004 -TXB2D35 00000005 -TXB2D36 00000006 -TXB2D37 00000007 -TXB2D4 00000F0A -TXB2D40 00000000 -TXB2D41 00000001 -TXB2D42 00000002 -TXB2D43 00000003 -TXB2D44 00000004 -TXB2D45 00000005 -TXB2D46 00000006 -TXB2D47 00000007 -TXB2D5 00000F0B -TXB2D50 00000000 -TXB2D51 00000001 -TXB2D52 00000002 -TXB2D53 00000003 -TXB2D54 00000004 -TXB2D55 00000005 -TXB2D56 00000006 -TXB2D57 00000007 -TXB2D6 00000F0C -TXB2D60 00000000 -TXB2D61 00000001 -TXB2D62 00000002 -TXB2D63 00000003 -TXB2D64 00000004 -TXB2D65 00000005 -TXB2D66 00000006 -TXB2D67 00000007 -TXB2D7 00000F0D -TXB2D70 00000000 -TXB2D71 00000001 -TXB2D72 00000002 -TXB2D73 00000003 -TXB2D74 00000004 -TXB2D75 00000005 -TXB2D76 00000006 -TXB2D77 00000007 -TXB2DLC 00000F05 -TXB2EIDH 00000F03 -TXB2EIDL 00000F04 -TXB2IE 00000004 -TXB2IF 00000004 -TXB2IP 00000004 -TXB2SIDH 00000F01 -TXB2SIDL 00000F02 -TXBIE 00000E7F -TXBIF 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 44 - - -SYMBOL TABLE - LABEL VALUE - -TXBO 00000005 -TXBP 00000004 -TXBnIE 00000004 -TXBnIF 00000004 -TXBnIP 00000004 -TXCKP 00000004 -TXD8 00000000 -TXEN 00000005 -TXEN1 00000005 -TXEN2 00000005 -TXERR 00000004 -TXERRCNT 00000E42 -TXIE 00000004 -TXIF 00000004 -TXIP 00000004 -TXLARB 00000005 -TXPRI0 00000000 -TXPRI1 00000001 -TXREG 00000FAD -TXREG1 00000FAD -TXREG2 00000F79 -TXREQ 00000003 -TXRTR 00000006 -TXSTA 00000FAC -TXSTA1 00000FAC -TXSTA2 00000FBA -TXWARN 00000002 -U1OD 00000000 -U2OD 00000001 -UA 00000001 -UART1MD 00000001 -UART2MD 00000002 -ULPEN 00000002 -ULPLVL 00000005 -ULPSINK 00000001 -VCFG0 00000004 -VCFG1 00000005 -VDIRMAG 00000007 -VNCFG 00000003 -W 00000000 -WAKDIS 00000007 -WAKFIL 00000006 -WAKIE 00000006 -WAKIF 00000006 -WAKIP 00000006 -WCOL 00000007 -WDTCON 00000FD1 -WIN0 00000001 -WIN0_FP1 00000001 -WIN1 00000002 -WIN1_FP2 00000002 -WIN2 00000003 -WIN2_FP3 00000003 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 45 - - -SYMBOL TABLE - LABEL VALUE - -WPUB 00000F5B -WPUB0 00000000 -WPUB1 00000001 -WPUB2 00000002 -WPUB3 00000003 -WPUB4 00000004 -WPUB5 00000005 -WPUB6 00000006 -WPUB7 00000007 -WR 00000001 -WREG 00000FE8 -WREN 00000002 -WRERR 00000003 -WUE 00000001 -Z 00000002 -_BBSIZ_BB1K_4L 000000EF -_BBSIZ_BB2K_4L 000000FF -_BOREN_NOSLP_2L 000000FD -_BOREN_OFF_2L 000000F9 -_BOREN_ON_2L 000000FB -_BOREN_SBORDIS_2L 000000FF -_BORPWR_HIGH_2L 000000DF -_BORPWR_LOW_2L 0000009F -_BORPWR_MEDIUM_2L 000000BF -_BORPWR_ZPBORMV_2L 000000FF -_BORV_0_2L 000000E7 -_BORV_1_2L 000000EF -_BORV_2_2L 000000F7 -_BORV_3_2L 000000FF -_CANMX_PORTB_3H 000000FF -_CANMX_PORTE_3H 000000FE -_CONFIG1H 00300001 -_CONFIG1L 00300000 -_CONFIG2H 00300003 -_CONFIG2L 00300002 -_CONFIG3H 00300005 -_CONFIG4L 00300006 -_CONFIG5H 00300009 -_CONFIG5L 00300008 -_CONFIG6H 0030000B -_CONFIG6L 0030000A -_CONFIG7H 0030000D -_CONFIG7L 0030000C -_CP0_OFF_5L 000000FF -_CP0_ON_5L 000000FE -_CP1_OFF_5L 000000FF -_CP1_ON_5L 000000FD -_CP2_OFF_5L 000000FF -_CP2_ON_5L 000000FB -_CP3_OFF_5L 000000FF -_CP3_ON_5L 000000F7 -_CPB_OFF_5H 000000FF -_CPB_ON_5H 000000BF -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 46 - - -SYMBOL TABLE - LABEL VALUE - -_CPD_OFF_5H 000000FF -_CPD_ON_5H 0000007F -_DEVID1 003FFFFE -_DEVID2 003FFFFF -_EBTR0_OFF_7L 000000FF -_EBTR0_ON_7L 000000FE -_EBTR1_OFF_7L 000000FF -_EBTR1_ON_7L 000000FD -_EBTR2_OFF_7L 000000FF -_EBTR2_ON_7L 000000FB -_EBTR3_OFF_7L 000000FF -_EBTR3_ON_7L 000000F7 -_EBTRB_OFF_7H 000000FF -_EBTRB_ON_7H 000000BF -_FCMEN_OFF_1H 000000BF -_FCMEN_ON_1H 000000FF -_FOSC_EC1IO_1H 000000FC -_FOSC_EC1_1H 000000FD -_FOSC_EC2IO_1H 000000FA -_FOSC_EC2_1H 000000FB -_FOSC_EC3IO_1H 000000F4 -_FOSC_EC3_1H 000000F5 -_FOSC_HS1_1H 000000F3 -_FOSC_HS2_1H 000000F2 -_FOSC_INTIO1_1H 000000F9 -_FOSC_INTIO2_1H 000000F8 -_FOSC_LP_1H 000000F0 -_FOSC_RCIO_1H 000000F7 -_FOSC_RC_1H 000000F6 -_FOSC_XT_1H 000000F1 -_IDLOC0 00200000 -_IDLOC1 00200001 -_IDLOC2 00200002 -_IDLOC3 00200003 -_IDLOC4 00200004 -_IDLOC5 00200005 -_IDLOC6 00200006 -_IDLOC7 00200007 -_IESO_OFF_1H 0000007F -_IESO_ON_1H 000000FF -_INTOSCSEL_HIGH_1L 000000FF -_INTOSCSEL_LOW_1L 000000FB -_MCLRE_OFF_3H 0000007F -_MCLRE_ON_3H 000000FF -_MSSPMSK_MSK5_3H 000000F7 -_MSSPMSK_MSK7_3H 000000FF -_PLLCFG_OFF_1H 000000EF -_PLLCFG_ON_1H 000000FF -_PWRTEN_OFF_2L 000000FF -_PWRTEN_ON_2L 000000FE -_RETEN_OFF_1L 000000FF -_RETEN_ON_1L 000000FE -_SOSCSEL_DIG_1L 000000F7 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 47 - - -SYMBOL TABLE - LABEL VALUE - -_SOSCSEL_HIGH_1L 000000FF -_SOSCSEL_LOW_1L 000000EF -_STVREN_OFF_4L 000000FE -_STVREN_ON_4L 000000FF -_T0CKMX_PORTB_3H 000000FF -_T0CKMX_PORTG_3H 000000FD -_T3CKMX_PORTB_3H 000000FB -_T3CKMX_PORTG_3H 000000FF -_WDTEN_NOSLP_2H 000000FD -_WDTEN_OFF_2H 000000FC -_WDTEN_ON_2H 000000FE -_WDTEN_SWDTDIS_2H 000000FF -_WDTPS_1024_2H 000000AB -_WDTPS_1048576_2H 000000FF -_WDTPS_128_2H 0000009F -_WDTPS_131072_2H 000000C7 -_WDTPS_16384_2H 000000BB -_WDTPS_16_2H 00000093 -_WDTPS_1_2H 00000083 -_WDTPS_2048_2H 000000AF -_WDTPS_256_2H 000000A3 -_WDTPS_262144_2H 000000CB -_WDTPS_2_2H 00000087 -_WDTPS_32768_2H 000000BF -_WDTPS_32_2H 00000097 -_WDTPS_4096_2H 000000B3 -_WDTPS_4_2H 0000008B -_WDTPS_512_2H 000000A7 -_WDTPS_524288_2H 000000CF -_WDTPS_64_2H 0000009B -_WDTPS_65536_2H 000000C3 -_WDTPS_8192_2H 000000B7 -_WDTPS_8_2H 0000008F -_WRT0_OFF_6L 000000FF -_WRT0_ON_6L 000000FE -_WRT1_OFF_6L 000000FF -_WRT1_ON_6L 000000FD -_WRT2_OFF_6L 000000FF -_WRT2_ON_6L 000000FB -_WRT3_OFF_6L 000000FF -_WRT3_ON_6L 000000F7 -_WRTB_OFF_6H 000000FF -_WRTB_ON_6H 000000BF -_WRTC_OFF_6H 000000FF -_WRTC_ON_6H 000000DF -_WRTD_OFF_6H 000000FF -_WRTD_ON_6H 0000007F -_XINST_OFF_1L 000000BF -_XINST_ON_1L 000000FF -__18LF66K80 00000001 -__ACC_RAM_LOW_END 0000005F -__CODE_END 0000FFFF -__CODE_START 00000000 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:53 PAGE 48 - - -SYMBOL TABLE - LABEL VALUE - -__EEPROM_END 00F003FF -__EEPROM_START 00F00000 -__VECTOR_INT_HIGH 00000008 -__VECTOR_INT_LOW 00000018 -__VECTOR_RESET 00000000 - -Errors : 0 -Warnings : 0 reported, 0 suppressed -Messages : 0 reported, 0 suppressed - -
\ No newline at end of file diff --git a/device/lib/pic16/.checkdevices/check.o b/device/lib/pic16/.checkdevices/check.o Binary files differdeleted file mode 100644 index 00c2f48..0000000 --- a/device/lib/pic16/.checkdevices/check.o +++ /dev/null diff --git a/device/lib/pic16/a.lst b/device/lib/pic16/a.lst deleted file mode 100644 index 85d3d98..0000000 --- a/device/lib/pic16/a.lst +++ /dev/null @@ -1,19 +0,0 @@ -gplink-1.4.0 #1107 (Apr 3 2018) -Copyright (c) 1998-2014 gputils project -Listing File Generated: 10-15-2019 15:44:53 - - -Address Value Disassembly Source -------- ----- ----------- ------ - include "p18lf66k80.inc" - LIST - - ;========================================================================== - ; Build date : Aug 07 2014 - ; MPASM PIC18LF66K80 processor include - ; - ; (c) Copyright 1999-2014 Microchip Technology, All rights reserved - ;========================================================================== - - NOLIST - END diff --git a/device/non-free/lib/pic14/.checkdevices/check.lst b/device/non-free/lib/pic14/.checkdevices/check.lst deleted file mode 100644 index 5d9c723..0000000 --- a/device/non-free/lib/pic14/.checkdevices/check.lst +++ /dev/null @@ -1,530 +0,0 @@ -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:43 PAGE 1 - - -LOC OBJECT CODE LINE SOURCE TEXT - VALUE - - 00001 include "p16lf727.inc" - 00001 LIST - 00002 - 00003 ;========================================================================== - 00004 ; Build date : Aug 07 2014 - 00005 ; MPASM PIC16LF727 processor include - 00006 ; - 00007 ; (c) Copyright 1999-2014 Microchip Technology, All rights reserved - 00008 ;========================================================================== - 00009 - 00743 LIST - 00002 END -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:43 PAGE 2 - - -SYMBOL TABLE - LABEL VALUE - -ADCON0 0000001F -ADCON1 0000009F -ADCS0 00000004 -ADCS1 00000005 -ADCS2 00000006 -ADDEN 00000003 -ADFVR0 00000000 -ADFVR1 00000001 -ADIE 00000006 -ADIF 00000006 -ADON 00000000 -ADREF0 00000000 -ADREF1 00000001 -ADRES 0000001E -ANSA0 00000000 -ANSA1 00000001 -ANSA2 00000002 -ANSA3 00000003 -ANSA4 00000004 -ANSA5 00000005 -ANSB0 00000000 -ANSB1 00000001 -ANSB2 00000002 -ANSB3 00000003 -ANSB4 00000004 -ANSB5 00000005 -ANSD0 00000000 -ANSD1 00000001 -ANSD2 00000002 -ANSD3 00000003 -ANSD4 00000004 -ANSD5 00000005 -ANSD6 00000006 -ANSD7 00000007 -ANSE0 00000000 -ANSE1 00000001 -ANSE2 00000002 -ANSELA 00000185 -ANSELB 00000186 -ANSELD 00000188 -ANSELE 00000189 -APFCON 0000009C -BF 00000000 -BRGH 00000002 -C 00000000 -CCP1CON 00000017 -CCP1IE 00000002 -CCP1IF 00000002 -CCP1M0 00000000 -CCP1M1 00000001 -CCP1M2 00000002 -CCP1M3 00000003 -CCP1X 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:43 PAGE 3 - - -SYMBOL TABLE - LABEL VALUE - -CCP1Y 00000004 -CCP2CON 0000001D -CCP2IE 00000000 -CCP2IF 00000000 -CCP2M0 00000000 -CCP2M1 00000001 -CCP2M2 00000002 -CCP2M3 00000003 -CCP2SEL 00000000 -CCP2X 00000005 -CCP2Y 00000004 -CCPR1 00000015 -CCPR1H 00000016 -CCPR1L 00000015 -CCPR2 0000001B -CCPR2H 0000001C -CCPR2L 0000001B -CHS0 00000002 -CHS1 00000003 -CHS2 00000004 -CHS3 00000005 -CKE 00000006 -CKP 00000004 -CPSCH0 00000000 -CPSCH1 00000001 -CPSCH2 00000002 -CPSCH3 00000003 -CPSCON0 00000108 -CPSCON1 00000109 -CPSON 00000007 -CPSOUT 00000001 -CPSRNG0 00000002 -CPSRNG1 00000003 -CREN 00000004 -CSRC 00000007 -D 00000005 -DATA_ADDRESS 00000005 -DC 00000001 -DC1B0 00000004 -DC1B1 00000005 -DC2B0 00000004 -DC2B1 00000005 -D_A 00000005 -D_NOT_A 00000005 -F 00000001 -FERR 00000002 -FSR 00000004 -FVRCON 0000009D -FVREN 00000006 -FVRRDY 00000007 -FVRST 00000007 -GIE 00000007 -GO 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:43 PAGE 4 - - -SYMBOL TABLE - LABEL VALUE - -GO_DONE 00000001 -GO_NOT_DONE 00000001 -I2C_DATA 00000005 -I2C_READ 00000002 -I2C_START 00000003 -I2C_STOP 00000004 -ICSL 00000003 -ICSS 00000002 -INDF 00000000 -INTCON 0000000B -INTE 00000004 -INTEDG 00000006 -INTF 00000001 -IOC 00000096 -IOC0 00000000 -IOC1 00000001 -IOC2 00000002 -IOC3 00000003 -IOC4 00000004 -IOC5 00000005 -IOC6 00000006 -IOC7 00000007 -IOCB 00000096 -IOCB0 00000000 -IOCB1 00000001 -IOCB2 00000002 -IOCB3 00000003 -IOCB4 00000004 -IOCB5 00000005 -IOCB6 00000006 -IOCB7 00000007 -IOCIE 00000003 -IOCIF 00000000 -IRCF0 00000004 -IRCF1 00000005 -IRP 00000007 -NOT_A 00000005 -NOT_ADDRESS 00000005 -NOT_BO 00000000 -NOT_BOR 00000000 -NOT_DONE 00000001 -NOT_PD 00000003 -NOT_POR 00000001 -NOT_RBPU 00000007 -NOT_RC8 00000006 -NOT_T1SYNC 00000002 -NOT_TO 00000004 -NOT_TX8 00000006 -NOT_W 00000002 -NOT_WRITE 00000002 -OERR 00000001 -OPTION_REG 00000081 -OSCCON 00000090 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:43 PAGE 5 - - -SYMBOL TABLE - LABEL VALUE - -OSCTUNE 00000091 -P 00000004 -PCL 00000002 -PCLATH 0000000A -PCON 0000008E -PEIE 00000006 -PIE1 0000008C -PIE2 0000008D -PIR1 0000000C -PIR2 0000000D -PMADR 0000010D -PMADRH 0000010F -PMADRL 0000010D -PMCON1 0000018C -PMDATA 0000010C -PMDATH 0000010E -PMDATL 0000010C -PMRD 00000000 -PORTA 00000005 -PORTB 00000006 -PORTC 00000007 -PORTD 00000008 -PORTE 00000009 -PR2 00000092 -PS0 00000000 -PS1 00000001 -PS2 00000002 -PSA 00000003 -R 00000002 -RA0 00000000 -RA1 00000001 -RA2 00000002 -RA3 00000003 -RA4 00000004 -RA5 00000005 -RA6 00000006 -RA7 00000007 -RB0 00000000 -RB1 00000001 -RB2 00000002 -RB3 00000003 -RB4 00000004 -RB5 00000005 -RB6 00000006 -RB7 00000007 -RBIE 00000003 -RBIF 00000000 -RC0 00000000 -RC1 00000001 -RC2 00000002 -RC3 00000003 -RC4 00000004 -RC5 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:43 PAGE 6 - - -SYMBOL TABLE - LABEL VALUE - -RC6 00000006 -RC7 00000007 -RC8_9 00000006 -RC9 00000006 -RCD8 00000000 -RCIE 00000005 -RCIF 00000005 -RCREG 0000001A -RCSTA 00000018 -RD 00000000 -RD0 00000000 -RD1 00000001 -RD2 00000002 -RD3 00000003 -RD4 00000004 -RD5 00000005 -RD6 00000006 -RD7 00000007 -RE0 00000000 -RE1 00000001 -RE2 00000002 -RE3 00000003 -READ_WRITE 00000002 -RP0 00000005 -RP1 00000006 -RX9 00000006 -RX9D 00000000 -R_NOT_W 00000002 -R_W 00000002 -S 00000003 -SMP 00000007 -SPBRG 00000099 -SPEN 00000007 -SREN 00000005 -SSPADD 00000093 -SSPBUF 00000013 -SSPCON 00000014 -SSPEN 00000005 -SSPIE 00000003 -SSPIF 00000003 -SSPM0 00000000 -SSPM1 00000001 -SSPM2 00000002 -SSPM3 00000003 -SSPMSK 00000093 -SSPOV 00000006 -SSPSTAT 00000094 -SSSEL 00000001 -STATUS 00000003 -SYNC 00000004 -T0CS 00000005 -T0IE 00000005 -T0IF 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:43 PAGE 7 - - -SYMBOL TABLE - LABEL VALUE - -T0SE 00000004 -T0XCS 00000000 -T1CKPS0 00000004 -T1CKPS1 00000005 -T1CON 00000010 -T1GCON 0000008F -T1GGO 00000003 -T1GGO_DONE 00000003 -T1GGO_NOT_DONE 00000003 -T1GPOL 00000006 -T1GSPM 00000004 -T1GSS0 00000000 -T1GSS1 00000001 -T1GTM 00000005 -T1GVAL 00000002 -T1G_NOT_DONE 00000003 -T1INSYNC 00000002 -T1OSCEN 00000003 -T1SYNC 00000002 -T2CKPS0 00000000 -T2CKPS1 00000001 -T2CON 00000012 -TMR0 00000001 -TMR0IE 00000005 -TMR0IF 00000002 -TMR1 0000000E -TMR1CS0 00000006 -TMR1CS1 00000007 -TMR1GE 00000007 -TMR1GIE 00000007 -TMR1GIF 00000007 -TMR1H 0000000F -TMR1IE 00000000 -TMR1IF 00000000 -TMR1L 0000000E -TMR1ON 00000000 -TMR2 00000011 -TMR2IE 00000001 -TMR2IF 00000001 -TMR2ON 00000002 -TOUTPS0 00000003 -TOUTPS1 00000004 -TOUTPS2 00000005 -TOUTPS3 00000006 -TRISA 00000085 -TRISA0 00000000 -TRISA1 00000001 -TRISA2 00000002 -TRISA3 00000003 -TRISA4 00000004 -TRISA5 00000005 -TRISA6 00000006 -TRISA7 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:43 PAGE 8 - - -SYMBOL TABLE - LABEL VALUE - -TRISB 00000086 -TRISB0 00000000 -TRISB1 00000001 -TRISB2 00000002 -TRISB3 00000003 -TRISB4 00000004 -TRISB5 00000005 -TRISB6 00000006 -TRISB7 00000007 -TRISC 00000087 -TRISC0 00000000 -TRISC1 00000001 -TRISC2 00000002 -TRISC3 00000003 -TRISC4 00000004 -TRISC5 00000005 -TRISC6 00000006 -TRISC7 00000007 -TRISD 00000088 -TRISD0 00000000 -TRISD1 00000001 -TRISD2 00000002 -TRISD3 00000003 -TRISD4 00000004 -TRISD5 00000005 -TRISD6 00000006 -TRISD7 00000007 -TRISE 00000089 -TRISE0 00000000 -TRISE1 00000001 -TRISE2 00000002 -TRISE3 00000003 -TRMT 00000001 -TUN0 00000000 -TUN1 00000001 -TUN2 00000002 -TUN3 00000003 -TUN4 00000004 -TUN5 00000005 -TX8_9 00000006 -TX9 00000006 -TX9D 00000000 -TXD8 00000000 -TXEN 00000005 -TXIE 00000004 -TXIF 00000004 -TXREG 00000019 -TXSTA 00000098 -UA 00000001 -W 00000000 -WCOL 00000007 -WPU 00000095 -WPU0 00000000 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:43 PAGE 9 - - -SYMBOL TABLE - LABEL VALUE - -WPU1 00000001 -WPU2 00000002 -WPU3 00000003 -WPU4 00000004 -WPU5 00000005 -WPU6 00000006 -WPU7 00000007 -WPUB 00000095 -WPUB0 00000000 -WPUB1 00000001 -WPUB2 00000002 -WPUB3 00000003 -WPUB4 00000004 -WPUB5 00000005 -WPUB6 00000006 -WPUB7 00000007 -Z 00000002 -_BOREN_NSLEEP 00003EFF -_BOREN_OFF 00003CFF -_BOREN_ON 00003FFF -_BORV_19 00003FFF -_BORV_1_9 00003FFF -_BORV_25 00003BFF -_BORV_2_5 00003BFF -_BOR_NSLEEP 00003EFF -_BOR_OFF 00003CFF -_BOR_ON 00003FFF -_CONFIG1 00002007 -_CONFIG2 00002008 -_CP_OFF 00003FFF -_CP_ON 00003FBF -_DEBUG_OFF 00003FFF -_DEBUG_ON 00001FFF -_DEVID1 00002006 -_EC_OSC 00003FFB -_EXTRC 00003FFF -_EXTRCIO 00003FFE -_EXTRC_OSC_CLKOUT 00003FFF -_EXTRC_OSC_NOCLKOUT 00003FFE -_FOSC_EC 00003FFB -_FOSC_EXTRCCLK 00003FFF -_FOSC_EXTRCIO 00003FFE -_FOSC_HS 00003FFA -_FOSC_INTOSCCLK 00003FFD -_FOSC_INTOSCIO 00003FFC -_FOSC_LP 00003FF8 -_FOSC_XT 00003FF9 -_HS_OSC 00003FFA -_IDLOC0 00002000 -_IDLOC1 00002001 -_IDLOC2 00002002 -_IDLOC3 00002003 -_INTOSC 00003FFD -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:44:43 PAGE 10 - - -SYMBOL TABLE - LABEL VALUE - -_INTOSCIO 00003FFC -_INTRC_OSC_CLKOUT 00003FFD -_INTRC_OSC_NOCLKOUT 00003FFC -_LP_OSC 00003FF8 -_MCLRE_OFF 00003FDF -_MCLRE_ON 00003FFF -_MCLR_DIS 00003FDF -_MCLR_EN 00003FFF -_PLLEN_OFF 00002FFF -_PLLEN_ON 00003FFF -_PLL_DIS 00002FFF -_PLL_EN 00003FFF -_PWRTE_OFF 00003FFF -_PWRTE_ON 00003FEF -_PWRT_DIS 00003FFF -_PWRT_EN 00003FEF -_WDTE_OFF 00003FF7 -_WDTE_ON 00003FFF -_WDT_OFF 00003FF7 -_WDT_ON 00003FFF -_XT_OSC 00003FF9 -__16LF727 00000001 -__CODE_END 00001FFF -__CODE_START 00000000 -__COMMON_RAM_END 0000007F -__COMMON_RAM_START 00000070 -__VECTOR_INT 00000004 -__VECTOR_RESET 00000000 - -Errors : 0 -Warnings : 0 reported, 0 suppressed -Messages : 0 reported, 0 suppressed - -
\ No newline at end of file diff --git a/device/non-free/lib/pic14/.checkdevices/check.o b/device/non-free/lib/pic14/.checkdevices/check.o Binary files differdeleted file mode 100644 index 4bfffe0..0000000 --- a/device/non-free/lib/pic14/.checkdevices/check.o +++ /dev/null diff --git a/device/non-free/lib/pic14/a.lst b/device/non-free/lib/pic14/a.lst deleted file mode 100644 index fb45587..0000000 --- a/device/non-free/lib/pic14/a.lst +++ /dev/null @@ -1,19 +0,0 @@ -gplink-1.4.0 #1107 (Apr 3 2018) -Copyright (c) 1998-2014 gputils project -Listing File Generated: 10-15-2019 15:44:43 - - -Address Value Disassembly Source -------- ----- ----------- ------ - include "p16lf727.inc" - LIST - - ;========================================================================== - ; Build date : Aug 07 2014 - ; MPASM PIC16LF727 processor include - ; - ; (c) Copyright 1999-2014 Microchip Technology, All rights reserved - ;========================================================================== - - NOLIST - END diff --git a/device/non-free/lib/pic16/.checkdevices/check.lst b/device/non-free/lib/pic16/.checkdevices/check.lst deleted file mode 100644 index c0e74b5..0000000 --- a/device/non-free/lib/pic16/.checkdevices/check.lst +++ /dev/null @@ -1,2749 +0,0 @@ -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 1 - - -LOC OBJECT CODE LINE SOURCE TEXT - VALUE - - 00001 include "p18lf66k80.inc" - 00001 LIST - 00002 - 00003 ;========================================================================== - 00004 ; Build date : Aug 07 2014 - 00005 ; MPASM PIC18LF66K80 processor include - 00006 ; - 00007 ; (c) Copyright 1999-2014 Microchip Technology, All rights reserved - 00008 ;========================================================================== - 00009 - 05573 LIST - 00002 END -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 2 - - -SYMBOL TABLE - LABEL VALUE - -A 00000000 -ABAT 00000004 -ABDEN 00000000 -ABDOVF 00000007 -ACCESS 00000000 -ACKDT 00000005 -ACKEN 00000004 -ACKSTAT 00000006 -ACQT0 00000003 -ACQT1 00000004 -ACQT2 00000005 -ADCMD 00000005 -ADCON0 00000FC2 -ADCON1 00000FC1 -ADCON2 00000FC0 -ADCS0 00000000 -ADCS1 00000001 -ADCS2 00000002 -ADDEN 00000003 -ADDEN1 00000003 -ADDEN2 00000003 -ADEN 00000003 -ADFM 00000007 -ADIE 00000006 -ADIF 00000006 -ADIP 00000006 -ADMSK1 00000001 -ADMSK2 00000002 -ADMSK3 00000003 -ADMSK4 00000004 -ADMSK5 00000005 -ADON 00000000 -ADRES 00000FC3 -ADRESH 00000FC4 -ADRESL 00000FC3 -ANCON0 00000F5D -ANCON1 00000F5C -ANSEL0 00000000 -ANSEL1 00000001 -ANSEL10 00000002 -ANSEL11 00000003 -ANSEL12 00000004 -ANSEL13 00000005 -ANSEL14 00000006 -ANSEL2 00000002 -ANSEL3 00000003 -ANSEL4 00000004 -ANSEL5 00000005 -ANSEL6 00000006 -ANSEL7 00000007 -ANSEL8 00000000 -ANSEL9 00000001 -B0CON 00000E80 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 3 - - -SYMBOL TABLE - LABEL VALUE - -B0D0 00000E86 -B0D00 00000000 -B0D01 00000001 -B0D02 00000002 -B0D03 00000003 -B0D04 00000004 -B0D05 00000005 -B0D06 00000006 -B0D07 00000007 -B0D1 00000E87 -B0D10 00000000 -B0D11 00000001 -B0D12 00000002 -B0D13 00000003 -B0D14 00000004 -B0D15 00000005 -B0D16 00000006 -B0D17 00000007 -B0D2 00000E88 -B0D20 00000000 -B0D21 00000001 -B0D22 00000002 -B0D23 00000003 -B0D24 00000004 -B0D25 00000005 -B0D26 00000006 -B0D27 00000007 -B0D3 00000E89 -B0D30 00000000 -B0D31 00000001 -B0D32 00000002 -B0D33 00000003 -B0D34 00000004 -B0D35 00000005 -B0D36 00000006 -B0D37 00000007 -B0D4 00000E8A -B0D40 00000000 -B0D41 00000001 -B0D42 00000002 -B0D43 00000003 -B0D44 00000004 -B0D45 00000005 -B0D46 00000006 -B0D47 00000007 -B0D5 00000E8B -B0D50 00000000 -B0D51 00000001 -B0D52 00000002 -B0D53 00000003 -B0D54 00000004 -B0D55 00000005 -B0D56 00000006 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 4 - - -SYMBOL TABLE - LABEL VALUE - -B0D57 00000007 -B0D6 00000E8C -B0D60 00000000 -B0D61 00000001 -B0D62 00000002 -B0D63 00000003 -B0D64 00000004 -B0D65 00000005 -B0D66 00000006 -B0D67 00000007 -B0D7 00000E8D -B0D70 00000000 -B0D71 00000001 -B0D72 00000002 -B0D73 00000003 -B0D74 00000004 -B0D75 00000005 -B0D76 00000006 -B0D77 00000007 -B0DLC 00000E85 -B0EIDH 00000E83 -B0EIDL 00000E84 -B0IE 00000002 -B0SIDH 00000E81 -B0SIDL 00000E82 -B0TXEN 00000002 -B1CON 00000E90 -B1D0 00000E96 -B1D00 00000000 -B1D01 00000001 -B1D02 00000002 -B1D03 00000003 -B1D04 00000004 -B1D05 00000005 -B1D06 00000006 -B1D07 00000007 -B1D1 00000E97 -B1D10 00000000 -B1D11 00000001 -B1D12 00000002 -B1D13 00000003 -B1D14 00000004 -B1D15 00000005 -B1D16 00000006 -B1D17 00000007 -B1D2 00000E98 -B1D20 00000000 -B1D21 00000001 -B1D22 00000002 -B1D23 00000003 -B1D24 00000004 -B1D25 00000005 -B1D26 00000006 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 5 - - -SYMBOL TABLE - LABEL VALUE - -B1D27 00000007 -B1D3 00000E99 -B1D30 00000000 -B1D31 00000001 -B1D32 00000002 -B1D33 00000003 -B1D34 00000004 -B1D35 00000005 -B1D36 00000006 -B1D37 00000007 -B1D4 00000E9A -B1D40 00000000 -B1D41 00000001 -B1D42 00000002 -B1D43 00000003 -B1D44 00000004 -B1D45 00000005 -B1D46 00000006 -B1D47 00000007 -B1D5 00000E9B -B1D50 00000000 -B1D51 00000001 -B1D52 00000002 -B1D53 00000003 -B1D54 00000004 -B1D55 00000005 -B1D56 00000006 -B1D57 00000007 -B1D6 00000E9C -B1D60 00000000 -B1D61 00000001 -B1D62 00000002 -B1D63 00000003 -B1D64 00000004 -B1D65 00000005 -B1D66 00000006 -B1D67 00000007 -B1D7 00000E9D -B1D70 00000000 -B1D71 00000001 -B1D72 00000002 -B1D73 00000003 -B1D74 00000004 -B1D75 00000005 -B1D76 00000006 -B1D77 00000007 -B1DLC 00000E95 -B1EIDH 00000E93 -B1EIDL 00000E94 -B1IE 00000003 -B1SIDH 00000E91 -B1SIDL 00000E92 -B1TXEN 00000003 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 6 - - -SYMBOL TABLE - LABEL VALUE - -B2CON 00000EA0 -B2D0 00000EA6 -B2D00 00000000 -B2D01 00000001 -B2D02 00000002 -B2D03 00000003 -B2D04 00000004 -B2D05 00000005 -B2D06 00000006 -B2D07 00000007 -B2D1 00000EA7 -B2D10 00000000 -B2D11 00000001 -B2D12 00000002 -B2D13 00000003 -B2D14 00000004 -B2D15 00000005 -B2D16 00000006 -B2D17 00000007 -B2D2 00000EA8 -B2D20 00000000 -B2D21 00000001 -B2D22 00000002 -B2D23 00000003 -B2D24 00000004 -B2D25 00000005 -B2D26 00000006 -B2D27 00000007 -B2D3 00000EA9 -B2D30 00000000 -B2D31 00000001 -B2D32 00000002 -B2D33 00000003 -B2D34 00000004 -B2D35 00000005 -B2D36 00000006 -B2D37 00000007 -B2D4 00000EAA -B2D40 00000000 -B2D41 00000001 -B2D42 00000002 -B2D43 00000003 -B2D44 00000004 -B2D45 00000005 -B2D46 00000006 -B2D47 00000007 -B2D5 00000EAB -B2D50 00000000 -B2D51 00000001 -B2D52 00000002 -B2D53 00000003 -B2D54 00000004 -B2D55 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 7 - - -SYMBOL TABLE - LABEL VALUE - -B2D56 00000006 -B2D57 00000007 -B2D6 00000EAC -B2D60 00000000 -B2D61 00000001 -B2D62 00000002 -B2D63 00000003 -B2D64 00000004 -B2D65 00000005 -B2D66 00000006 -B2D67 00000007 -B2D7 00000EAD -B2D70 00000000 -B2D71 00000001 -B2D72 00000002 -B2D73 00000003 -B2D74 00000004 -B2D75 00000005 -B2D76 00000006 -B2D77 00000007 -B2DLC 00000EA5 -B2EIDH 00000EA3 -B2EIDL 00000EA4 -B2IE 00000004 -B2SIDH 00000EA1 -B2SIDL 00000EA2 -B2TXEN 00000004 -B3CON 00000EB0 -B3D0 00000EB6 -B3D00 00000000 -B3D01 00000001 -B3D02 00000002 -B3D03 00000003 -B3D04 00000004 -B3D05 00000005 -B3D06 00000006 -B3D07 00000007 -B3D1 00000EB7 -B3D10 00000000 -B3D11 00000001 -B3D12 00000002 -B3D13 00000003 -B3D14 00000004 -B3D15 00000005 -B3D16 00000006 -B3D17 00000007 -B3D2 00000EB8 -B3D20 00000000 -B3D21 00000001 -B3D22 00000002 -B3D23 00000003 -B3D24 00000004 -B3D25 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 8 - - -SYMBOL TABLE - LABEL VALUE - -B3D26 00000006 -B3D27 00000007 -B3D3 00000EB9 -B3D30 00000000 -B3D31 00000001 -B3D32 00000002 -B3D33 00000003 -B3D34 00000004 -B3D35 00000005 -B3D36 00000006 -B3D37 00000007 -B3D4 00000EBA -B3D40 00000000 -B3D41 00000001 -B3D42 00000002 -B3D43 00000003 -B3D44 00000004 -B3D45 00000005 -B3D46 00000006 -B3D47 00000007 -B3D5 00000EBB -B3D50 00000000 -B3D51 00000001 -B3D52 00000002 -B3D53 00000003 -B3D54 00000004 -B3D55 00000005 -B3D56 00000006 -B3D57 00000007 -B3D6 00000EBC -B3D60 00000000 -B3D61 00000001 -B3D62 00000002 -B3D63 00000003 -B3D64 00000004 -B3D65 00000005 -B3D66 00000006 -B3D67 00000007 -B3D7 00000EBD -B3D70 00000000 -B3D71 00000001 -B3D72 00000002 -B3D73 00000003 -B3D74 00000004 -B3D75 00000005 -B3D76 00000006 -B3D77 00000007 -B3DLC 00000EB5 -B3EIDH 00000EB3 -B3EIDL 00000EB4 -B3IE 00000005 -B3SIDH 00000EB1 -B3SIDL 00000EB2 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 9 - - -SYMBOL TABLE - LABEL VALUE - -B3TXEN 00000005 -B4CON 00000EC0 -B4D0 00000EC6 -B4D00 00000000 -B4D01 00000001 -B4D02 00000002 -B4D03 00000003 -B4D04 00000004 -B4D05 00000005 -B4D06 00000006 -B4D07 00000007 -B4D1 00000EC7 -B4D10 00000000 -B4D11 00000001 -B4D12 00000002 -B4D13 00000003 -B4D14 00000004 -B4D15 00000005 -B4D16 00000006 -B4D17 00000007 -B4D2 00000EC8 -B4D20 00000000 -B4D21 00000001 -B4D22 00000002 -B4D23 00000003 -B4D24 00000004 -B4D25 00000005 -B4D26 00000006 -B4D27 00000007 -B4D3 00000EC9 -B4D30 00000000 -B4D31 00000001 -B4D32 00000002 -B4D33 00000003 -B4D34 00000004 -B4D35 00000005 -B4D36 00000006 -B4D37 00000007 -B4D4 00000ECA -B4D40 00000000 -B4D41 00000001 -B4D42 00000002 -B4D43 00000003 -B4D44 00000004 -B4D45 00000005 -B4D46 00000006 -B4D47 00000007 -B4D5 00000ECB -B4D50 00000000 -B4D51 00000001 -B4D52 00000002 -B4D53 00000003 -B4D54 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 10 - - -SYMBOL TABLE - LABEL VALUE - -B4D55 00000005 -B4D56 00000006 -B4D57 00000007 -B4D6 00000ECC -B4D60 00000000 -B4D61 00000001 -B4D62 00000002 -B4D63 00000003 -B4D64 00000004 -B4D65 00000005 -B4D66 00000006 -B4D67 00000007 -B4D7 00000ECD -B4D70 00000000 -B4D71 00000001 -B4D72 00000002 -B4D73 00000003 -B4D74 00000004 -B4D75 00000005 -B4D76 00000006 -B4D77 00000007 -B4DLC 00000EC5 -B4EIDH 00000EC3 -B4EIDL 00000EC4 -B4IE 00000006 -B4SIDH 00000EC1 -B4SIDL 00000EC2 -B4TXEN 00000006 -B5CON 00000ED0 -B5D0 00000ED6 -B5D00 00000000 -B5D01 00000001 -B5D02 00000002 -B5D03 00000003 -B5D04 00000004 -B5D05 00000005 -B5D06 00000006 -B5D07 00000007 -B5D1 00000ED7 -B5D10 00000000 -B5D11 00000001 -B5D12 00000002 -B5D13 00000003 -B5D14 00000004 -B5D15 00000005 -B5D16 00000006 -B5D17 00000007 -B5D2 00000ED8 -B5D20 00000000 -B5D21 00000001 -B5D22 00000002 -B5D23 00000003 -B5D24 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 11 - - -SYMBOL TABLE - LABEL VALUE - -B5D25 00000005 -B5D26 00000006 -B5D27 00000007 -B5D3 00000ED9 -B5D30 00000000 -B5D31 00000001 -B5D32 00000002 -B5D33 00000003 -B5D34 00000004 -B5D35 00000005 -B5D36 00000006 -B5D37 00000007 -B5D4 00000EDA -B5D40 00000000 -B5D41 00000001 -B5D42 00000002 -B5D43 00000003 -B5D44 00000004 -B5D45 00000005 -B5D46 00000006 -B5D47 00000007 -B5D5 00000EDB -B5D50 00000000 -B5D51 00000001 -B5D52 00000002 -B5D53 00000003 -B5D54 00000004 -B5D55 00000005 -B5D56 00000006 -B5D57 00000007 -B5D6 00000EDC -B5D60 00000000 -B5D61 00000001 -B5D62 00000002 -B5D63 00000003 -B5D64 00000004 -B5D65 00000005 -B5D66 00000006 -B5D67 00000007 -B5D7 00000EDD -B5D70 00000000 -B5D71 00000001 -B5D72 00000002 -B5D73 00000003 -B5D74 00000004 -B5D75 00000005 -B5D76 00000006 -B5D77 00000007 -B5DLC 00000ED5 -B5EIDH 00000ED3 -B5EIDL 00000ED4 -B5IE 00000007 -B5SIDH 00000ED1 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 12 - - -SYMBOL TABLE - LABEL VALUE - -B5SIDL 00000ED2 -B5TXEN 00000007 -BANKED 00000001 -BAUDCON1 00000FA7 -BAUDCON2 00000FB9 -BCLIE 00000003 -BCLIF 00000003 -BCLIP 00000003 -BF 00000000 -BGVST 00000006 -BIE0 00000E7E -BOR 00000000 -BRG16 00000003 -BRGCON1 00000E43 -BRGCON2 00000E44 -BRGCON3 00000E45 -BRGH 00000002 -BRGH1 00000002 -BRGH2 00000002 -BRP0 00000000 -BRP1 00000001 -BRP2 00000002 -BRP3 00000003 -BRP4 00000004 -BRP5 00000005 -BSEL0 00000E7D -BSR 00000FE0 -C 00000000 -C1TSEL 00000000 -C2TSEL 00000001 -C3TSEL 00000002 -C4TSEL 00000003 -C5TSEL 00000004 -CANCAP 00000004 -CANCON 00000F6F -CANCON_RO0 00000F3F -CANCON_RO1 00000F2F -CANCON_RO2 00000F1F -CANCON_RO3 00000F0F -CANCON_RO4 00000EDF -CANCON_RO5 00000ECF -CANCON_RO6 00000EBF -CANCON_RO7 00000EAF -CANCON_RO8 00000E9F -CANCON_RO9 00000E8F -CANSTAT 00000F6E -CANSTAT_RO0 00000F3E -CANSTAT_RO1 00000F2E -CANSTAT_RO2 00000F1E -CANSTAT_RO3 00000F0E -CANSTAT_RO4 00000EDE -CANSTAT_RO5 00000ECE -CANSTAT_RO6 00000EBE -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 13 - - -SYMBOL TABLE - LABEL VALUE - -CANSTAT_RO7 00000EAE -CANSTAT_RO8 00000E9E -CANSTAT_RO9 00000E8E -CCH0 00000000 -CCH1 00000001 -CCP1CON 00000FBB -CCP1IE 00000001 -CCP1IF 00000001 -CCP1IP 00000001 -CCP1M0 00000000 -CCP1M1 00000001 -CCP1M2 00000002 -CCP1M3 00000003 -CCP1MD 00000003 -CCP1OD 00000002 -CCP1X 00000005 -CCP1Y 00000004 -CCP2CON 00000F50 -CCP2IE 00000002 -CCP2IF 00000002 -CCP2IP 00000002 -CCP2M0 00000000 -CCP2M1 00000001 -CCP2M2 00000002 -CCP2M3 00000003 -CCP2MD 00000004 -CCP2OD 00000003 -CCP2X 00000005 -CCP2Y 00000004 -CCP3CON 00000F4D -CCP3IE 00000000 -CCP3IF 00000000 -CCP3IP 00000000 -CCP3M0 00000000 -CCP3M1 00000001 -CCP3M2 00000002 -CCP3M3 00000003 -CCP3MD 00000005 -CCP3OD 00000004 -CCP3X 00000005 -CCP3Y 00000004 -CCP4CON 00000F4A -CCP4IE 00000001 -CCP4IF 00000001 -CCP4IP 00000001 -CCP4M0 00000000 -CCP4M1 00000001 -CCP4M2 00000002 -CCP4M3 00000003 -CCP4MD 00000006 -CCP4OD 00000005 -CCP4X 00000005 -CCP4Y 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 14 - - -SYMBOL TABLE - LABEL VALUE - -CCP5CON 00000F47 -CCP5IE 00000002 -CCP5IF 00000002 -CCP5IP 00000002 -CCP5M0 00000000 -CCP5M1 00000001 -CCP5M2 00000002 -CCP5M3 00000003 -CCP5MD 00000007 -CCP5OD 00000006 -CCP5X 00000005 -CCP5Y 00000004 -CCPR1 00000FBC -CCPR1H 00000FBD -CCPR1L 00000FBC -CCPR2 00000F51 -CCPR2H 00000F52 -CCPR2L 00000F51 -CCPR3 00000F4E -CCPR3H 00000F4F -CCPR3L 00000F4E -CCPR4 00000F4B -CCPR4H 00000F4C -CCPR4L 00000F4B -CCPR5 00000F48 -CCPR5H 00000F49 -CCPR5L 00000F48 -CCPTMRS 00000F99 -CFGS 00000006 -CHS0 00000002 -CHS1 00000003 -CHS2 00000004 -CHS3 00000005 -CHS4 00000006 -CHSN0 00000000 -CHSN1 00000001 -CHSN2 00000002 -CIOCON 00000F70 -CKE 00000006 -CKP 00000004 -CLKSEL 00000000 -CM 00000005 -CM1CON 00000F5F -CM1CON1 00000F5F -CM2CON 00000F5E -CM2CON1 00000F5E -CMP1IE 00000004 -CMP1IF 00000004 -CMP1IP 00000004 -CMP1MD 00000000 -CMP1OUT 00000006 -CMP2IE 00000005 -CMP2IF 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 15 - - -SYMBOL TABLE - LABEL VALUE - -CMP2IP 00000005 -CMP2MD 00000001 -CMP2OUT 00000007 -CMPL0 00000006 -CMPL1 00000007 -CMSTAT 00000FB4 -CMSTATUS 00000FB4 -COE 00000006 -COMSTAT 00000F71 -CON 00000007 -CPOL 00000005 -CREF 00000002 -CREN 00000004 -CREN1 00000004 -CREN2 00000004 -CSRC 00000007 -CSRC1 00000007 -CSRC2 00000007 -CTMUCONH 00000F55 -CTMUCONL 00000F54 -CTMUDS 00000000 -CTMUEN 00000007 -CTMUICON 00000F53 -CTMUIE 00000003 -CTMUIF 00000003 -CTMUIP 00000003 -CTMUMD 00000006 -CTMUSIDL 00000005 -CTTRIG 00000000 -CVR0 00000000 -CVR1 00000001 -CVR2 00000002 -CVR3 00000003 -CVR4 00000004 -CVRCON 00000FB5 -CVREN 00000007 -CVROE 00000006 -CVRSS 00000005 -DATA_ADDRESS 00000005 -DC 00000001 -DC1B0 00000004 -DC1B1 00000005 -DC2B0 00000004 -DC2B1 00000005 -DC3B0 00000004 -DC3B1 00000005 -DC4B0 00000004 -DC4B1 00000005 -DC5B0 00000004 -DC5B1 00000005 -DDRA TRISA -DDRB TRISB -DDRC TRISC -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 16 - - -SYMBOL TABLE - LABEL VALUE - -DDRD TRISD -DDRE TRISE -DLC0 00000000 -DLC1 00000001 -DLC2 00000002 -DLC3 00000003 -DONE 00000001 -D_A 00000005 -D_NOT_A 00000005 -ECANCON 00000F72 -ECANMD 00000002 -ECCP1AS 00000FBF -ECCP1AS0 00000004 -ECCP1AS1 00000005 -ECCP1AS2 00000006 -ECCP1ASE 00000007 -ECCP1CON 00000FBB -ECCP1DEL 00000FBE -ECCP2CON 00000F50 -EDG1POL 00000004 -EDG1SEL0 00000002 -EDG1SEL1 00000003 -EDG1STAT 00000000 -EDG2POL 00000007 -EDG2SEL0 00000005 -EDG2SEL1 00000006 -EDG2STAT 00000001 -EDGEN 00000003 -EDGSEQEN 00000002 -EDI16 00000000 -EDI17 00000001 -EEADR 00000F74 -EEADRH 00000F75 -EECON1 00000F7F -EECON2 00000F7E -EEDATA 00000F73 -EEIE 00000006 -EEIF 00000006 -EEIP 00000006 -EEPGD 00000007 -EICODE0 00000000 -EICODE1 00000001 -EICODE1_ICODE0 00000001 -EICODE2 00000002 -EICODE2_ICODE1 00000002 -EICODE3 00000003 -EICODE3_ICODE2 00000003 -EICODE4 00000004 -EID0 00000000 -EID1 00000001 -EID10 00000002 -EID11 00000003 -EID12 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 17 - - -SYMBOL TABLE - LABEL VALUE - -EID13 00000005 -EID14 00000006 -EID15 00000007 -EID16 00000000 -EID17 00000001 -EID2 00000002 -EID3 00000003 -EID4 00000004 -EID5 00000005 -EID6 00000006 -EID7 00000007 -EID8 00000000 -EID9 00000001 -ENDRHI 00000005 -ERRIE 00000005 -ERRIF 00000005 -ERRIP 00000005 -EVPOL0 00000003 -EVPOL1 00000004 -EWARN 00000000 -EWIN0 00000000 -EWIN1 00000001 -EWIN2 00000002 -EWIN3 00000003 -EWIN4 00000004 -EXID 00000003 -EXIDE 00000003 -EXIDEN 00000003 -F0BP_0 00000000 -F0BP_1 00000001 -F0BP_2 00000002 -F0BP_3 00000003 -F10BP_0 00000000 -F10BP_1 00000001 -F10BP_2 00000002 -F10BP_3 00000003 -F11BP_0 00000004 -F11BP_1 00000005 -F11BP_2 00000006 -F11BP_3 00000007 -F12BP_0 00000000 -F12BP_1 00000001 -F12BP_2 00000002 -F12BP_3 00000003 -F13BP_0 00000004 -F13BP_1 00000005 -F13BP_2 00000006 -F13BP_3 00000007 -F14BP_0 00000000 -F14BP_1 00000001 -F14BP_2 00000002 -F14BP_3 00000003 -F15BP_0 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 18 - - -SYMBOL TABLE - LABEL VALUE - -F15BP_1 00000005 -F15BP_2 00000006 -F15BP_3 00000007 -F1BP_0 00000004 -F1BP_1 00000005 -F1BP_2 00000006 -F1BP_3 00000007 -F2BP_0 00000000 -F2BP_1 00000001 -F2BP_2 00000002 -F2BP_3 00000003 -F3BP_0 00000004 -F3BP_1 00000005 -F3BP_2 00000006 -F3BP_3 00000007 -F4BP_0 00000000 -F4BP_1 00000001 -F4BP_2 00000002 -F4BP_3 00000003 -F5BP_0 00000004 -F5BP_1 00000005 -F5BP_2 00000006 -F5BP_3 00000007 -F6BP_0 00000000 -F6BP_1 00000001 -F6BP_2 00000002 -F6BP_3 00000003 -F7BP_0 00000004 -F7BP_1 00000005 -F7BP_2 00000006 -F7BP_3 00000007 -F8BP_0 00000000 -F8BP_1 00000001 -F8BP_2 00000002 -F8BP_3 00000003 -F9BP_0 00000004 -F9BP_1 00000005 -F9BP_2 00000006 -F9BP_3 00000007 -FAST 00000001 -FERR 00000002 -FERR1 00000002 -FERR2 00000002 -FIFOWM 00000005 -FIFOWMIE 00000000 -FIFOWMIF 00000000 -FIFOWMIP 00000000 -FIL0_0 00000000 -FIL0_1 00000001 -FIL10_0 00000004 -FIL10_1 00000005 -FIL11_0 00000006 -FIL11_1 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 19 - - -SYMBOL TABLE - LABEL VALUE - -FIL12_0 00000000 -FIL12_1 00000001 -FIL13_0 00000002 -FIL13_1 00000003 -FIL14_0 00000004 -FIL14_1 00000005 -FIL15_0 00000006 -FIL15_1 00000007 -FIL1_0 00000002 -FIL1_1 00000003 -FIL2_0 00000004 -FIL2_1 00000005 -FIL3_0 00000006 -FIL3_1 00000007 -FIL4_0 00000000 -FIL4_1 00000001 -FIL5_0 00000002 -FIL5_1 00000003 -FIL6_0 00000004 -FIL6_1 00000005 -FIL7_0 00000006 -FIL7_1 00000007 -FIL8_0 00000000 -FIL8_1 00000001 -FIL9_0 00000002 -FIL9_1 00000003 -FILHIT0 00000000 -FILHIT0_TXPRI0 00000000 -FILHIT1 00000001 -FILHIT1_TXPRI1 00000001 -FILHIT2 00000002 -FILHIT2_RTREN 00000002 -FILHIT3 00000003 -FILHIT3_TXREQ 00000003 -FILHIT4 00000004 -FILHIT4_TXERR 00000004 -FLC0 00000000 -FLC1 00000001 -FLC2 00000002 -FLC3 00000003 -FLC4 00000004 -FP0 00000000 -FP1 00000001 -FP2 00000002 -FP3 00000003 -FREE 00000004 -FSR0 00000000 -FSR0H 00000FEA -FSR0L 00000FE9 -FSR1 00000001 -FSR1H 00000FE2 -FSR1L 00000FE1 -FSR2 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 20 - - -SYMBOL TABLE - LABEL VALUE - -FSR2H 00000FDA -FSR2L 00000FD9 -GCEN 00000007 -GIE 00000007 -GIEH 00000007 -GIEL 00000006 -GIE_GIEH 00000007 -GO 00000001 -GO_NOT_DONE 00000001 -HFIOFS 00000002 -HLVDCON 00000FA8 -HLVDEN 00000004 -HLVDIE 00000002 -HLVDIF 00000002 -HLVDIP 00000002 -HLVDL0 00000000 -HLVDL1 00000001 -HLVDL2 00000002 -HLVDL3 00000003 -I2C_DAT 00000005 -I2C_READ 00000002 -I2C_START 00000003 -I2C_STOP 00000004 -IBF 00000007 -IBOV 00000005 -ICODE0 00000001 -ICODE1 00000002 -ICODE2 00000003 -ICODE20 00000001 -ICODE21 00000002 -IDISSEN 00000001 -IDLEN 00000007 -INDF0 00000FEF -INDF1 00000FE7 -INDF2 00000FDF -INT0E 00000004 -INT0F 00000001 -INT0IE 00000004 -INT0IF 00000001 -INT1E 00000003 -INT1F 00000000 -INT1IE 00000003 -INT1IF 00000000 -INT1IP 00000006 -INT1P 00000006 -INT2E 00000004 -INT2F 00000001 -INT2IE 00000004 -INT2IF 00000001 -INT2IP 00000007 -INT2P 00000007 -INT3E 00000005 -INT3F 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 21 - - -SYMBOL TABLE - LABEL VALUE - -INT3IE 00000005 -INT3IF 00000002 -INT3IP 00000001 -INT3P 00000001 -INTCON 00000FF2 -INTCON1 00000FF2 -INTCON2 00000FF1 -INTCON3 00000FF0 -INTEDG0 00000006 -INTEDG1 00000005 -INTEDG2 00000004 -INTEDG3 00000003 -INTSRC 00000007 -IOCB 00000F5A -IOCB4 00000004 -IOCB5 00000005 -IOCB6 00000006 -IOCB7 00000007 -IPEN 00000007 -IPR1 00000F9F -IPR2 00000FA2 -IPR3 00000FA5 -IPR4 00000FB8 -IPR5 00000F78 -IRCF0 00000004 -IRCF1 00000005 -IRCF2 00000006 -IRNG0 00000000 -IRNG1 00000001 -IRVST 00000005 -IRXIE 00000007 -IRXIF 00000007 -IRXIP 00000007 -ITRIM0 00000002 -ITRIM1 00000003 -ITRIM2 00000004 -ITRIM3 00000005 -ITRIM4 00000006 -ITRIM5 00000007 -JTOFF 00000001 -JTOFF_FILHIT1 00000001 -LATA 00000F89 -LATA0 00000000 -LATA1 00000001 -LATA2 00000002 -LATA3 00000003 -LATA5 00000005 -LATA6 00000006 -LATA7 00000007 -LATB 00000F8A -LATB0 00000000 -LATB1 00000001 -LATB2 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 22 - - -SYMBOL TABLE - LABEL VALUE - -LATB3 00000003 -LATB4 00000004 -LATB5 00000005 -LATB6 00000006 -LATB7 00000007 -LATC 00000F8B -LATC0 00000000 -LATC1 00000001 -LATC2 00000002 -LATC3 00000003 -LATC4 00000004 -LATC5 00000005 -LATC6 00000006 -LATC7 00000007 -LATD 00000F8C -LATD0 00000000 -LATD1 00000001 -LATD2 00000002 -LATD3 00000003 -LATD4 00000004 -LATD5 00000005 -LATD6 00000006 -LATD7 00000007 -LATE 00000F8D -LATE0 00000000 -LATE1 00000001 -LATE2 00000002 -LATE4 00000004 -LATE5 00000005 -LATE6 00000006 -LATE7 00000007 -LATF 00000F8E -LATF0 00000000 -LATF1 00000001 -LATF2 00000002 -LATF3 00000003 -LATF4 00000004 -LATF5 00000005 -LATF6 00000006 -LATF7 00000007 -LATG 00000F8F -LATG0 00000000 -LATG1 00000001 -LATG2 00000002 -LATG3 00000003 -LATG4 00000004 -LVDIE 00000002 -LVDIF 00000002 -LVDIP 00000002 -LVDL0 00000000 -LVDL1 00000001 -LVDL2 00000002 -LVDL3 00000003 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 23 - - -SYMBOL TABLE - LABEL VALUE - -MDBIT 00000000 -MDCARH 00000F43 -MDCARL 00000F42 -MDCH0 00000000 -MDCH1 00000001 -MDCH2 00000002 -MDCH3 00000003 -MDCHODIS 00000007 -MDCHPOL 00000006 -MDCHSYNC 00000005 -MDCL0 00000000 -MDCL1 00000001 -MDCL2 00000002 -MDCL3 00000003 -MDCLODIS 00000007 -MDCLPOL 00000006 -MDCLSYNC 00000005 -MDCON 00000F45 -MDEN 00000007 -MDO 00000003 -MDOE 00000006 -MDOPOL 00000004 -MDSEL0 00000006 -MDSEL1 00000007 -MDSLR 00000005 -MDSODIS 00000007 -MDSRC 00000F44 -MDSRC0 00000000 -MDSRC1 00000001 -MDSRC2 00000002 -MDSRC3 00000003 -MFIOFS 00000001 -MFIOSEL 00000000 -MODMD 00000003 -MSEL0 00000E79 -MSEL1 00000E7A -MSEL2 00000E7B -MSEL3 00000E7C -MSK0 00000000 -MSK1 00000001 -MSK2 00000002 -MSK3 00000003 -MSK4 00000004 -MSK5 00000005 -MSK6 00000006 -MSK7 00000007 -N 00000004 -NOT_A 00000005 -NOT_ADDRESS 00000005 -NOT_BOR 00000000 -NOT_CM 00000005 -NOT_DONE 00000001 -NOT_FIFOEMPTY 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 24 - - -SYMBOL TABLE - LABEL VALUE - -NOT_PD 00000002 -NOT_POR 00000001 -NOT_RBPU 00000007 -NOT_RC8 00000006 -NOT_RI 00000004 -NOT_T1DONE 00000003 -NOT_T1SYNC 00000002 -NOT_T3DONE 00000003 -NOT_T3SYNC 00000002 -NOT_TO 00000003 -NOT_TX8 00000006 -NOT_W 00000002 -NOT_WRITE 00000002 -OBF 00000006 -ODCON 00000F91 -OERR 00000001 -OERR1 00000001 -OERR2 00000001 -OPMODE0 00000005 -OPMODE1 00000006 -OPMODE2 00000007 -OSCCON 00000FD3 -OSCCON2 00000FD2 -OSCFIE 00000007 -OSCFIF 00000007 -OSCFIP 00000007 -OSCTUNE 00000F9B -OSTS 00000003 -OV 00000003 -P 00000004 -P1DC0 00000000 -P1DC1 00000001 -P1DC2 00000002 -P1DC3 00000003 -P1DC4 00000004 -P1DC5 00000005 -P1DC6 00000006 -P1M0 00000006 -P1M1 00000007 -P1RSEN 00000007 -PADCFG1 00000F56 -PC 00000FF9 -PCL 00000FF9 -PCLATH 00000FFA -PCLATU 00000FFB -PD 00000002 -PEIE 00000006 -PEIE_GIEL 00000006 -PEN 00000002 -PIE1 00000F9D -PIE2 00000FA0 -PIE3 00000FA3 -PIE4 00000FB6 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 25 - - -SYMBOL TABLE - LABEL VALUE - -PIE5 00000F76 -PIR1 00000F9E -PIR2 00000FA1 -PIR3 00000FA4 -PIR4 00000FB7 -PIR5 00000F77 -PLLEN 00000006 -PLUSW0 00000FEB -PLUSW1 00000FE3 -PLUSW2 00000FDB -PMD0 00000F59 -PMD1 00000F58 -PMD2 00000F57 -POR 00000001 -PORTA 00000F80 -PORTB 00000F81 -PORTC 00000F82 -PORTD 00000F83 -PORTE 00000F84 -PORTF 00000F85 -PORTG 00000F86 -POSTDEC0 00000FED -POSTDEC1 00000FE5 -POSTDEC2 00000FDD -POSTINC0 00000FEE -POSTINC1 00000FE6 -POSTINC2 00000FDE -PR2 00000FCB -PR4 00000FA9 -PREINC0 00000FEC -PREINC1 00000FE4 -PREINC2 00000FDC -PROD 00000FF3 -PRODH 00000FF4 -PRODL 00000FF3 -PRSEG0 00000000 -PRSEG1 00000001 -PRSEG2 00000002 -PSA 00000003 -PSPCON 00000F46 -PSPIE 00000007 -PSPIF 00000007 -PSPIP 00000007 -PSPMD 00000007 -PSPMODE 00000004 -PSS1AC0 00000002 -PSS1AC1 00000003 -PSS1BD0 00000000 -PSS1BD1 00000001 -PSTR1CON 00000F9C -PWM1CON 00000FBE -RA0 00000000 -RA1 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 26 - - -SYMBOL TABLE - LABEL VALUE - -RA2 00000002 -RA3 00000003 -RA5 00000005 -RA6 00000006 -RA7 00000007 -RB0DBEN 00000002 -RB0DBEN_FILHIT2 00000002 -RB0_B0DLC 00000004 -RB0_B1DLC 00000004 -RB0_B2DLC 00000004 -RB0_B3DLC 00000004 -RB0_B4DLC 00000004 -RB0_B5DLC 00000004 -RB0_PORTB 00000000 -RB0_RXB0DLC 00000004 -RB0_RXB1DLC 00000004 -RB1_B0DLC 00000005 -RB1_B1DLC 00000005 -RB1_B2DLC 00000005 -RB1_B3DLC 00000005 -RB1_B4DLC 00000005 -RB1_B5DLC 00000005 -RB1_PORTB 00000001 -RB1_RXB0DLC 00000005 -RB1_RXB1DLC 00000005 -RB2 00000002 -RB3 00000003 -RB4 00000004 -RB5 00000005 -RB6 00000006 -RB7 00000007 -RBIE 00000003 -RBIF 00000000 -RBIP 00000000 -RBPU 00000007 -RC0 00000000 -RC1 00000001 -RC1IE 00000005 -RC1IF 00000005 -RC1IP 00000005 -RC2 00000002 -RC2IE 00000005 -RC2IF 00000005 -RC2IP 00000005 -RC3 00000003 -RC4 00000004 -RC5 00000005 -RC6 00000006 -RC7 00000007 -RC8_9 00000006 -RC9 00000006 -RCD8 00000000 -RCEN 00000003 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 27 - - -SYMBOL TABLE - LABEL VALUE - -RCIDL 00000006 -RCIE 00000005 -RCIF 00000005 -RCIP 00000005 -RCMT 00000006 -RCON 00000FD0 -RCREG 00000FAE -RCREG1 00000FAE -RCREG2 00000F7A -RCSTA 00000FAB -RCSTA1 00000FAB -RCSTA2 00000FA6 -RD 00000000 -RD0 00000000 -RD1 00000001 -RD16 00000001 -RD2 00000002 -RD3 00000003 -RD4 00000004 -RD5 00000005 -RD6 00000006 -RD7 00000007 -RDPU 00000007 -RE0 00000000 -RE1 00000001 -RE2 00000002 -RE3 00000003 -RE4 00000004 -RE5 00000005 -RE6 00000006 -RE7 00000007 -READ_WRITE 00000002 -REC0 00000000 -REC1 00000001 -REC2 00000002 -REC3 00000003 -REC4 00000004 -REC5 00000005 -REC6 00000006 -REC7 00000007 -REFOCON 00000F9A -REGSLP 00000007 -REPU 00000006 -RF0 00000000 -RF1 00000001 -RF2 00000002 -RF3 00000003 -RF4 00000004 -RF5 00000005 -RF6 00000006 -RF7 00000007 -RFPU 00000005 -RG0 00000000 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 28 - - -SYMBOL TABLE - LABEL VALUE - -RG1 00000001 -RG2 00000002 -RG3 00000003 -RG4 00000004 -RGPU 00000004 -RI 00000004 -RODIV0 00000000 -RODIV1 00000001 -RODIV2 00000002 -RODIV3 00000003 -ROON 00000007 -ROSEL 00000004 -ROSSLP 00000005 -RSEN 00000001 -RTREN 00000002 -RTRRO 00000005 -RX9 00000006 -RX91 00000006 -RX92 00000006 -RX9D 00000000 -RX9D1 00000000 -RX9D2 00000000 -RXB0CON 00000F60 -RXB0D0 00000F66 -RXB0D00 00000000 -RXB0D01 00000001 -RXB0D02 00000002 -RXB0D03 00000003 -RXB0D04 00000004 -RXB0D05 00000005 -RXB0D06 00000006 -RXB0D07 00000007 -RXB0D1 00000F67 -RXB0D10 00000000 -RXB0D11 00000001 -RXB0D12 00000002 -RXB0D13 00000003 -RXB0D14 00000004 -RXB0D15 00000005 -RXB0D16 00000006 -RXB0D17 00000007 -RXB0D2 00000F68 -RXB0D20 00000000 -RXB0D21 00000001 -RXB0D22 00000002 -RXB0D23 00000003 -RXB0D24 00000004 -RXB0D25 00000005 -RXB0D26 00000006 -RXB0D27 00000007 -RXB0D3 00000F69 -RXB0D30 00000000 -RXB0D31 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 29 - - -SYMBOL TABLE - LABEL VALUE - -RXB0D32 00000002 -RXB0D33 00000003 -RXB0D34 00000004 -RXB0D35 00000005 -RXB0D36 00000006 -RXB0D37 00000007 -RXB0D4 00000F6A -RXB0D40 00000000 -RXB0D41 00000001 -RXB0D42 00000002 -RXB0D43 00000003 -RXB0D44 00000004 -RXB0D45 00000005 -RXB0D46 00000006 -RXB0D47 00000007 -RXB0D5 00000F6B -RXB0D50 00000000 -RXB0D51 00000001 -RXB0D52 00000002 -RXB0D53 00000003 -RXB0D54 00000004 -RXB0D55 00000005 -RXB0D56 00000006 -RXB0D57 00000007 -RXB0D6 00000F6C -RXB0D60 00000000 -RXB0D61 00000001 -RXB0D62 00000002 -RXB0D63 00000003 -RXB0D64 00000004 -RXB0D65 00000005 -RXB0D66 00000006 -RXB0D67 00000007 -RXB0D7 00000F6D -RXB0D70 00000000 -RXB0D71 00000001 -RXB0D72 00000002 -RXB0D73 00000003 -RXB0D74 00000004 -RXB0D75 00000005 -RXB0D76 00000006 -RXB0D77 00000007 -RXB0DLC 00000F65 -RXB0EIDH 00000F63 -RXB0EIDL 00000F64 -RXB0IE 00000000 -RXB0IF 00000000 -RXB0IP 00000000 -RXB0OVFL 00000007 -RXB0SIDH 00000F61 -RXB0SIDL 00000F62 -RXB1CON 00000F30 -RXB1D0 00000F36 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 30 - - -SYMBOL TABLE - LABEL VALUE - -RXB1D00 00000000 -RXB1D01 00000001 -RXB1D02 00000002 -RXB1D03 00000003 -RXB1D04 00000004 -RXB1D05 00000005 -RXB1D06 00000006 -RXB1D07 00000007 -RXB1D1 00000F37 -RXB1D10 00000000 -RXB1D11 00000001 -RXB1D12 00000002 -RXB1D13 00000003 -RXB1D14 00000004 -RXB1D15 00000005 -RXB1D16 00000006 -RXB1D17 00000007 -RXB1D2 00000F38 -RXB1D20 00000000 -RXB1D21 00000001 -RXB1D22 00000002 -RXB1D23 00000003 -RXB1D24 00000004 -RXB1D25 00000005 -RXB1D26 00000006 -RXB1D27 00000007 -RXB1D3 00000F39 -RXB1D30 00000000 -RXB1D31 00000001 -RXB1D32 00000002 -RXB1D33 00000003 -RXB1D34 00000004 -RXB1D35 00000005 -RXB1D36 00000006 -RXB1D37 00000007 -RXB1D4 00000F3A -RXB1D40 00000000 -RXB1D41 00000001 -RXB1D42 00000002 -RXB1D43 00000003 -RXB1D44 00000004 -RXB1D45 00000005 -RXB1D46 00000006 -RXB1D47 00000007 -RXB1D5 00000F3B -RXB1D50 00000000 -RXB1D51 00000001 -RXB1D52 00000002 -RXB1D53 00000003 -RXB1D54 00000004 -RXB1D55 00000005 -RXB1D56 00000006 -RXB1D57 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 31 - - -SYMBOL TABLE - LABEL VALUE - -RXB1D6 00000F3C -RXB1D60 00000000 -RXB1D61 00000001 -RXB1D62 00000002 -RXB1D63 00000003 -RXB1D64 00000004 -RXB1D65 00000005 -RXB1D66 00000006 -RXB1D67 00000007 -RXB1D7 00000F3D -RXB1D70 00000000 -RXB1D71 00000001 -RXB1D72 00000002 -RXB1D73 00000003 -RXB1D74 00000004 -RXB1D75 00000005 -RXB1D76 00000006 -RXB1D77 00000007 -RXB1DLC 00000F35 -RXB1EIDH 00000F33 -RXB1EIDL 00000F34 -RXB1IE 00000001 -RXB1IF 00000001 -RXB1IP 00000001 -RXB1OVFL 00000006 -RXB1SIDH 00000F31 -RXB1SIDL 00000F32 -RXBP 00000003 -RXBnIE 00000001 -RXBnIF 00000001 -RXBnIP 00000001 -RXDTP 00000005 -RXERRCNT 00000E41 -RXF0EIDH 00000EE2 -RXF0EIDL 00000EE3 -RXF0EN 00000000 -RXF0SIDH 00000EE0 -RXF0SIDL 00000EE1 -RXF10EIDH 00000E5A -RXF10EIDL 00000E5B -RXF10EN 00000002 -RXF10SIDH 00000E58 -RXF10SIDL 00000E59 -RXF11EIDH 00000E5E -RXF11EIDL 00000E5F -RXF11EN 00000003 -RXF11SIDH 00000E5C -RXF11SIDL 00000E5D -RXF12EIDH 00000E62 -RXF12EIDL 00000E63 -RXF12EN 00000004 -RXF12SIDH 00000E60 -RXF12SIDL 00000E61 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 32 - - -SYMBOL TABLE - LABEL VALUE - -RXF13EIDH 00000E66 -RXF13EIDL 00000E67 -RXF13EN 00000005 -RXF13SIDH 00000E64 -RXF13SIDL 00000E65 -RXF14EIDH 00000E6A -RXF14EIDL 00000E6B -RXF14EN 00000006 -RXF14SIDH 00000E68 -RXF14SIDL 00000E69 -RXF15EIDH 00000E6E -RXF15EIDL 00000E6F -RXF15EN 00000007 -RXF15SIDH 00000E6C -RXF15SIDL 00000E6D -RXF1EIDH 00000EE6 -RXF1EIDL 00000EE7 -RXF1EN 00000001 -RXF1SIDH 00000EE4 -RXF1SIDL 00000EE5 -RXF2EIDH 00000EEA -RXF2EIDL 00000EEB -RXF2EN 00000002 -RXF2SIDH 00000EE8 -RXF2SIDL 00000EE9 -RXF3EIDH 00000EEE -RXF3EIDL 00000EEF -RXF3EN 00000003 -RXF3SIDH 00000EEC -RXF3SIDL 00000EED -RXF4EIDH 00000EF2 -RXF4EIDL 00000EF3 -RXF4EN 00000004 -RXF4SIDH 00000EF0 -RXF4SIDL 00000EF1 -RXF5EIDH 00000EF6 -RXF5EIDL 00000EF7 -RXF5EN 00000005 -RXF5SIDH 00000EF4 -RXF5SIDL 00000EF5 -RXF6EIDH 00000E4A -RXF6EIDL 00000E4B -RXF6EN 00000006 -RXF6SIDH 00000E48 -RXF6SIDL 00000E49 -RXF7EIDH 00000E4E -RXF7EIDL 00000E4F -RXF7EN 00000007 -RXF7SIDH 00000E4C -RXF7SIDL 00000E4D -RXF8EIDH 00000E52 -RXF8EIDL 00000E53 -RXF8EN 00000000 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 33 - - -SYMBOL TABLE - LABEL VALUE - -RXF8SIDH 00000E50 -RXF8SIDL 00000E51 -RXF9EIDH 00000E56 -RXF9EIDL 00000E57 -RXF9EN 00000001 -RXF9SIDH 00000E54 -RXF9SIDL 00000E55 -RXFBCON0 00000E71 -RXFBCON1 00000E72 -RXFBCON2 00000E73 -RXFBCON3 00000E74 -RXFBCON4 00000E75 -RXFBCON5 00000E76 -RXFBCON6 00000E77 -RXFBCON7 00000E78 -RXFCON0 00000E46 -RXFCON1 00000E47 -RXFUL 00000007 -RXFUL_TXBIF 00000007 -RXM0 00000005 -RXM0EIDH 00000EFA -RXM0EIDL 00000EFB -RXM0SIDH 00000EF8 -RXM0SIDL 00000EF9 -RXM0_RTRRO 00000005 -RXM1 00000006 -RXM1EIDH 00000EFE -RXM1EIDL 00000EFF -RXM1SIDH 00000EFC -RXM1SIDL 00000EFD -RXM1_TXABT 00000006 -RXRTR 00000006 -RXRTRRO_B0CON 00000005 -RXRTRRO_B1CON 00000005 -RXRTRRO_B2CON 00000005 -RXRTRRO_B3CON 00000005 -RXRTRRO_B4CON 00000005 -RXRTRRO_B5CON 00000005 -RXRTRRO_FILHIT3 00000003 -RXRTRRO_RXB0CON 00000003 -RXRTRRO_RXB1CON 00000003 -RXRTRRO_TXLARB 00000005 -RXRTR_TXRTR 00000006 -RXWARN 00000001 -R_NOT_W 00000002 -R_W 00000002 -S 00000003 -SAM 00000006 -SBOREN 00000006 -SCS0 00000000 -SCS1 00000001 -SDFLC 00000E70 -SEG1PH0 00000003 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 34 - - -SYMBOL TABLE - LABEL VALUE - -SEG1PH1 00000004 -SEG1PH2 00000005 -SEG2PH0 00000000 -SEG2PH1 00000001 -SEG2PH2 00000002 -SEG2PHTS 00000007 -SEN 00000000 -SENDB 00000003 -SENDB1 00000003 -SENDB2 00000003 -SID0 00000005 -SID1 00000006 -SID10 00000007 -SID2 00000007 -SID3 00000000 -SID4 00000001 -SID5 00000002 -SID6 00000003 -SID7 00000004 -SID8 00000005 -SID9 00000006 -SJW0 00000006 -SJW1 00000007 -SLRA 00000000 -SLRB 00000001 -SLRC 00000002 -SLRCON 00000F90 -SLRD 00000003 -SLRE 00000004 -SLRF 00000005 -SLRG 00000006 -SMP 00000007 -SOSCDRV 00000004 -SOSCEN 00000003 -SOSCGO 00000003 -SOSCRUN 00000006 -SP0 00000000 -SP1 00000001 -SP2 00000002 -SP3 00000003 -SP4 00000004 -SPBRG 00000FAF -SPBRG1 00000FAF -SPBRG2 00000F7B -SPBRGH1 00000F7D -SPBRGH2 00000F7C -SPEN 00000007 -SPEN1 00000007 -SPEN2 00000007 -SREN 00000005 -SREN1 00000005 -SREN2 00000005 -SRETEN 00000004 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 35 - - -SYMBOL TABLE - LABEL VALUE - -SRR 00000004 -SSPADD 00000FC8 -SSPBUF 00000FC9 -SSPCON1 00000FC6 -SSPCON2 00000FC5 -SSPEN 00000005 -SSPIE 00000003 -SSPIF 00000003 -SSPIP 00000003 -SSPM0 00000000 -SSPM1 00000001 -SSPM2 00000002 -SSPM3 00000003 -SSPMD 00000000 -SSPOD 00000007 -SSPOV 00000006 -SSPSTAT 00000FC7 -STATUS 00000FD8 -STKFUL 00000007 -STKOVF 00000007 -STKPTR 00000FFC -STKUNF 00000006 -STRA 00000000 -STRB 00000001 -STRC 00000002 -STRD 00000003 -STRSYNC 00000004 -SWDTE 00000000 -SWDTEN 00000000 -SYNC 00000004 -SYNC1 00000004 -SYNC2 00000004 -T08BIT 00000006 -T0CON 00000FD5 -T0CS 00000005 -T0IE 00000005 -T0IF 00000002 -T0IP 00000002 -T0PS0 00000000 -T0PS1 00000001 -T0PS2 00000002 -T0SE 00000004 -T1CKPS0 00000004 -T1CKPS1 00000005 -T1CON 00000FCD -T1GCON 00000FAA -T1GGO 00000003 -T1GGO_NOT_T1DONE 00000003 -T1GPOL 00000006 -T1GSPM 00000004 -T1GSS0 00000000 -T1GSS1 00000001 -T1GTM 00000005 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 36 - - -SYMBOL TABLE - LABEL VALUE - -T1GVAL 00000002 -T2CKPS0 00000000 -T2CKPS1 00000001 -T2CON 00000FCA -T2OUTPS0 00000003 -T2OUTPS1 00000004 -T2OUTPS2 00000005 -T2OUTPS3 00000006 -T3CKPS0 00000004 -T3CKPS1 00000005 -T3CON 00000FB1 -T3GCON 00000FB0 -T3GGO 00000003 -T3GGO_NOT_T3DONE 00000003 -T3GPOL 00000006 -T3GSPM 00000004 -T3GSS0 00000000 -T3GSS1 00000001 -T3GTM 00000005 -T3GVAL 00000002 -T4CKPS0 00000000 -T4CKPS1 00000001 -T4CON 00000F88 -T4OUTPS0 00000003 -T4OUTPS1 00000004 -T4OUTPS2 00000005 -T4OUTPS3 00000006 -TABLAT 00000FF5 -TBLPTR 00000FF6 -TBLPTRH 00000FF7 -TBLPTRL 00000FF6 -TBLPTRU 00000FF8 -TEC0 00000000 -TEC1 00000001 -TEC2 00000002 -TEC3 00000003 -TEC4 00000004 -TEC5 00000005 -TEC6 00000006 -TEC7 00000007 -TGEN 00000004 -TMR0 00000FD6 -TMR0H 00000FD7 -TMR0IE 00000005 -TMR0IF 00000002 -TMR0IP 00000002 -TMR0L 00000FD6 -TMR0MD 00000000 -TMR0ON 00000007 -TMR1 00000FCE -TMR1CS0 00000006 -TMR1CS1 00000007 -TMR1GE 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 37 - - -SYMBOL TABLE - LABEL VALUE - -TMR1GIE 00000002 -TMR1GIF 00000002 -TMR1GIP 00000002 -TMR1H 00000FCF -TMR1IE 00000000 -TMR1IF 00000000 -TMR1IP 00000000 -TMR1L 00000FCE -TMR1MD 00000001 -TMR1ON 00000000 -TMR2 00000FCC -TMR2IE 00000001 -TMR2IF 00000001 -TMR2IP 00000001 -TMR2MD 00000002 -TMR2ON 00000002 -TMR3 00000FB2 -TMR3CS0 00000006 -TMR3CS1 00000007 -TMR3GE 00000007 -TMR3GIE 00000000 -TMR3GIF 00000000 -TMR3GIP 00000000 -TMR3H 00000FB3 -TMR3IE 00000001 -TMR3IF 00000001 -TMR3IP 00000001 -TMR3L 00000FB2 -TMR3MD 00000003 -TMR3ON 00000000 -TMR4 00000F87 -TMR4IE 00000007 -TMR4IF 00000007 -TMR4IP 00000007 -TMR4MD 00000004 -TMR4ON 00000002 -TO 00000003 -TOS 00000FFD -TOSH 00000FFE -TOSL 00000FFD -TOSU 00000FFF -TRIGSEL0 00000006 -TRIGSEL1 00000007 -TRISA 00000F92 -TRISA0 00000000 -TRISA1 00000001 -TRISA2 00000002 -TRISA3 00000003 -TRISA5 00000005 -TRISA6 00000006 -TRISA7 00000007 -TRISB 00000F93 -TRISB0 00000000 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 38 - - -SYMBOL TABLE - LABEL VALUE - -TRISB1 00000001 -TRISB2 00000002 -TRISB3 00000003 -TRISB4 00000004 -TRISB5 00000005 -TRISB6 00000006 -TRISB7 00000007 -TRISC 00000F94 -TRISC0 00000000 -TRISC1 00000001 -TRISC2 00000002 -TRISC3 00000003 -TRISC4 00000004 -TRISC5 00000005 -TRISC6 00000006 -TRISC7 00000007 -TRISD 00000F95 -TRISD0 00000000 -TRISD1 00000001 -TRISD2 00000002 -TRISD3 00000003 -TRISD4 00000004 -TRISD5 00000005 -TRISD6 00000006 -TRISD7 00000007 -TRISE 00000F96 -TRISE0 00000000 -TRISE1 00000001 -TRISE2 00000002 -TRISE4 00000004 -TRISE5 00000005 -TRISE6 00000006 -TRISE7 00000007 -TRISF 00000F97 -TRISF0 00000000 -TRISF1 00000001 -TRISF2 00000002 -TRISF3 00000003 -TRISF4 00000004 -TRISF5 00000005 -TRISF6 00000006 -TRISF7 00000007 -TRISG 00000F98 -TRISG0 00000000 -TRISG1 00000001 -TRISG2 00000002 -TRISG3 00000003 -TRISG4 00000004 -TRMT 00000001 -TRMT1 00000001 -TRMT2 00000001 -TUN0 00000000 -TUN1 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 39 - - -SYMBOL TABLE - LABEL VALUE - -TUN2 00000002 -TUN3 00000003 -TUN4 00000004 -TUN5 00000005 -TX1IE 00000004 -TX1IF 00000004 -TX1IP 00000004 -TX2EN 00000006 -TX2IE 00000004 -TX2IF 00000004 -TX2IP 00000004 -TX2SRC 00000007 -TX8_9 00000006 -TX9 00000006 -TX91 00000006 -TX92 00000006 -TX9D 00000000 -TX9D1 00000000 -TX9D2 00000000 -TXABT 00000006 -TXB0CON 00000F20 -TXB0D0 00000F26 -TXB0D00 00000000 -TXB0D01 00000001 -TXB0D02 00000002 -TXB0D03 00000003 -TXB0D04 00000004 -TXB0D05 00000005 -TXB0D06 00000006 -TXB0D07 00000007 -TXB0D1 00000F27 -TXB0D10 00000000 -TXB0D11 00000001 -TXB0D12 00000002 -TXB0D13 00000003 -TXB0D14 00000004 -TXB0D15 00000005 -TXB0D16 00000006 -TXB0D17 00000007 -TXB0D2 00000F28 -TXB0D20 00000000 -TXB0D21 00000001 -TXB0D22 00000002 -TXB0D23 00000003 -TXB0D24 00000004 -TXB0D25 00000005 -TXB0D26 00000006 -TXB0D27 00000007 -TXB0D3 00000F29 -TXB0D30 00000000 -TXB0D31 00000001 -TXB0D32 00000002 -TXB0D33 00000003 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 40 - - -SYMBOL TABLE - LABEL VALUE - -TXB0D34 00000004 -TXB0D35 00000005 -TXB0D36 00000006 -TXB0D37 00000007 -TXB0D4 00000F2A -TXB0D40 00000000 -TXB0D41 00000001 -TXB0D42 00000002 -TXB0D43 00000003 -TXB0D44 00000004 -TXB0D45 00000005 -TXB0D46 00000006 -TXB0D47 00000007 -TXB0D5 00000F2B -TXB0D50 00000000 -TXB0D51 00000001 -TXB0D52 00000002 -TXB0D53 00000003 -TXB0D54 00000004 -TXB0D55 00000005 -TXB0D56 00000006 -TXB0D57 00000007 -TXB0D6 00000F2C -TXB0D60 00000000 -TXB0D61 00000001 -TXB0D62 00000002 -TXB0D63 00000003 -TXB0D64 00000004 -TXB0D65 00000005 -TXB0D66 00000006 -TXB0D67 00000007 -TXB0D7 00000F2D -TXB0D70 00000000 -TXB0D71 00000001 -TXB0D72 00000002 -TXB0D73 00000003 -TXB0D74 00000004 -TXB0D75 00000005 -TXB0D76 00000006 -TXB0D77 00000007 -TXB0DLC 00000F25 -TXB0EIDH 00000F23 -TXB0EIDL 00000F24 -TXB0IE 00000002 -TXB0IF 00000002 -TXB0IP 00000002 -TXB0SIDH 00000F21 -TXB0SIDL 00000F22 -TXB1CON 00000F10 -TXB1D0 00000F16 -TXB1D00 00000000 -TXB1D01 00000001 -TXB1D02 00000002 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 41 - - -SYMBOL TABLE - LABEL VALUE - -TXB1D03 00000003 -TXB1D04 00000004 -TXB1D05 00000005 -TXB1D06 00000006 -TXB1D07 00000007 -TXB1D1 00000F17 -TXB1D10 00000000 -TXB1D11 00000001 -TXB1D12 00000002 -TXB1D13 00000003 -TXB1D14 00000004 -TXB1D15 00000005 -TXB1D16 00000006 -TXB1D17 00000007 -TXB1D2 00000F18 -TXB1D20 00000000 -TXB1D21 00000001 -TXB1D22 00000002 -TXB1D23 00000003 -TXB1D24 00000004 -TXB1D25 00000005 -TXB1D26 00000006 -TXB1D27 00000007 -TXB1D3 00000F19 -TXB1D30 00000000 -TXB1D31 00000001 -TXB1D32 00000002 -TXB1D33 00000003 -TXB1D34 00000004 -TXB1D35 00000005 -TXB1D36 00000006 -TXB1D37 00000007 -TXB1D4 00000F1A -TXB1D40 00000000 -TXB1D41 00000001 -TXB1D42 00000002 -TXB1D43 00000003 -TXB1D44 00000004 -TXB1D45 00000005 -TXB1D46 00000006 -TXB1D47 00000007 -TXB1D5 00000F1B -TXB1D50 00000000 -TXB1D51 00000001 -TXB1D52 00000002 -TXB1D53 00000003 -TXB1D54 00000004 -TXB1D55 00000005 -TXB1D56 00000006 -TXB1D57 00000007 -TXB1D6 00000F1C -TXB1D60 00000000 -TXB1D61 00000001 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 42 - - -SYMBOL TABLE - LABEL VALUE - -TXB1D62 00000002 -TXB1D63 00000003 -TXB1D64 00000004 -TXB1D65 00000005 -TXB1D66 00000006 -TXB1D67 00000007 -TXB1D7 00000F1D -TXB1D70 00000000 -TXB1D71 00000001 -TXB1D72 00000002 -TXB1D73 00000003 -TXB1D74 00000004 -TXB1D75 00000005 -TXB1D76 00000006 -TXB1D77 00000007 -TXB1DLC 00000F15 -TXB1EIDH 00000F13 -TXB1EIDL 00000F14 -TXB1IE 00000003 -TXB1IF 00000003 -TXB1IP 00000003 -TXB1SIDH 00000F11 -TXB1SIDL 00000F12 -TXB2CON 00000F00 -TXB2D0 00000F06 -TXB2D00 00000000 -TXB2D01 00000001 -TXB2D02 00000002 -TXB2D03 00000003 -TXB2D04 00000004 -TXB2D05 00000005 -TXB2D06 00000006 -TXB2D07 00000007 -TXB2D1 00000F07 -TXB2D10 00000000 -TXB2D11 00000001 -TXB2D12 00000002 -TXB2D13 00000003 -TXB2D14 00000004 -TXB2D15 00000005 -TXB2D16 00000006 -TXB2D17 00000007 -TXB2D2 00000F08 -TXB2D20 00000000 -TXB2D21 00000001 -TXB2D22 00000002 -TXB2D23 00000003 -TXB2D24 00000004 -TXB2D25 00000005 -TXB2D26 00000006 -TXB2D27 00000007 -TXB2D3 00000F09 -TXB2D30 00000000 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 43 - - -SYMBOL TABLE - LABEL VALUE - -TXB2D31 00000001 -TXB2D32 00000002 -TXB2D33 00000003 -TXB2D34 00000004 -TXB2D35 00000005 -TXB2D36 00000006 -TXB2D37 00000007 -TXB2D4 00000F0A -TXB2D40 00000000 -TXB2D41 00000001 -TXB2D42 00000002 -TXB2D43 00000003 -TXB2D44 00000004 -TXB2D45 00000005 -TXB2D46 00000006 -TXB2D47 00000007 -TXB2D5 00000F0B -TXB2D50 00000000 -TXB2D51 00000001 -TXB2D52 00000002 -TXB2D53 00000003 -TXB2D54 00000004 -TXB2D55 00000005 -TXB2D56 00000006 -TXB2D57 00000007 -TXB2D6 00000F0C -TXB2D60 00000000 -TXB2D61 00000001 -TXB2D62 00000002 -TXB2D63 00000003 -TXB2D64 00000004 -TXB2D65 00000005 -TXB2D66 00000006 -TXB2D67 00000007 -TXB2D7 00000F0D -TXB2D70 00000000 -TXB2D71 00000001 -TXB2D72 00000002 -TXB2D73 00000003 -TXB2D74 00000004 -TXB2D75 00000005 -TXB2D76 00000006 -TXB2D77 00000007 -TXB2DLC 00000F05 -TXB2EIDH 00000F03 -TXB2EIDL 00000F04 -TXB2IE 00000004 -TXB2IF 00000004 -TXB2IP 00000004 -TXB2SIDH 00000F01 -TXB2SIDL 00000F02 -TXBIE 00000E7F -TXBIF 00000007 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 44 - - -SYMBOL TABLE - LABEL VALUE - -TXBO 00000005 -TXBP 00000004 -TXBnIE 00000004 -TXBnIF 00000004 -TXBnIP 00000004 -TXCKP 00000004 -TXD8 00000000 -TXEN 00000005 -TXEN1 00000005 -TXEN2 00000005 -TXERR 00000004 -TXERRCNT 00000E42 -TXIE 00000004 -TXIF 00000004 -TXIP 00000004 -TXLARB 00000005 -TXPRI0 00000000 -TXPRI1 00000001 -TXREG 00000FAD -TXREG1 00000FAD -TXREG2 00000F79 -TXREQ 00000003 -TXRTR 00000006 -TXSTA 00000FAC -TXSTA1 00000FAC -TXSTA2 00000FBA -TXWARN 00000002 -U1OD 00000000 -U2OD 00000001 -UA 00000001 -UART1MD 00000001 -UART2MD 00000002 -ULPEN 00000002 -ULPLVL 00000005 -ULPSINK 00000001 -VCFG0 00000004 -VCFG1 00000005 -VDIRMAG 00000007 -VNCFG 00000003 -W 00000000 -WAKDIS 00000007 -WAKFIL 00000006 -WAKIE 00000006 -WAKIF 00000006 -WAKIP 00000006 -WCOL 00000007 -WDTCON 00000FD1 -WIN0 00000001 -WIN0_FP1 00000001 -WIN1 00000002 -WIN1_FP2 00000002 -WIN2 00000003 -WIN2_FP3 00000003 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 45 - - -SYMBOL TABLE - LABEL VALUE - -WPUB 00000F5B -WPUB0 00000000 -WPUB1 00000001 -WPUB2 00000002 -WPUB3 00000003 -WPUB4 00000004 -WPUB5 00000005 -WPUB6 00000006 -WPUB7 00000007 -WR 00000001 -WREG 00000FE8 -WREN 00000002 -WRERR 00000003 -WUE 00000001 -Z 00000002 -_BBSIZ_BB1K_4L 000000EF -_BBSIZ_BB2K_4L 000000FF -_BOREN_NOSLP_2L 000000FD -_BOREN_OFF_2L 000000F9 -_BOREN_ON_2L 000000FB -_BOREN_SBORDIS_2L 000000FF -_BORPWR_HIGH_2L 000000DF -_BORPWR_LOW_2L 0000009F -_BORPWR_MEDIUM_2L 000000BF -_BORPWR_ZPBORMV_2L 000000FF -_BORV_0_2L 000000E7 -_BORV_1_2L 000000EF -_BORV_2_2L 000000F7 -_BORV_3_2L 000000FF -_CANMX_PORTB_3H 000000FF -_CANMX_PORTE_3H 000000FE -_CONFIG1H 00300001 -_CONFIG1L 00300000 -_CONFIG2H 00300003 -_CONFIG2L 00300002 -_CONFIG3H 00300005 -_CONFIG4L 00300006 -_CONFIG5H 00300009 -_CONFIG5L 00300008 -_CONFIG6H 0030000B -_CONFIG6L 0030000A -_CONFIG7H 0030000D -_CONFIG7L 0030000C -_CP0_OFF_5L 000000FF -_CP0_ON_5L 000000FE -_CP1_OFF_5L 000000FF -_CP1_ON_5L 000000FD -_CP2_OFF_5L 000000FF -_CP2_ON_5L 000000FB -_CP3_OFF_5L 000000FF -_CP3_ON_5L 000000F7 -_CPB_OFF_5H 000000FF -_CPB_ON_5H 000000BF -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 46 - - -SYMBOL TABLE - LABEL VALUE - -_CPD_OFF_5H 000000FF -_CPD_ON_5H 0000007F -_DEVID1 003FFFFE -_DEVID2 003FFFFF -_EBTR0_OFF_7L 000000FF -_EBTR0_ON_7L 000000FE -_EBTR1_OFF_7L 000000FF -_EBTR1_ON_7L 000000FD -_EBTR2_OFF_7L 000000FF -_EBTR2_ON_7L 000000FB -_EBTR3_OFF_7L 000000FF -_EBTR3_ON_7L 000000F7 -_EBTRB_OFF_7H 000000FF -_EBTRB_ON_7H 000000BF -_FCMEN_OFF_1H 000000BF -_FCMEN_ON_1H 000000FF -_FOSC_EC1IO_1H 000000FC -_FOSC_EC1_1H 000000FD -_FOSC_EC2IO_1H 000000FA -_FOSC_EC2_1H 000000FB -_FOSC_EC3IO_1H 000000F4 -_FOSC_EC3_1H 000000F5 -_FOSC_HS1_1H 000000F3 -_FOSC_HS2_1H 000000F2 -_FOSC_INTIO1_1H 000000F9 -_FOSC_INTIO2_1H 000000F8 -_FOSC_LP_1H 000000F0 -_FOSC_RCIO_1H 000000F7 -_FOSC_RC_1H 000000F6 -_FOSC_XT_1H 000000F1 -_IDLOC0 00200000 -_IDLOC1 00200001 -_IDLOC2 00200002 -_IDLOC3 00200003 -_IDLOC4 00200004 -_IDLOC5 00200005 -_IDLOC6 00200006 -_IDLOC7 00200007 -_IESO_OFF_1H 0000007F -_IESO_ON_1H 000000FF -_INTOSCSEL_HIGH_1L 000000FF -_INTOSCSEL_LOW_1L 000000FB -_MCLRE_OFF_3H 0000007F -_MCLRE_ON_3H 000000FF -_MSSPMSK_MSK5_3H 000000F7 -_MSSPMSK_MSK7_3H 000000FF -_PLLCFG_OFF_1H 000000EF -_PLLCFG_ON_1H 000000FF -_PWRTEN_OFF_2L 000000FF -_PWRTEN_ON_2L 000000FE -_RETEN_OFF_1L 000000FF -_RETEN_ON_1L 000000FE -_SOSCSEL_DIG_1L 000000F7 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 47 - - -SYMBOL TABLE - LABEL VALUE - -_SOSCSEL_HIGH_1L 000000FF -_SOSCSEL_LOW_1L 000000EF -_STVREN_OFF_4L 000000FE -_STVREN_ON_4L 000000FF -_T0CKMX_PORTB_3H 000000FF -_T0CKMX_PORTG_3H 000000FD -_T3CKMX_PORTB_3H 000000FB -_T3CKMX_PORTG_3H 000000FF -_WDTEN_NOSLP_2H 000000FD -_WDTEN_OFF_2H 000000FC -_WDTEN_ON_2H 000000FE -_WDTEN_SWDTDIS_2H 000000FF -_WDTPS_1024_2H 000000AB -_WDTPS_1048576_2H 000000FF -_WDTPS_128_2H 0000009F -_WDTPS_131072_2H 000000C7 -_WDTPS_16384_2H 000000BB -_WDTPS_16_2H 00000093 -_WDTPS_1_2H 00000083 -_WDTPS_2048_2H 000000AF -_WDTPS_256_2H 000000A3 -_WDTPS_262144_2H 000000CB -_WDTPS_2_2H 00000087 -_WDTPS_32768_2H 000000BF -_WDTPS_32_2H 00000097 -_WDTPS_4096_2H 000000B3 -_WDTPS_4_2H 0000008B -_WDTPS_512_2H 000000A7 -_WDTPS_524288_2H 000000CF -_WDTPS_64_2H 0000009B -_WDTPS_65536_2H 000000C3 -_WDTPS_8192_2H 000000B7 -_WDTPS_8_2H 0000008F -_WRT0_OFF_6L 000000FF -_WRT0_ON_6L 000000FE -_WRT1_OFF_6L 000000FF -_WRT1_ON_6L 000000FD -_WRT2_OFF_6L 000000FF -_WRT2_ON_6L 000000FB -_WRT3_OFF_6L 000000FF -_WRT3_ON_6L 000000F7 -_WRTB_OFF_6H 000000FF -_WRTB_ON_6H 000000BF -_WRTC_OFF_6H 000000FF -_WRTC_ON_6H 000000DF -_WRTD_OFF_6H 000000FF -_WRTD_ON_6H 0000007F -_XINST_OFF_1L 000000BF -_XINST_ON_1L 000000FF -__18LF66K80 00000001 -__ACC_RAM_LOW_END 0000005F -__CODE_END 0000FFFF -__CODE_START 00000000 -gpasm-1.4.0 #1107 (Apr 3 2018) .checkdevices 10-15-2019 15:45:05 PAGE 48 - - -SYMBOL TABLE - LABEL VALUE - -__EEPROM_END 00F003FF -__EEPROM_START 00F00000 -__VECTOR_INT_HIGH 00000008 -__VECTOR_INT_LOW 00000018 -__VECTOR_RESET 00000000 - -Errors : 0 -Warnings : 0 reported, 0 suppressed -Messages : 0 reported, 0 suppressed - -
\ No newline at end of file diff --git a/device/non-free/lib/pic16/.checkdevices/check.o b/device/non-free/lib/pic16/.checkdevices/check.o Binary files differdeleted file mode 100644 index 9377e22..0000000 --- a/device/non-free/lib/pic16/.checkdevices/check.o +++ /dev/null diff --git a/device/non-free/lib/pic16/a.lst b/device/non-free/lib/pic16/a.lst deleted file mode 100644 index 563b613..0000000 --- a/device/non-free/lib/pic16/a.lst +++ /dev/null @@ -1,19 +0,0 @@ -gplink-1.4.0 #1107 (Apr 3 2018) -Copyright (c) 1998-2014 gputils project -Listing File Generated: 10-15-2019 15:45:05 - - -Address Value Disassembly Source -------- ----- ----------- ------ - include "p18lf66k80.inc" - LIST - - ;========================================================================== - ; Build date : Aug 07 2014 - ; MPASM PIC18LF66K80 processor include - ; - ; (c) Copyright 1999-2014 Microchip Technology, All rights reserved - ;========================================================================== - - NOLIST - END diff --git a/main.mk b/main.mk deleted file mode 100644 index f20631e..0000000 --- a/main.mk +++ /dev/null @@ -1,101 +0,0 @@ -# -# -# - -# Version -VERSION = 0.0.0 -VERSIONHI = 0 -VERSIONLO = 0 -VERSIONP = 0 - -# Programs -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -RANLIB = ranlib -INSTALL = /usr/bin/install -c -AUTOCONF = autoconf - -# Directories -PRJDIR = . - -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = ${datarootdir}/info -srcdir = . - -# Flags -DEFS = $(subs -DHAVE_CONFIG_H,,-DHAVE_CONFIG_H) -CPPFLAGS = -I$(PRJDIR) -CFLAGS = -pipe -ggdb -g -Og - - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf - - -# Compiling and installing everything and runing test -# --------------------------------------------------- -install: all installdirs - - -# Deleting all the installed files -# -------------------------------- -uninstall: - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - - -# Creating dependencies -# --------------------- -dep: - -include $(srcdir)/clean.mk - -# My rules -# -------- -.c.o: - $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ - -.y.c: - rm -f $*.cc $*.h - $(YACC) -d $< - mv y.tab.c $*.cc - mv y.tab.h $*.h - -.l.c: - rm -f $*.cc - $(LEX) -t $< >$*.cc - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(PRJDIR)/devel ]; then\ - $(MAKE) -f $(srcdir)/conf.mk srcdir="$(srcdir)" freshconf;\ - fi - -# End of main_in.mk/main.mk - diff --git a/sdas/as6808/Makefile b/sdas/as6808/Makefile deleted file mode 100644 index 1b71dc0..0000000 --- a/sdas/as6808/Makefile +++ /dev/null @@ -1,137 +0,0 @@ -# -# -# - -VERSION = 3.9.3 -VERSIONHI = 3 -VERSIONLO = 9 -VERSIONP = 3 - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = g++ -MM - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @info@ - -EXEEXT = - - - -CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util -CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS) -LDFLAGS = -LIBS = -lm - -OBJDIR = obj - -UTILLIB = $(srcdir)/../../support/util -UTILSRC = dbuf.c dbuf_string.c -UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o) - -ASXXLIB = $(srcdir)/../asxxsrc -ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c -ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o) - -SRC = m08pst.c m08mch.c m08adr.c -OBJS = $(SRC:%.c=$(OBJDIR)/%.o) - -ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c) - -ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS) - -ASX = $(top_builddir)/bin/sdas6808$(EXEEXT) -#DEST = $(DESTDIR)$(bindir)/sdas6808$(EXEEXT) -DEST = sdas6808 -DESTPATH = $(DESTDIR)$(bindir)/ - -transform = s,x,x, - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf $(ASX) - -$(ASX): $(ASOBJECTS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS) - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(ASSOURCES) $(srcdir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(OBJDIR)/.stamp: - mkdir -p $(OBJDIR) - touch $(OBJDIR)/.stamp - -$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of Makefile diff --git a/sdas/as8051/Makefile b/sdas/as8051/Makefile deleted file mode 100644 index 1c516fa..0000000 --- a/sdas/as8051/Makefile +++ /dev/null @@ -1,137 +0,0 @@ -# -# -# - -VERSION = 3.9.3 -VERSIONHI = 3 -VERSIONLO = 9 -VERSIONP = 3 - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = g++ -MM - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @info@ - -EXEEXT = - - - -CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util -CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS) -LDFLAGS = -LIBS = -lm - -OBJDIR = obj - -UTILLIB = $(srcdir)/../../support/util -UTILSRC = dbuf.c dbuf_string.c -UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o) - -ASXXLIB = $(srcdir)/../asxxsrc -ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c -ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o) - -SRC = i51pst.c i51mch.c i51adr.c -OBJS = $(SRC:%.c=$(OBJDIR)/%.o) - -ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c) - -ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS) - -ASX = $(top_builddir)/bin/sdas8051$(EXEEXT) -#DEST = $(DESTDIR)$(bindir)/sdas8051$(EXEEXT) -DEST = sdas8051 -DESTPATH = $(DESTDIR)$(bindir)/ - -transform = s,x,x, - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf $(ASX) - -$(ASX): $(ASOBJECTS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS) - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(ASSOURCES) $(srcdir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(OBJDIR)/.stamp: - mkdir -p $(OBJDIR) - touch $(OBJDIR)/.stamp - -$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of Makefile diff --git a/sdas/as8xcxxx/Makefile b/sdas/as8xcxxx/Makefile deleted file mode 100644 index 74d272e..0000000 --- a/sdas/as8xcxxx/Makefile +++ /dev/null @@ -1,137 +0,0 @@ -# -# -# - -VERSION = 0.0.0 -VERSIONHI = 0 -VERSIONLO = 0 -VERSIONP = 0 - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = g++ -MM - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @info@ - -EXEEXT = - - - -CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util -CFLAGS = -pipe -ggdb -g -Og -Wall -Wno-parentheses $(CPPFLAGS) -LDFLAGS = -LIBS = -lm - -OBJDIR = obj - -UTILLIB = $(srcdir)/../../support/util -UTILSRC = dbuf.c dbuf_string.c -UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o) - -ASXXLIB = $(srcdir)/../asxxsrc -ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c -ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o) - -SRC = ds8pst.c ds8mch.c ds8adr.c -OBJS = $(SRC:%.c=$(OBJDIR)/%.o) - -ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c) - -ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS) - -ASX = $(top_builddir)/bin/sdas390$(EXEEXT) -#DEST = $(DESTDIR)$(bindir)/sdas390$(EXEEXT) -DEST = sdas390 -DESTPATH = $(DESTDIR)$(bindir)/ - -transform = s,x,x, - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf $(ASX) - -$(ASX): $(ASOBJECTS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS) - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(ASSOURCES) $(srcdir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(OBJDIR)/.stamp: - mkdir -p $(OBJDIR) - touch $(OBJDIR)/.stamp - -$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of Makefile diff --git a/sdas/asgb/Makefile b/sdas/asgb/Makefile deleted file mode 100644 index adc4daa..0000000 --- a/sdas/asgb/Makefile +++ /dev/null @@ -1,137 +0,0 @@ -# -# -# - -VERSION = 3.9.3 -VERSIONHI = 3 -VERSIONLO = 9 -VERSIONP = 3 - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = g++ -MM - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @info@ - -EXEEXT = - - - -CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util -CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS) -LDFLAGS = -LIBS = -lm - -OBJDIR = obj - -UTILLIB = $(srcdir)/../../support/util -UTILSRC = dbuf.c dbuf_string.c -UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o) - -ASXXLIB = $(srcdir)/../asxxsrc -ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c -ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o) - -SRC = gbpst.c gbmch.c gbadr.c -OBJS = $(SRC:%.c=$(OBJDIR)/%.o) - -ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c) - -ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS) - -ASX = $(top_builddir)/bin/sdasgb$(EXEEXT) -#DEST = $(DESTDIR)$(bindir)/sdasgb$(EXEEXT) -DEST = sdasgb -DESTPATH = $(DESTDIR)$(bindir)/ - -transform = s,x,x, - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf $(ASX) - -$(ASX): $(ASOBJECTS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS) - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(ASSOURCES) $(srcdir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(OBJDIR)/.stamp: - mkdir -p $(OBJDIR) - touch $(OBJDIR)/.stamp - -$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of Makefile diff --git a/sdas/aspdk13/Makefile b/sdas/aspdk13/Makefile deleted file mode 100644 index 473886e..0000000 --- a/sdas/aspdk13/Makefile +++ /dev/null @@ -1,145 +0,0 @@ -# -# -# - -VERSION = 3.9.3 -VERSIONHI = 3 -VERSIONLO = 9 -VERSIONP = 3 - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = g++ -MM - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @info@ - -EXEEXT = - - - -CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../aspdk -I$(srcdir)/../../support/util -CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS) -LDFLAGS = -LIBS = -lm - -OBJDIR = obj - -UTILLIB = $(srcdir)/../../support/util -UTILSRC = dbuf.c dbuf_string.c -UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o) - -ASXXLIB = $(srcdir)/../asxxsrc -ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c -ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o) - -ASPDKLIB = $(srcdir)/../aspdk -ASPDKLIBSRC = pdkmch.c pdkadr.c -ASPDKLIBOBJS = $(ASPDKLIBSRC:%.c=$(OBJDIR)/%.o) - - -SRC = pdk13pst.c pdk13mch.c -OBJS = $(SRC:%.c=$(OBJDIR)/%.o) - -ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(ASPDKLIBSRC:%.c=$(ASPDKLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c) - -ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(ASPDKLIBOBJS) $(UTILLIBOBJS) - -ASX = $(top_builddir)/bin/sdaspdk13$(EXEEXT) -#DEST = $(DESTDIR)$(bindir)/sdaspdk13$(EXEEXT) -DEST = sdaspdk13 -DESTPATH = $(DESTDIR)$(bindir)/ - -transform = s,x,x, - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf $(ASX) - -$(ASX): $(ASOBJECTS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS) - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(ASSOURCES) $(srcdir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(OBJDIR)/.stamp: - mkdir -p $(OBJDIR) - touch $(OBJDIR)/.stamp - -$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASPDKLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of Makefile diff --git a/sdas/aspdk14/Makefile b/sdas/aspdk14/Makefile deleted file mode 100644 index dc43d77..0000000 --- a/sdas/aspdk14/Makefile +++ /dev/null @@ -1,145 +0,0 @@ -# -# -# - -VERSION = 3.9.3 -VERSIONHI = 3 -VERSIONLO = 9 -VERSIONP = 3 - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = g++ -MM - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @info@ - -EXEEXT = - - - -CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../aspdk -I$(srcdir)/../../support/util -CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS) -LDFLAGS = -LIBS = -lm - -OBJDIR = obj - -UTILLIB = $(srcdir)/../../support/util -UTILSRC = dbuf.c dbuf_string.c -UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o) - -ASXXLIB = $(srcdir)/../asxxsrc -ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c -ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o) - -ASPDKLIB = $(srcdir)/../aspdk -ASPDKLIBSRC = pdkmch.c pdkadr.c -ASPDKLIBOBJS = $(ASPDKLIBSRC:%.c=$(OBJDIR)/%.o) - - -SRC = pdk14pst.c pdk14mch.c -OBJS = $(SRC:%.c=$(OBJDIR)/%.o) - -ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(ASPDKLIBSRC:%.c=$(ASPDKLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c) - -ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(ASPDKLIBOBJS) $(UTILLIBOBJS) - -ASX = $(top_builddir)/bin/sdaspdk14$(EXEEXT) -#DEST = $(DESTDIR)$(bindir)/sdaspdk14$(EXEEXT) -DEST = sdaspdk14 -DESTPATH = $(DESTDIR)$(bindir)/ - -transform = s,x,x, - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf $(ASX) - -$(ASX): $(ASOBJECTS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS) - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(ASSOURCES) $(srcdir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(OBJDIR)/.stamp: - mkdir -p $(OBJDIR) - touch $(OBJDIR)/.stamp - -$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASPDKLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of Makefile diff --git a/sdas/aspdk15/Makefile b/sdas/aspdk15/Makefile deleted file mode 100644 index 452a7b9..0000000 --- a/sdas/aspdk15/Makefile +++ /dev/null @@ -1,145 +0,0 @@ -# -# -# - -VERSION = 3.9.3 -VERSIONHI = 3 -VERSIONLO = 9 -VERSIONP = 3 - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = g++ -MM - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @info@ - -EXEEXT = - - - -CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../aspdk -I$(srcdir)/../../support/util -CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS) -LDFLAGS = -LIBS = -lm - -OBJDIR = obj - -UTILLIB = $(srcdir)/../../support/util -UTILSRC = dbuf.c dbuf_string.c -UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o) - -ASXXLIB = $(srcdir)/../asxxsrc -ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c -ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o) - -ASPDKLIB = $(srcdir)/../aspdk -ASPDKLIBSRC = pdkmch.c pdkadr.c -ASPDKLIBOBJS = $(ASPDKLIBSRC:%.c=$(OBJDIR)/%.o) - - -SRC = pdk15pst.c pdk15mch.c -OBJS = $(SRC:%.c=$(OBJDIR)/%.o) - -ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(ASPDKLIBSRC:%.c=$(ASPDKLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c) - -ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(ASPDKLIBOBJS) $(UTILLIBOBJS) - -ASX = $(top_builddir)/bin/sdaspdk15$(EXEEXT) -#DEST = $(DESTDIR)$(bindir)/sdaspdk15$(EXEEXT) -DEST = sdaspdk15 -DESTPATH = $(DESTDIR)$(bindir)/ - -transform = s,x,x, - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf $(ASX) - -$(ASX): $(ASOBJECTS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS) - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(ASSOURCES) $(srcdir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(OBJDIR)/.stamp: - mkdir -p $(OBJDIR) - touch $(OBJDIR)/.stamp - -$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASPDKLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of Makefile diff --git a/sdas/aspdk16/Makefile b/sdas/aspdk16/Makefile deleted file mode 100644 index dc6c59f..0000000 --- a/sdas/aspdk16/Makefile +++ /dev/null @@ -1,145 +0,0 @@ -# -# -# - -VERSION = 3.9.3 -VERSIONHI = 3 -VERSIONLO = 9 -VERSIONP = 3 - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = g++ -MM - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @info@ - -EXEEXT = - - - -CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../aspdk -I$(srcdir)/../../support/util -CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS) -LDFLAGS = -LIBS = -lm - -OBJDIR = obj - -UTILLIB = $(srcdir)/../../support/util -UTILSRC = dbuf.c dbuf_string.c -UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o) - -ASXXLIB = $(srcdir)/../asxxsrc -ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c -ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o) - -ASPDKLIB = $(srcdir)/../aspdk -ASPDKLIBSRC = pdkmch.c pdkadr.c -ASPDKLIBOBJS = $(ASPDKLIBSRC:%.c=$(OBJDIR)/%.o) - - -SRC = pdk16pst.c pdk16mch.c -OBJS = $(SRC:%.c=$(OBJDIR)/%.o) - -ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(ASPDKLIBSRC:%.c=$(ASPDKLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c) - -ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(ASPDKLIBOBJS) $(UTILLIBOBJS) - -ASX = $(top_builddir)/bin/sdaspdk16$(EXEEXT) -#DEST = $(DESTDIR)$(bindir)/sdaspdk16$(EXEEXT) -DEST = sdaspdk16 -DESTPATH = $(DESTDIR)$(bindir)/ - -transform = s,x,x, - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf $(ASX) - -$(ASX): $(ASOBJECTS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS) - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(ASSOURCES) $(srcdir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(OBJDIR)/.stamp: - mkdir -p $(OBJDIR) - touch $(OBJDIR)/.stamp - -$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASPDKLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of Makefile diff --git a/sdas/asrab/Makefile b/sdas/asrab/Makefile deleted file mode 100644 index 439f5ce..0000000 --- a/sdas/asrab/Makefile +++ /dev/null @@ -1,137 +0,0 @@ -#
-#
-#
-
-VERSION = 3.9.3
-VERSIONHI = 3
-VERSIONLO = 9
-VERSIONP = 3
-
-SHELL = /bin/sh
-CC = gcc
-CPP = gcc -E
-INSTALL = /usr/bin/install -c
-STRIP = strip
-MAKEDEP = g++ -MM
-
-top_builddir = ../..
-top_srcdir = ../..
-
-srcdir = .
-prefix = /usr/local
-exec_prefix = ${prefix}
-bindir = ${exec_prefix}/bin
-libdir = ${exec_prefix}/lib
-datadir = ${datarootdir}
-datarootdir = ${prefix}/share
-includedir = ${prefix}/include
-mandir = ${datarootdir}/man
-man1dir = $(mandir)/man1
-man2dir = $(mandir)/man2
-infodir = @info@
-
-EXEEXT =
-
-VPATH = .
-
-CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util
-CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS)
-LDFLAGS =
-LIBS = -lm
-
-OBJDIR = obj
-
-UTILLIB = $(srcdir)/../../support/util
-UTILSRC = dbuf.c dbuf_string.c
-UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o)
-
-ASXXLIB = $(srcdir)/../asxxsrc
-ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c
-ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o)
-
-SRC = rabpst.c rabmch.c rabadr.c
-OBJS = $(SRC:%.c=$(OBJDIR)/%.o)
-
-ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c)
-
-ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS)
-
-ASX = $(top_builddir)/bin/sdasrab$(EXEEXT)
-#DEST = $(DESTDIR)$(bindir)/sdasrab$(EXEEXT)
-DEST = sdasrab
-DESTPATH = $(DESTDIR)$(bindir)/
-
-transform = s,x,x,
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf $(ASX)
-
-$(ASX): $(ASOBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS)
-
-# Compiling and installing everything and running test
-# ----------------------------------------------------
-install: all installdirs
- $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
- $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT)
-
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
- $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep: Makefile.dep
-
-Makefile.dep: $(ASSOURCES) $(srcdir)/*.h
- $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep
-
-ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \
- clean distclean mostlyclean realclean)" ""
- -include Makefile.dep
-endif
-include $(srcdir)/clean.mk
-
-# My rules
-# --------
-$(OBJDIR)/.stamp:
- mkdir -p $(OBJDIR)
- touch $(OBJDIR)/.stamp
-
-$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp
- $(CC) -c $(CFLAGS) -o $@ $<
-
-
-# Remaking configuration
-# ----------------------
-checkconf:
- @if [ -f $(top_builddir)/devel ]; then\
- $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\
- fi
-
-# End of Makefile
diff --git a/sdas/asstm8/Makefile b/sdas/asstm8/Makefile deleted file mode 100644 index 2fc28f7..0000000 --- a/sdas/asstm8/Makefile +++ /dev/null @@ -1,137 +0,0 @@ -# -# -# - -VERSION = 0.0.0 -VERSIONHI = 0 -VERSIONLO = 0 -VERSIONP = 0 - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = g++ -MM - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @info@ - -EXEEXT = - - - -CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util -CFLAGS = -pipe -ggdb -g -Og -Wall -Wno-parentheses $(CPPFLAGS) -LDFLAGS = -LIBS = -lm - -OBJDIR = obj - -UTILLIB = $(srcdir)/../../support/util -UTILSRC = dbuf.c dbuf_string.c -UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o) - -ASXXLIB = $(srcdir)/../asxxsrc -ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c -ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o) - -SRC = stm8pst.c stm8mch.c stm8adr.c -OBJS = $(SRC:%.c=$(OBJDIR)/%.o) - -ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c) - -ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS) - -ASX = $(top_builddir)/bin/sdasstm8$(EXEEXT) -#DEST = $(DESTDIR)$(bindir)/sdasstm8$(EXEEXT) -DEST = sdasstm8 -DESTPATH = $(DESTDIR)$(bindir)/ - -transform = s,x,x, - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf $(ASX) - -$(ASX): $(ASOBJECTS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS) - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(ASSOURCES) $(srcdir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(OBJDIR)/.stamp: - mkdir -p $(OBJDIR) - touch $(OBJDIR)/.stamp - -$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of Makefile diff --git a/sdas/astlcs90/Makefile b/sdas/astlcs90/Makefile deleted file mode 100644 index fdc4529..0000000 --- a/sdas/astlcs90/Makefile +++ /dev/null @@ -1,137 +0,0 @@ -# -# -# - -VERSION = 3.9.3 -VERSIONHI = 3 -VERSIONLO = 9 -VERSIONP = 3 - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = g++ -MM - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @info@ - -EXEEXT = - - - -CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util -CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS) -LDFLAGS = -LIBS = -lm - -OBJDIR = obj - -UTILLIB = $(srcdir)/../../support/util -UTILSRC = dbuf.c dbuf_string.c -UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o) - -ASXXLIB = $(srcdir)/../asxxsrc -ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c -ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o) - -SRC = t90pst.c t90mch.c t90adr.c -OBJS = $(SRC:%.c=$(OBJDIR)/%.o) - -ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c) - -ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS) - -ASX = $(top_builddir)/bin/sdastlcs90$(EXEEXT) -#DEST = $(DESTDIR)$(bindir)/sdastlcs90$(EXEEXT) -DEST = sdastlcs90 -DESTPATH = $(DESTDIR)$(bindir)/ - -transform = s,x,x, - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf $(ASX) - -$(ASX): $(ASOBJECTS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS) - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(ASSOURCES) $(srcdir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(OBJDIR)/.stamp: - mkdir -p $(OBJDIR) - touch $(OBJDIR)/.stamp - -$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of Makefile diff --git a/sdas/asz80/Makefile b/sdas/asz80/Makefile deleted file mode 100644 index 8862fb1..0000000 --- a/sdas/asz80/Makefile +++ /dev/null @@ -1,137 +0,0 @@ -# -# -# - -VERSION = 3.9.3 -VERSIONHI = 3 -VERSIONLO = 9 -VERSIONP = 3 - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = g++ -MM - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @info@ - -EXEEXT = - - - -CPPFLAGS = -DSDCDB -DNOICE -DINDEXLIB -I. -I$(srcdir) -I$(srcdir)/../asxxsrc -I$(srcdir)/../../support/util -CFLAGS = -pipe -ggdb -g -O2 -Wall -Wno-parentheses $(CPPFLAGS) -LDFLAGS = -LIBS = -lm - -OBJDIR = obj - -UTILLIB = $(srcdir)/../../support/util -UTILSRC = dbuf.c dbuf_string.c -UTILLIBOBJS = $(UTILSRC:%.c=$(OBJDIR)/%.o) - -ASXXLIB = $(srcdir)/../asxxsrc -ASXXLIBSRC = asdbg.c asdata.c asexpr.c aslex.c aslist.c asmain.c asout.c assubr.c assym.c asmcro.c sdas.c strcmpi.c -ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o) - -SRC = z80pst.c z80mch.c z80adr.c -OBJS = $(SRC:%.c=$(OBJDIR)/%.o) - -ASSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) $(UTILSRC:%.c=$(UTILLIB)/%.c) - -ASOBJECTS = $(OBJS) $(ASXXLIBOBJS) $(UTILLIBOBJS) - -ASX = $(top_builddir)/bin/sdasz80$(EXEEXT) -#DEST = $(DESTDIR)$(bindir)/sdasz80$(EXEEXT) -DEST = sdasz80 -DESTPATH = $(DESTDIR)$(bindir)/ - -transform = s,x,x, - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf $(ASX) - -$(ASX): $(ASOBJECTS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) $(LIBS) - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(INSTALL) $(ASX) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTPATH)`echo $(DEST)|sed '$(transform)'`$(EXEEXT) - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(ASSOURCES) $(srcdir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(OBJDIR)/.stamp: - mkdir -p $(OBJDIR) - touch $(OBJDIR)/.stamp - -$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(UTILLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of Makefile diff --git a/sdas/linksrc/Makefile b/sdas/linksrc/Makefile deleted file mode 100644 index 237545d..0000000 --- a/sdas/linksrc/Makefile +++ /dev/null @@ -1,172 +0,0 @@ -# -# -# - -VERSION = 0.0.0 -VERSIONHI = 0 -VERSIONLO = 0 -VERSIONP = 0 - -SHELL = /bin/sh -CC = gcc -CPP = gcc -E -INSTALL = /usr/bin/install -c -STRIP = strip -MAKEDEP = g++ -MM - -top_builddir = ../.. -top_srcdir = ../.. - -srcdir = . -prefix = /usr/local -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${datarootdir} -datarootdir = ${prefix}/share -includedir = ${prefix}/include -mandir = ${datarootdir}/man -man1dir = $(mandir)/man1 -man2dir = $(mandir)/man2 -infodir = @info@ - -EXEEXT = - - - -CPPFLAGS = -I.. -I$(srcdir)/.. -CFLAGS = -pipe -ggdb -g -Og -Wall -Wno-parentheses -DINDEXLIB -DUNIX -I. -I$(srcdir) -LDFLAGS = - -OBJDIR = obj - -ASXXLIB = $(srcdir)/../asxxsrc - -ASXXLIBSRC = strcmpi.c - -SRC = lk_readnl.c lkaomf51.c lkar.c lkarea.c lkdata.c lkelf.c lkeval.c \ - lkhead.c lklex.c lklib.c lklibr.c lklist.c lkmain.c lkmem.c \ - lknoice.c lkout.c lkrel.c lkrloc.c lkrloc3.c lks19.c lksdcclib.c \ - lksym.c sdld.c lksdcdb.c lkbank.c - -LKSOURCES = $(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) - -OBJS = $(SRC:%.c=$(OBJDIR)/%.o) -ASXXLIBOBJS = $(ASXXLIBSRC:%.c=$(OBJDIR)/%.o) -LKOBJECTS = $(OBJS) $(LKOBJS) $(ASXXLIBOBJS) - -$(LKOBJECTS) : aslink.h - -ASLINK = $(top_builddir)/bin/sdld$(EXEEXT) - -transform = s,x,x, - -# Compiling entire program or any subproject -# ------------------------------------------ -all: sdcc-ld8051 sdcc-ldz80 sdcc-ldgb sdcc-ld6808 sdcc-ldstm8 sdcc-ldpdk - -sdcc-ld8051: checkconf $(ASLINK) - -sdcc-ldz80: checkconf $(top_builddir)/bin/sdldz80$(EXEEXT) - -sdcc-ldgb: checkconf $(top_builddir)/bin/sdldgb$(EXEEXT) - -sdcc-ld6808: checkconf $(top_builddir)/bin/sdld6808$(EXEEXT) - -sdcc-ldstm8: checkconf $(top_builddir)/bin/sdldstm8$(EXEEXT) - -sdcc-ldpdk: checkconf $(top_builddir)/bin/sdldpdk$(EXEEXT) - -$(top_builddir)/bin/sdldz80$(EXEEXT) $(top_builddir)/bin/sdldgb$(EXEEXT) $(top_builddir)/bin/sdldstm8$(EXEEXT) $(top_builddir)/bin/sdld6808$(EXEEXT) $(top_builddir)/bin/sdldpdk$(EXEEXT): $(ASLINK) - cp -p $(ASLINK) $@ - -$(ASLINK): $(LKOBJECTS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(LKOBJECTS) - -# Compiling and installing everything and running test -# ---------------------------------------------------- -install: all installdirs - $(INSTALL) $(top_builddir)/bin/sdld$(EXEEXT) $(DESTDIR)$(bindir)/`echo 'sdld' | sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTDIR)$(bindir)/`echo 'sdld' | sed '$(transform)'`$(EXEEXT) - if [ "`grep stm8 $(top_builddir)/ports.build`" = "stm8" ]; \ - then \ - $(INSTALL) $(top_builddir)/bin/sdldstm8$(EXEEXT) $(DESTDIR)$(bindir)/`echo 'sdldstm8' | sed '$(transform)'`$(EXEEXT); \ - $(STRIP) $(DESTDIR)$(bindir)/`echo 'sdldstm8' | sed '$(transform)'`$(EXEEXT); \ - fi - if [ "`grep hc08 $(top_builddir)/ports.build`" = "hc08" ]; \ - then \ - $(INSTALL) $(top_builddir)/bin/sdld6808$(EXEEXT) $(DESTDIR)$(bindir)/`echo 'sdld6808' | sed '$(transform)'`$(EXEEXT); \ - $(STRIP) $(DESTDIR)$(bindir)/`echo 'sdld6808' | sed '$(transform)'`$(EXEEXT); \ - fi - if [ "`grep z80 $(top_builddir)/ports.build`" = "z80" ]; \ - then \ - $(INSTALL) $(top_builddir)/bin/sdldz80$(EXEEXT) $(DESTDIR)$(bindir)/`echo 'sdldz80' | sed '$(transform)'`$(EXEEXT); \ - $(STRIP) $(DESTDIR)$(bindir)/`echo 'sdldz80' | sed '$(transform)'`$(EXEEXT); \ - $(INSTALL) $(top_builddir)/bin/sdldgb$(EXEEXT) $(DESTDIR)$(bindir)/`echo 'sdldgb' | sed '$(transform)'`$(EXEEXT); \ - $(STRIP) $(DESTDIR)$(bindir)/`echo 'sdldgb' | sed '$(transform)'`$(EXEEXT); \ - fi - if [ "`grep pdk $(top_builddir)/ports.build`" = "pdk" ]; \ - then \ - $(INSTALL) $(top_builddir)/bin/sdldpdk$(EXEEXT) $(DESTDIR)$(bindir)/`echo 'sdldpdk' | sed '$(transform)'`$(EXEEXT); \ - $(STRIP) $(DESTDIR)$(bindir)/`echo 'sdldpdk' | sed '$(transform)'`$(EXEEXT); \ - fi - -# Deleting all the installed files -# -------------------------------- -uninstall: - for ld in $(top_builddir)/bin/sdld $(top_builddir)/bin/sdldz80 $(top_builddir)/bin/sdldgb $(top_builddir)/bin/sdldstm8 $(top_builddir)/bin/sdld6808; $(top_builddir)/bin/sdldpdk; \ - do \ - rm -f $(DESTDIR)$(bindir)/`echo \`basename $$ld\` | sed '$(transform)'`$(EXEEXT); \ - done - - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: Makefile.dep - -Makefile.dep: $(LKSOURCES) $(top_builddir)/*.h - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) >Makefile.dep - -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - -# My rules -# -------- -$(OBJDIR)/.stamp: - mkdir -p $(OBJDIR) - touch $(OBJDIR)/.stamp - -$(OBJDIR)/%.o: %.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - -$(OBJDIR)/%.o: $(ASXXLIB)/%.c $(OBJDIR)/.stamp - $(CC) -c $(CFLAGS) -o $@ $< - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f ../conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" freshconf;\ - fi - -# End of Makefile diff --git a/sdcc.geany b/sdcc.geany deleted file mode 100644 index f0c1e30..0000000 --- a/sdcc.geany +++ /dev/null @@ -1,249 +0,0 @@ -[editor] -line_wrapping=false -line_break_column=120 -auto_continue_multiline=true - -[file_prefs] -final_new_line=true -ensure_convert_new_lines=true -strip_trailing_spaces=true -replace_tabs=false - -[indentation] -indent_width=4 -indent_type=0 -indent_hard_tab_width=8 -detect_indent=true -detect_indent_width=true -indent_mode=3 - -[project] -name=sdcc -base_path=/home/xavier/sdcc/ -description= - -[long line marker] -long_line_behaviour=1 -long_line_column=120 - -[files] -current_page=215 -FILE_NAME_0=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Favr%2Fgen.c;0;8 -FILE_NAME_1=5183;C;0;EUTF-8;1;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Favr%2Fmain.c;0;4 -FILE_NAME_2=0;C;0;EUTF-8;1;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Favr%2Fralloc.c;0;4 -FILE_NAME_3=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fds390%2Fgen.c;0;2 -FILE_NAME_4=31016;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fds390%2Fmain.c;0;2 -FILE_NAME_5=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fds390%2Fralloc.c;0;2 -FILE_NAME_6=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fhc08%2Fgen.c;0;2 -FILE_NAME_7=23455;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fhc08%2Fmain.c;0;2 -FILE_NAME_8=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fhc08%2Fralloc.c;0;2 -FILE_NAME_9=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fmcs51%2Fgen.c;0;2 -FILE_NAME_10=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fmcs51%2Fmain.c;0;2 -FILE_NAME_11=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fmcs51%2Fpeep.c;0;2 -FILE_NAME_12=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fmcs51%2Fralloc.c;0;2 -FILE_NAME_13=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fmcs51%2Frtrack.c;0;2 -FILE_NAME_14=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpdk%2Fgen.c;0;2 -FILE_NAME_15=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpdk%2Fmain.c;0;2 -FILE_NAME_16=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpdk%2Fpeep.c;0;2 -FILE_NAME_17=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpdk%2Fralloc.c;0;2 -FILE_NAME_18=0;C;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fdevice.c;0;2 -FILE_NAME_19=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fgenarith.c;0;8 -FILE_NAME_20=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fgen.c;0;2 -FILE_NAME_21=4237;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fglue.c;0;4 -FILE_NAME_22=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fmain.c;0;2 -FILE_NAME_23=0;C;0;EUTF-8;1;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fpcode.c;0;4 -FILE_NAME_24=0;C;0;EUTF-8;1;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fpcodeflow.c;0;4 -FILE_NAME_25=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fpcodepeep.c;0;2 -FILE_NAME_26=0;C;0;EUTF-8;1;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fpcoderegs.c;0;4 -FILE_NAME_27=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fralloc.c;0;8 -FILE_NAME_28=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fdevice.c;0;2 -FILE_NAME_29=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fgenarith.c;0;2 -FILE_NAME_30=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fgen.c;0;2 -FILE_NAME_31=0;C;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fgenutils.c;0;2 -FILE_NAME_32=63979;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fglue.c;0;2 -FILE_NAME_33=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fgraph.c;0;2 -FILE_NAME_34=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fmain.c;0;2 -FILE_NAME_35=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fpcode.c;0;2 -FILE_NAME_36=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fpcodeflow.c;0;2 -FILE_NAME_37=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fpcodepeep.c;0;2 -FILE_NAME_38=0;C;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fpcoderegs.c;0;2 -FILE_NAME_39=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fralloc.c;0;2 -FILE_NAME_40=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fadd2.c;0;2 -FILE_NAME_41=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fadd3.c;0;2 -FILE_NAME_42=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fadd4.c;0;2 -FILE_NAME_43=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fadd.c;0;2 -FILE_NAME_44=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fand1.c;0;2 -FILE_NAME_45=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fand2.c;0;2 -FILE_NAME_46=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Farrays.c;0;2 -FILE_NAME_47=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fbank1.c;0;2 -FILE_NAME_48=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fb.c;0;2 -FILE_NAME_49=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fbool1.c;0;2 -FILE_NAME_50=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fbool2.c;0;2 -FILE_NAME_51=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fbool3.c;0;2 -FILE_NAME_52=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fcall1.c;0;2 -FILE_NAME_53=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fcompare10.c;0;2 -FILE_NAME_54=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fcompare2.c;0;2 -FILE_NAME_55=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fcompare3.c;0;2 -FILE_NAME_56=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fcompare4.c;0;2 -FILE_NAME_57=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fcompare5.c;0;2 -FILE_NAME_58=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fcompare6.c;0;2 -FILE_NAME_59=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fcompare7.c;0;2 -FILE_NAME_60=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fcompare8.c;0;2 -FILE_NAME_61=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fcompare9.c;0;2 -FILE_NAME_62=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fcompare.c;0;2 -FILE_NAME_63=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fconfigword.c;0;2 -FILE_NAME_64=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fempty.c;0;2 -FILE_NAME_65=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Ffor.c;0;2 -FILE_NAME_66=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Finit0.c;0;4 -FILE_NAME_67=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Finline.c;0;2 -FILE_NAME_68=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fmult1.c;0;2 -FILE_NAME_69=0;C;0;EUTF-8;1;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fnestfor.c;0;4 -FILE_NAME_70=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2For1.c;0;2 -FILE_NAME_71=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fpcodeopt.c;0;4 -FILE_NAME_72=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fpointer1.c;0;2 -FILE_NAME_73=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fptrarg.c;0;2 -FILE_NAME_74=0;C;0;EUTF-8;1;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fptrfunc.c;0;4 -FILE_NAME_75=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Frotate1.c;0;2 -FILE_NAME_76=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Frotate2.c;0;2 -FILE_NAME_77=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Frotate3.c;0;2 -FILE_NAME_78=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Frotate4.c;0;2 -FILE_NAME_79=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Frotate5.c;0;2 -FILE_NAME_80=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Frotate6.c;0;2 -FILE_NAME_81=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Frotate7.c;0;2 -FILE_NAME_82=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fstring1.c;0;2 -FILE_NAME_83=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fstruct1.c;0;2 -FILE_NAME_84=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fsub2.c;0;2 -FILE_NAME_85=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fsub.c;0;2 -FILE_NAME_86=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fswitch1.c;0;2 -FILE_NAME_87=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fwhile.c;0;2 -FILE_NAME_88=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fxor.c;0;2 -FILE_NAME_89=99430;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fstm8%2Fgen.c;0;2 -FILE_NAME_90=14673;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fstm8%2Fmain.c;0;2 -FILE_NAME_91=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fstm8%2Fpeep.c;0;2 -FILE_NAME_92=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fstm8%2Fralloc.c;0;2 -FILE_NAME_93=145207;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fz80%2Fgen.c;0;2 -FILE_NAME_94=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fz80%2Fmain.c;0;2 -FILE_NAME_95=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fz80%2Fpeep.c;0;2 -FILE_NAME_96=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fz80%2Fralloc.c;0;2 -FILE_NAME_97=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fz80%2Fsupport.c;0;2 -FILE_NAME_98=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Favr%2Fgen.h;0;4 -FILE_NAME_99=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Favr%2Fmain.h;0;4 -FILE_NAME_100=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Favr%2Fralloc.h;0;4 -FILE_NAME_101=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fds390%2Fgen.h;0;2 -FILE_NAME_102=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fds390%2Fmain.h;0;2 -FILE_NAME_103=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fds390%2Fralloc.h;0;3 -FILE_NAME_104=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fhc08%2Fgen.h;0;4 -FILE_NAME_105=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fhc08%2Fhc08.h;0;2 -FILE_NAME_106=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fhc08%2Fmain.h;0;4 -FILE_NAME_107=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fhc08%2Fralloc.h;0;4 -FILE_NAME_108=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fmcs51%2Fgen.h;0;2 -FILE_NAME_109=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fmcs51%2Fmain.h;0;2 -FILE_NAME_110=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fmcs51%2Fpeep.h;0;2 -FILE_NAME_111=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fmcs51%2Fralloc.h;0;2 -FILE_NAME_112=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fmcs51%2Frtrack.h;0;2 -FILE_NAME_113=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpdk%2Fgen.h;0;2 -FILE_NAME_114=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpdk%2Fpeep.h;0;4 -FILE_NAME_115=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpdk%2Fralloc.h;0;3 -FILE_NAME_116=0;C++;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fdevice.h;0;8 -FILE_NAME_117=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fgen.h;0;2 -FILE_NAME_118=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fglue.h;0;3 -FILE_NAME_119=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fmain.h;0;2 -FILE_NAME_120=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fpcodeflow.h;0;3 -FILE_NAME_121=0;C++;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fpcode.h;0;8 -FILE_NAME_122=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fpcoderegs.h;0;3 -FILE_NAME_123=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic14%2Fralloc.h;0;2 -FILE_NAME_124=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fdevice.h;0;2 -FILE_NAME_125=0;C++;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fgen.h;0;4 -FILE_NAME_126=0;C++;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fgenutils.h;0;2 -FILE_NAME_127=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fglue.h;0;3 -FILE_NAME_128=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fgraph.h;0;3 -FILE_NAME_129=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fmain.h;0;2 -FILE_NAME_130=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fpcodeflow.h;0;3 -FILE_NAME_131=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fpcode.h;0;2 -FILE_NAME_132=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fpcoderegs.h;0;3 -FILE_NAME_133=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fpic16%2Fralloc.h;0;4 -FILE_NAME_134=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fgpsim_assert.h;0;2 -FILE_NAME_135=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fregression%2Fpicregs.h;0;2 -FILE_NAME_136=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fstm8%2Fgen.h;0;2 -FILE_NAME_137=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fstm8%2Fpeep.h;0;4 -FILE_NAME_138=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fstm8%2Fralloc.h;0;3 -FILE_NAME_139=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fz80%2Fgen.h;0;2 -FILE_NAME_140=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fz80%2Fpeep.h;0;2 -FILE_NAME_141=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fz80%2Fralloc.h;0;2 -FILE_NAME_142=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fz80%2Fsupport.h;0;2 -FILE_NAME_143=415;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fz80%2Fz80.h;0;4 -FILE_NAME_144=0;C;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Faltlex.c;0;2 -FILE_NAME_145=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FcdbFile.c;0;2 -FILE_NAME_146=5694;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCasm.c;0;2 -FILE_NAME_147=53881;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCast.c;0;2 -FILE_NAME_148=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCBBlock.c;0;2 -FILE_NAME_149=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCbitv.c;0;2 -FILE_NAME_150=0;C;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCcflow.c;0;2 -FILE_NAME_151=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCcse.c;0;2 -FILE_NAME_152=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCdebug.c;0;2 -FILE_NAME_153=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCdflow.c;0;2 -FILE_NAME_154=97235;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCdwarf2.c;0;2 -FILE_NAME_155=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCerr.c;0;2 -FILE_NAME_156=3942;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCgen.c;0;2 -FILE_NAME_157=66047;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCglue.c;0;2 -FILE_NAME_158=0;C;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCChasht.c;0;2 -FILE_NAME_159=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCicode.c;0;2 -FILE_NAME_160=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCClabel.c;0;2 -FILE_NAME_161=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCloop.c;0;2 -FILE_NAME_162=0;C;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCClrange.c;0;2 -FILE_NAME_163=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCmacro.c;0;2 -FILE_NAME_164=13915;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCmain.c;0;2 -FILE_NAME_165=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCmem.c;0;2 -FILE_NAME_166=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCopt.c;0;2 -FILE_NAME_167=9760;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCpeeph.c;0;2 -FILE_NAME_168=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCptropt.c;0;2 -FILE_NAME_169=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCset.c;0;2 -FILE_NAME_170=59964;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCsymt.c;0;2 -FILE_NAME_171=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCsystem.c;0;2 -FILE_NAME_172=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCutil.c;0;2 -FILE_NAME_173=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCval.c;0;2 -FILE_NAME_174=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fcommon.h;0;2 -FILE_NAME_175=7089;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2Fport.h;0;2 -FILE_NAME_176=2267;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCargs.h;0;2 -FILE_NAME_177=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCasm.h;0;2 -FILE_NAME_178=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCast.h;0;2 -FILE_NAME_179=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCBBlock.h;0;2 -FILE_NAME_180=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCbitv.h;0;4 -FILE_NAME_181=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCbtree.h;0;4 -FILE_NAME_182=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCcflow.h;0;3 -FILE_NAME_183=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCcse.h;0;3 -FILE_NAME_184=1604;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCdebug.h;0;2 -FILE_NAME_185=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCdflow.h;0;3 -FILE_NAME_186=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCdwarf2.h;0;2 -FILE_NAME_187=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCerr.h;0;2 -FILE_NAME_188=1338;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCgen.h;0;2 -FILE_NAME_189=11690;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCglobl.h;0;4 -FILE_NAME_190=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCglue.h;0;3 -FILE_NAME_191=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCChasht.h;0;4 -FILE_NAME_192=5518;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCicode.h;0;2 -FILE_NAME_193=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCClabel.h;0;4 -FILE_NAME_194=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCloop.h;0;4 -FILE_NAME_195=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCClrange.h;0;3 -FILE_NAME_196=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCmacro.h;0;4 -FILE_NAME_197=1129;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCmem.h;0;4 -FILE_NAME_198=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCopt.h;0;3 -FILE_NAME_199=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCpeeph.h;0;2 -FILE_NAME_200=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCptropt.h;0;3 -FILE_NAME_201=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCset.h;0;4 -FILE_NAME_202=28851;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCsymt.h;0;2 -FILE_NAME_203=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCsystem.h;0;3 -FILE_NAME_204=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCutil.h;0;3 -FILE_NAME_205=2735;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsrc%2FSDCCval.h;0;2 -FILE_NAME_206=5624;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsupport%2Futil%2Fdbuf.c;0;2 -FILE_NAME_207=6628;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsupport%2Futil%2Fdbuf_string.c;0;2 -FILE_NAME_208=0;C;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsupport%2Futil%2Ffindme.c;0;4 -FILE_NAME_209=0;C;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsupport%2Futil%2FNewAlloc.c;0;2 -FILE_NAME_210=1051;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsupport%2Futil%2Fdbuf.h;0;2 -FILE_NAME_211=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsupport%2Futil%2Fdbuf_string.h;0;2 -FILE_NAME_212=0;C++;0;EUTF-8;2;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsupport%2Futil%2Ffindme.h;0;3 -FILE_NAME_213=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsupport%2Futil%2Fnewalloc.h;0;3 -FILE_NAME_214=0;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsupport%2Futil%2Fpstdint.h;0;2 -FILE_NAME_215=81;C++;0;EUTF-8;0;1;0;%2Fhome%2Fxavier%2Fsdcc%2Fsupport%2Futil%2Fsystem.h;0;2 - -[VTE] -last_dir=/home/xavier/sdcc/support/util diff --git a/sdccconf.h b/sdccconf.h deleted file mode 100644 index 9eb5098..0000000 --- a/sdccconf.h +++ /dev/null @@ -1,325 +0,0 @@ -/* sdccconf.h. Generated from sdccconf_in.h by configure. */ -/* sdccconf_in.h. Generated from configure.ac by autoheader. */ - -#ifndef SDCCCONF_HEADER -#define SDCCCONF_HEADER - -/* Define if building universal (internal helper macro) */ -/* #undef AC_APPLE_UNIVERSAL_BUILD */ - -/* XXX */ -#define BIN2DATA_DIR DIR_SEPARATOR_STRING "../share" - -/* XXX */ -#define BINDIR "/usr/local/bin" - -/* XXX */ -#define DATADIR "/usr/local/share" - -/* XXX */ -#define DIR_SEPARATOR_CHAR '/' - -/* XXX */ -#define DIR_SEPARATOR_STRING "/" - -/* XXX */ -#define EXEC_PREFIX "/usr/local" - -/* Define to 1 if you have the `backtrace_symbols_fd' function. */ -#define HAVE_BACKTRACE_SYMBOLS_FD 1 - -/* Define to 1 if you have the <boost/graph/adjacency_list.hpp> header file. - */ -#define HAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP 1 - -/* define if the compiler supports basic C++11 syntax */ -#define HAVE_CXX11 1 - -/* Define to 1 if you have the <endian.h> header file. */ -#define HAVE_ENDIAN_H 1 - -/* Define to 1 if you have the <gala/graph.h> header file. */ -/* #undef HAVE_GALA_GRAPH_H */ - -/* Define to 1 if you have the <inttypes.h> header file. */ -#define HAVE_INTTYPES_H 1 - -/* Define to 1 if you have the `gc' library (-lgc). */ -/* #undef HAVE_LIBGC */ - -/* Define to 1 if you have the <machine/endian.h> header file. */ -/* #undef HAVE_MACHINE_ENDIAN_H */ - -/* Define to 1 if you have the <memory.h> header file. */ -#define HAVE_MEMORY_H 1 - -/* Define to 1 if you have the `mkstemp' function. */ -#define HAVE_MKSTEMP 1 - -/* Define to 1 if you have the `setrlimit' function. */ -#define HAVE_SETRLIMIT 1 - -/* Define to 1 if you have the <stdint.h> header file. */ -#define HAVE_STDINT_H 1 - -/* Define to 1 if you have the <stdlib.h> header file. */ -#define HAVE_STDLIB_H 1 - -/* Define to 1 if you have the `strerror' function. */ -#define HAVE_STRERROR 1 - -/* Define to 1 if you have the <strings.h> header file. */ -#define HAVE_STRINGS_H 1 - -/* Define to 1 if you have the <string.h> header file. */ -#define HAVE_STRING_H 1 - -/* Define to 1 if you have the `strndup' function. */ -#define HAVE_STRNDUP 1 - -/* Define to 1 if you have the <sys/endian.h> header file. */ -/* #undef HAVE_SYS_ENDIAN_H */ - -/* Define to 1 if you have the <sys/isa_defs.h> header file. */ -/* #undef HAVE_SYS_ISA_DEFS_H */ - -/* Define to 1 if you have the <sys/stat.h> header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define to 1 if you have the <sys/types.h> header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define to 1 if you have the <treedec/combinations.hpp> header file. */ -/* #undef HAVE_TREEDEC_COMBINATIONS_HPP */ - -/* Define to 1 if you have the <unistd.h> header file. */ -#define HAVE_UNISTD_H 1 - -/* XXX */ -#define INCLUDE_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/include" - -/* XXX */ -#define LIB_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/lib" - -/* XXX */ -#define NON_FREE_INCLUDE_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/non-free/include" - -/* XXX */ -#define NON_FREE_LIB_DIR_SUFFIX DIR_SEPARATOR_STRING "sdcc/non-free/lib" - -/* Define to 1 to disable the AVR port */ -#define OPT_DISABLE_AVR 1 - -/* XXX */ -#define OPT_DISABLE_DEVICE_LIB 1 - -/* XXX */ -#define OPT_DISABLE_DS390 1 - -/* XXX */ -#define OPT_DISABLE_DS400 1 - -/* XXX */ -#define OPT_DISABLE_EZ80_Z80 1 - -/* XXX */ -#define OPT_DISABLE_GBZ80 1 - -/* XXX */ -#define OPT_DISABLE_HC08 1 - -/* XXX */ -#define OPT_DISABLE_MCS51 1 - -/* XXX */ -#define OPT_DISABLE_NON_FREE 0 - -/* XXX */ -#define OPT_DISABLE_PACKIHX 1 - -/* XXX */ -#define OPT_DISABLE_PDK13 1 - -/* XXX */ -#define OPT_DISABLE_PDK14 1 - -/* XXX */ -#define OPT_DISABLE_PDK15 1 - -/* XXX */ -#define OPT_DISABLE_PIC14 1 - -/* XXX */ -#define OPT_DISABLE_PIC16 1 - -/* XXX */ -#define OPT_DISABLE_R2K 1 - -/* XXX */ -#define OPT_DISABLE_R3KA 1 - -/* XXX */ -#define OPT_DISABLE_S08 1 - -/* XXX */ -#define OPT_DISABLE_SDBINUTILS 0 - -/* XXX */ -#define OPT_DISABLE_SDCDB 0 - -/* XXX */ -#define OPT_DISABLE_SDCPP 0 - -/* XXX */ -#define OPT_DISABLE_STM8 0 - -/* XXX */ -#define OPT_DISABLE_TININative 1 - -/* XXX */ -#define OPT_DISABLE_TLCS90 1 - -/* XXX */ -#define OPT_DISABLE_UCSIM 1 - -/* XXX */ -#define OPT_DISABLE_Z180 1 - -/* XXX */ -#define OPT_DISABLE_Z80 1 - -/* XXX */ -#define OPT_ENABLE_DOC 0 - -/* XXX */ -#define OPT_ENABLE_LIBGC 0 - -/* Define to the address where bug reports for this package should be sent. */ -#define PACKAGE_BUGREPORT "" - -/* Define to the full name of this package. */ -#define PACKAGE_NAME "" - -/* Define to the full name and version of this package. */ -#define PACKAGE_STRING "" - -/* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME "" - -/* Define to the home page for this package. */ -#define PACKAGE_URL "" - -/* Define to the version of this package. */ -#define PACKAGE_VERSION "" - -/* XXX */ -#define PREFIX "/usr/local" - -/* XXX */ -#define PREFIX2BIN_DIR DIR_SEPARATOR_STRING "bin" - -/* XXX */ -#define PREFIX2DATA_DIR DIR_SEPARATOR_STRING "share" - -/* Define as the return type of signal handlers (`int' or `void'). */ -#define RETSIGTYPE void - -/* XXX */ -#define SDCC_DIR_NAME "SDCC_HOME" - -/* XXX */ -#define SDCC_INCLUDE_NAME "SDCC_INCLUDE" - -/* XXX */ -#define SDCC_LIB_NAME "SDCC_LIB" - -/* XXX */ -#define SDCC_VERSION_HI 3 - -/* XXX */ -#define SDCC_VERSION_LO 9 - -/* XXX */ -#define SDCC_VERSION_P 1 - -/* XXX */ -#define SDCC_VERSION_STR "3.9.1" - -/* The size of `char', as computed by sizeof. */ -#define SIZEOF_CHAR 1 - -/* The size of `int', as computed by sizeof. */ -#define SIZEOF_INT 4 - -/* The size of `long', as computed by sizeof. */ -#define SIZEOF_LONG 8 - -/* The size of `long long', as computed by sizeof. */ -#define SIZEOF_LONG_LONG 8 - -/* The size of `short', as computed by sizeof. */ -#define SIZEOF_SHORT 2 - -/* Define to 1 if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* XXX */ -#define STD_DS390_LIB "libds390" - -/* XXX */ -#define STD_DS400_LIB "libds400" - -/* XXX */ -#define STD_FP_LIB "libfloat" - -/* XXX */ -#define STD_INT_LIB "libint" - -/* XXX */ -#define STD_LIB "libsdcc" - -/* XXX */ -#define STD_LONG_LIB "liblong" - -/* XXX */ -#define TYPE_BYTE char - -/* XXX */ -#define TYPE_DWORD int - -/* XXX */ -#define TYPE_QWORD long - -/* XXX */ -#define TYPE_UBYTE unsigned char - -/* XXX */ -#define TYPE_UDWORD unsigned int - -/* XXX */ -#define TYPE_UQWORD unsigned long - -/* XXX */ -#define TYPE_UWORD unsigned short - -/* XXX */ -#define TYPE_WORD short - -/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most - significant byte first (like Motorola and SPARC, unlike Intel). */ -#if defined AC_APPLE_UNIVERSAL_BUILD -# if defined __BIG_ENDIAN__ -# define WORDS_BIGENDIAN 1 -# endif -#else -# ifndef WORDS_BIGENDIAN -/* # undef WORDS_BIGENDIAN */ -# endif -#endif - -/* Define to 1 if type `char' is unsigned and you are not using gcc. */ -#ifndef __CHAR_UNSIGNED__ -/* # undef __CHAR_UNSIGNED__ */ -#endif - -#endif /* SDCCCONF_HEADER */ diff --git a/sim/ucsim/Makefile b/sim/ucsim/Makefile deleted file mode 100644 index 2645374..0000000 --- a/sim/ucsim/Makefile +++ /dev/null @@ -1,192 +0,0 @@ -# -# uCsim Makefile -# -# (c) Drotos Daniel, Talker Bt. 1997,99 -# - -STARTYEAR = 1997 - -SHELL = /bin/sh - -include packages.mk -#PKGS = cmd.src sim.src gui.src s51.src avr.src z80.src pdk.src doc - - -srcdir = . - -top_builddir = . -top_srcdir = . - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf #libs apps - $(MAKE) libs - $(MAKE) apps - -libs: main_all cmd_src_all sim_src_all gui_src_all - -main_all: - $(MAKE) -f main.mk all - -cmd_src_all: - $(MAKE) -C cmd.src cmd.src - -sim_src_all: - $(MAKE) -C sim.src sim.src - -gui_src_all: - $(MAKE) -C gui.src gui.src - - -apps: $(PKGS) main_app - -main_app: - $(MAKE) -f main.mk main_app - - -.PHONY: $(PKGS) - -$(PKGS): - $(MAKE) -C $@ $@ - -#main_libs: main.mk -# $(MAKE) -f main.mk libs - - -# Compiling and installing everything and runing test -# --------------------------------------------------- -.PHONY: install INSTALL Install -install: - $(MAKE) -f main.mk install - @for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg install ;\ - done - - -# Deleting all the installed files -# -------------------------------- -uninstall: - $(MAKE) -f main.mk uninstall - @for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg uninstall ;\ - done - - -# Deleting all files created by building the program -# -------------------------------------------------- -clean: - $(MAKE) -f $(srcdir)/clean.mk clean EXEEXT=$(EXEEXT) - @for pkg in $(PKGS_ALL); do\ - $(MAKE) -C $$pkg -f ../$(srcdir)/$$pkg/clean.mk clean EXEEXT=$(EXEEXT) ;\ - done - - -# Deleting all files created by configuring or building the program -# ----------------------------------------------------------------- -distclean: clean - $(MAKE) -f $(srcdir)/clean.mk distclean - @for pkg in $(PKGS_ALL); do\ - $(MAKE) -C $$pkg -f ../$(srcdir)/$$pkg/clean.mk distclean ;\ - done - rm -rf doc/*~ doc/*.bak Makefile packages.mk libtool - $(MAKE) -C example clean - $(MAKE) -C s51.src/test clean - $(MAKE) -C stm8.src/test clean - $(MAKE) -C tlcs.src/test clean - $(MAKE) -C z80.src/test clean - - -# Like clean but some files may still exist -# ----------------------------------------- -mostlyclean: clean - $(MAKE) -f clean.mk mostlyclean - @for pkg in $(PKGS_ALL); do\ - $(MAKE) -C $$pkg -f ../$(srcdir)/$$pkg/clean.mk mostlyclean ;\ - done - - -# Deleting everything that can reconstructed by this Makefile. It deletes -# everything deleted by distclean plus files created by bison, stc. -# ----------------------------------------------------------------------- -realclean: distclean - $(MAKE) -f clean.mk realclean - @for pkg in $(PKGS_ALL); do\ - $(MAKE) -C $$pkg -f ../$(srcdir)/$$pkg/clean.mk realclean ;\ - done - - -# Performing self-test -# -------------------- -check: - $(MAKE) -f main.mk check - @for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg check ;\ - done - -test: - $(MAKE) -f main.mk test - @for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg test ;\ - done - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating dependencies -# --------------------- -dep: - $(MAKE) -f main.mk dep - @for pkg in $(PKGS); do\ - $(MAKE) -C $$pkg dep ;\ - done - - -# My rules -# -------- -putcopyright: - './put(c)' -s $(STARTYEAR) *.cc *.h *.y *.l - - -# Remaking configuration -# ---------------------- -configure: configure.ac - @$(top_srcdir)/mkecho $(top_builddir) "RE-CREATING CONFIGURE" - autoconf configure.ac >configure - chmod 755 configure - -config.status: configure - @$(top_srcdir)/mkecho $(top_builddir) "RE-CHECKING CONFIGURATION (re-creating config.status from configure)" - @if [ -x ./config.status ]; then \ - ./config.status -recheck;\ - else\ - if [ -x ./conf ]; then\ - ./conf;\ - else\ - ./configure;\ - fi\ - fi - -makefiles: config.status - @$(top_srcdir)/mkecho $(top_builddir) "RE-MAKING MAKEFILES" - $(SHELL) ./config.status - -main.mk: $(srcdir)/main_in.mk config.status - @$(top_srcdir)/mkecho $(top_builddir) "RE-MAKING MAIN.MK" - $(SHELL) ./config.status - -freshconf: echo_freshconf configure main.mk ddconfig.h - -ddconfig.h: ddconfig_in.h config.status - $(SHELL) ./config.status - -echo_freshconf: - @$(top_srcdir)/mkecho $(top_builddir) "FRESHCONF" - -checkconf: - @$(top_srcdir)/mkecho $(top_builddir) "CHECKCONF" - @if [ -f devel ]; then $(MAKE) freshconf; fi - -# End of Makefile diff --git a/sim/ucsim/config.log b/sim/ucsim/config.log deleted file mode 100644 index 7285020..0000000 --- a/sim/ucsim/config.log +++ /dev/null @@ -1,4160 +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:2694: checking for gawk -configure:2710: found /usr/bin/gawk -configure:2721: result: gawk -configure:2733: checking version of the package -configure:2737: result: 0.6-pre56 -configure:3051: checking for g++ -configure:3067: found /usr/bin/g++ -configure:3078: result: g++ -configure:3105: checking for C++ compiler version -configure:3114: g++ --version >&5 -g++ (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:3125: $? = 0 -configure:3114: g++ -v >&5 -Using built-in specs. -COLLECT_GCC=g++ -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:3125: $? = 0 -configure:3114: g++ -V >&5 -g++: error: unrecognized command line option '-V' -g++: fatal error: no input files -compilation terminated. -configure:3125: $? = 1 -configure:3114: g++ -qversion >&5 -g++: error: unrecognized command line option '-qversion'; did you mean '--version'? -g++: fatal error: no input files -compilation terminated. -configure:3125: $? = 1 -configure:3145: checking whether the C++ compiler works -configure:3167: g++ conftest.cpp >&5 -configure:3171: $? = 0 -configure:3219: result: yes -configure:3222: checking for C++ compiler default output file name -configure:3224: result: a.out -configure:3230: checking for suffix of executables -configure:3237: g++ -o conftest conftest.cpp >&5 -configure:3241: $? = 0 -configure:3263: result: -configure:3285: checking whether we are cross compiling -configure:3293: g++ -o conftest conftest.cpp >&5 -configure:3297: $? = 0 -configure:3304: ./conftest -configure:3308: $? = 0 -configure:3323: result: no -configure:3328: checking for suffix of object files -configure:3350: g++ -c conftest.cpp >&5 -configure:3354: $? = 0 -configure:3375: result: o -configure:3379: checking whether we are using the GNU C++ compiler -configure:3398: g++ -c conftest.cpp >&5 -configure:3398: $? = 0 -configure:3407: result: yes -configure:3416: checking whether g++ accepts -g -configure:3436: g++ -c -g conftest.cpp >&5 -configure:3436: $? = 0 -configure:3477: result: yes -configure:3505: checking how to run the C++ preprocessor -configure:3532: g++ -E conftest.cpp -configure:3532: $? = 0 -configure:3546: g++ -E conftest.cpp -conftest.cpp:14:10: fatal error: ac_nonexistent.h: No such file or directory - #include <ac_nonexistent.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:3546: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| /* end confdefs.h. */ -| #include <ac_nonexistent.h> -configure:3571: result: g++ -E -configure:3591: g++ -E conftest.cpp -configure:3591: $? = 0 -configure:3605: g++ -E conftest.cpp -conftest.cpp:14:10: fatal error: ac_nonexistent.h: No such file or directory - #include <ac_nonexistent.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:3605: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| /* end confdefs.h. */ -| #include <ac_nonexistent.h> -configure:3676: checking for a BSD-compatible install -configure:3744: result: /usr/bin/install -c -configure:3798: checking for ranlib -configure:3814: found /usr/bin/ranlib -configure:3825: result: ranlib -configure:3891: checking for strip -configure:3907: found /usr/bin/strip -configure:3918: result: strip -configure:3983: checking for ar -configure:3999: found /usr/bin/ar -configure:4010: result: ar -configure:4075: checking for srec_cat -configure:4105: result: no -configure:4158: checking build system type -configure:4172: result: x86_64-pc-linux-gnu -configure:4192: checking host system type -configure:4205: result: x86_64-pc-linux-gnu -configure:4246: checking how to print strings -configure:4273: result: printf -configure:4342: checking for gcc -configure:4358: found /usr/bin/gcc -configure:4369: result: gcc -configure:4598: checking for C compiler version -configure:4607: 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:4618: $? = 0 -configure:4607: 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:4618: $? = 0 -configure:4607: gcc -V >&5 -gcc: error: unrecognized command line option '-V' -gcc: fatal error: no input files -compilation terminated. -configure:4618: $? = 1 -configure:4607: gcc -qversion >&5 -gcc: error: unrecognized command line option '-qversion'; did you mean '--version'? -gcc: fatal error: no input files -compilation terminated. -configure:4618: $? = 1 -configure:4622: checking whether we are using the GNU C compiler -configure:4641: gcc -c conftest.c >&5 -configure:4641: $? = 0 -configure:4650: result: yes -configure:4659: checking whether gcc accepts -g -configure:4679: gcc -c -g conftest.c >&5 -configure:4679: $? = 0 -configure:4720: result: yes -configure:4737: checking for gcc option to accept ISO C89 -configure:4800: gcc -c -g -O2 conftest.c >&5 -configure:4800: $? = 0 -configure:4813: result: none needed -configure:4833: checking for a sed that does not truncate output -configure:4897: result: /bin/sed -configure:4915: checking for grep that handles long lines and -e -configure:4973: result: /bin/grep -configure:4978: checking for egrep -configure:5040: result: /bin/grep -E -configure:5045: checking for fgrep -configure:5107: result: /bin/grep -F -configure:5142: checking for ld used by gcc -configure:5209: result: /usr/bin/ld -configure:5216: checking if the linker (/usr/bin/ld) is GNU ld -configure:5231: result: yes -configure:5243: checking for BSD- or MS-compatible name lister (nm) -configure:5297: result: /usr/bin/nm -B -configure:5427: checking the name lister (/usr/bin/nm -B) interface -configure:5434: gcc -c -g -O2 conftest.c >&5 -configure:5437: /usr/bin/nm -B "conftest.o" -configure:5440: output -0000000000000000 B some_variable -configure:5447: result: BSD nm -configure:5450: checking whether ln -s works -configure:5454: result: yes -configure:5462: checking the maximum length of command line arguments -configure:5593: result: 1572864 -configure:5641: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format -configure:5681: result: func_convert_file_noop -configure:5688: checking how to convert x86_64-pc-linux-gnu file names to toolchain format -configure:5708: result: func_convert_file_noop -configure:5715: checking for /usr/bin/ld option to reload object files -configure:5722: result: -r -configure:5796: checking for objdump -configure:5812: found /usr/bin/objdump -configure:5823: result: objdump -configure:5855: checking how to recognize dependent libraries -configure:6055: result: pass_all -configure:6140: checking for dlltool -configure:6170: result: no -configure:6200: checking how to associate runtime and link libraries -configure:6227: result: printf %s\n -configure:6352: checking for archiver @FILE support -configure:6369: gcc -c -g -O2 conftest.c >&5 -configure:6369: $? = 0 -configure:6372: ar cru libconftest.a @conftest.lst >&5 -ar: `u' modifier ignored since `D' is the default (see `U') -configure:6375: $? = 0 -configure:6380: ar cru libconftest.a @conftest.lst >&5 -ar: `u' modifier ignored since `D' is the default (see `U') -ar: conftest.o: No such file or directory -configure:6383: $? = 1 -configure:6395: result: @ -configure:6453: checking for strip -configure:6480: result: strip -configure:6552: checking for ranlib -configure:6579: result: ranlib -configure:6681: checking command to parse /usr/bin/nm -B output from gcc object -configure:6834: gcc -c -g -O2 conftest.c >&5 -configure:6837: $? = 0 -configure:6841: /usr/bin/nm -B conftest.o | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' > conftest.nm -configure:6907: gcc -o conftest -g -O2 conftest.c conftstm.o >&5 -configure:6910: $? = 0 -configure:6948: result: ok -configure:6995: checking for sysroot -configure:7025: result: no -configure:7032: checking for a working dd -configure:7070: result: /bin/dd -configure:7074: checking how to truncate binary pipes -configure:7089: result: /bin/dd bs=4096 count=1 -configure:7225: gcc -c -g -O2 conftest.c >&5 -configure:7228: $? = 0 -configure:7418: checking for mt -configure:7434: found /bin/mt -configure:7445: result: mt -configure:7468: checking if mt is a manifest tool -configure:7474: mt '-?' -configure:7482: result: no -configure:8159: checking how to run the C preprocessor -configure:8190: gcc -E conftest.c -configure:8190: $? = 0 -configure:8204: gcc -E conftest.c -conftest.c:14:10: fatal error: ac_nonexistent.h: No such file or directory - #include <ac_nonexistent.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:8204: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| /* end confdefs.h. */ -| #include <ac_nonexistent.h> -configure:8229: result: gcc -E -configure:8249: gcc -E conftest.c -configure:8249: $? = 0 -configure:8263: gcc -E conftest.c -conftest.c:14:10: fatal error: ac_nonexistent.h: No such file or directory - #include <ac_nonexistent.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:8263: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| /* end confdefs.h. */ -| #include <ac_nonexistent.h> -configure:8292: checking for ANSI C header files -configure:8312: gcc -c -g -O2 conftest.c >&5 -configure:8312: $? = 0 -configure:8385: gcc -o conftest -g -O2 conftest.c >&5 -configure:8385: $? = 0 -configure:8385: ./conftest -configure:8385: $? = 0 -configure:8396: result: yes -configure:8409: checking for sys/types.h -configure:8409: gcc -c -g -O2 conftest.c >&5 -configure:8409: $? = 0 -configure:8409: result: yes -configure:8409: checking for sys/stat.h -configure:8409: gcc -c -g -O2 conftest.c >&5 -configure:8409: $? = 0 -configure:8409: result: yes -configure:8409: checking for stdlib.h -configure:8409: gcc -c -g -O2 conftest.c >&5 -configure:8409: $? = 0 -configure:8409: result: yes -configure:8409: checking for string.h -configure:8409: gcc -c -g -O2 conftest.c >&5 -configure:8409: $? = 0 -configure:8409: result: yes -configure:8409: checking for memory.h -configure:8409: gcc -c -g -O2 conftest.c >&5 -configure:8409: $? = 0 -configure:8409: result: yes -configure:8409: checking for strings.h -configure:8409: gcc -c -g -O2 conftest.c >&5 -configure:8409: $? = 0 -configure:8409: result: yes -configure:8409: checking for inttypes.h -configure:8409: gcc -c -g -O2 conftest.c >&5 -configure:8409: $? = 0 -configure:8409: result: yes -configure:8409: checking for stdint.h -configure:8409: gcc -c -g -O2 conftest.c >&5 -configure:8409: $? = 0 -configure:8409: result: yes -configure:8409: checking for unistd.h -configure:8409: gcc -c -g -O2 conftest.c >&5 -configure:8409: $? = 0 -configure:8409: result: yes -configure:8423: checking for dlfcn.h -configure:8423: gcc -c -g -O2 conftest.c >&5 -configure:8423: $? = 0 -configure:8423: result: yes -configure:8688: checking for objdir -configure:8703: result: .libs -configure:8963: checking if gcc supports -fno-rtti -fno-exceptions -configure:8981: 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:8985: $? = 0 -configure:8998: result: no -configure:9356: checking for gcc option to produce PIC -configure:9363: result: -fPIC -DPIC -configure:9371: checking if gcc PIC flag -fPIC -DPIC works -configure:9389: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 -configure:9393: $? = 0 -configure:9406: result: yes -configure:9435: checking if gcc static flag -static works -configure:9463: result: yes -configure:9478: checking if gcc supports -c -o file.o -configure:9499: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 -configure:9503: $? = 0 -configure:9525: result: yes -configure:9533: checking if gcc supports -c -o file.o -configure:9580: result: yes -configure:9613: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries -configure:10876: result: yes -configure:10913: checking whether -lc should be explicitly linked in -configure:10921: gcc -c -g -O2 conftest.c >&5 -configure:10924: $? = 0 -configure:10939: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 -configure:10942: $? = 0 -configure:10956: result: no -configure:11116: checking dynamic linker characteristics -configure:11697: gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 -configure:11697: $? = 0 -configure:11946: result: GNU/Linux ld.so -configure:12068: checking how to hardcode library paths into programs -configure:12093: result: immediate -configure:12195: checking for shl_load -configure:12195: gcc -o conftest -g -O2 conftest.c >&5 -/tmp/ccgmhRVU.o: In function `main': -/home/xavier/sdcc/sim/ucsim/conftest.c:60: undefined reference to `shl_load' -collect2: error: ld returned 1 exit status -configure:12195: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 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:12195: result: no -configure:12199: checking for shl_load in -ldld -configure:12224: gcc -o conftest -g -O2 conftest.c -ldld >&5 -/usr/bin/ld: cannot find -ldld -collect2: error: ld returned 1 exit status -configure:12224: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 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:12233: result: no -configure:12238: checking for dlopen -configure:12238: gcc -o conftest -g -O2 conftest.c >&5 -/tmp/cciKE37Y.o: In function `main': -/home/xavier/sdcc/sim/ucsim/conftest.c:60: undefined reference to `dlopen' -collect2: error: ld returned 1 exit status -configure:12238: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 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:12238: result: no -configure:12242: checking for dlopen in -ldl -configure:12267: gcc -o conftest -g -O2 conftest.c -ldl >&5 -configure:12267: $? = 0 -configure:12276: result: yes -configure:12395: checking whether a program can dlopen itself -configure:12475: gcc -o conftest -g -O2 -DHAVE_DLFCN_H -Wl,--export-dynamic conftest.c -ldl >&5 -configure:12478: $? = 0 -configure:12496: result: yes -configure:12501: checking whether a statically linked program can dlopen itself -configure:12581: gcc -o conftest -g -O2 -DHAVE_DLFCN_H -Wl,--export-dynamic -static conftest.c -ldl >&5 -/tmp/ccPcwB98.o: In function `main': -/home/xavier/sdcc/sim/ucsim/configure:12560: warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -configure:12584: $? = 0 -conftest: undefined symbol: _fnord -configure:12602: result: no -configure:12641: checking whether stripping libraries is possible -configure:12646: result: yes -configure:12681: checking if libtool supports shared libraries -configure:12683: result: yes -configure:12686: checking whether to build shared libraries -configure:12711: result: yes -configure:12714: checking whether to build static libraries -configure:12718: result: yes -configure:12741: checking how to run the C++ preprocessor -configure:12807: result: g++ -E -configure:12827: g++ -E conftest.cpp -configure:12827: $? = 0 -configure:12841: g++ -E conftest.cpp -conftest.cpp:26:10: fatal error: ac_nonexistent.h: No such file or directory - #include <ac_nonexistent.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:12841: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| /* end confdefs.h. */ -| #include <ac_nonexistent.h> -configure:13003: checking for ld used by g++ -configure:13070: result: /usr/bin/ld -m elf_x86_64 -configure:13077: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld -configure:13092: result: yes -configure:13147: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries -configure:14220: result: yes -configure:14256: g++ -c -g -O2 conftest.cpp >&5 -configure:14259: $? = 0 -configure:14740: checking for g++ option to produce PIC -configure:14747: result: -fPIC -DPIC -configure:14755: checking if g++ PIC flag -fPIC -DPIC works -configure:14773: g++ -c -g -O2 -fPIC -DPIC -DPIC conftest.cpp >&5 -configure:14777: $? = 0 -configure:14790: result: yes -configure:14813: checking if g++ static flag -static works -configure:14841: result: yes -configure:14853: checking if g++ supports -c -o file.o -configure:14874: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5 -configure:14878: $? = 0 -configure:14900: result: yes -configure:14905: checking if g++ supports -c -o file.o -configure:14952: result: yes -configure:14982: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries -configure:15025: result: yes -configure:15166: checking dynamic linker characteristics -configure:15923: result: GNU/Linux ld.so -configure:15988: checking how to hardcode library paths into programs -configure:16013: result: immediate -configure:16080: checking for flex -configure:16096: found /usr/bin/flex -configure:16107: result: flex -configure:16145: flex conftest.l -configure:16149: $? = 0 -configure:16151: checking lex output file root -configure:16165: result: lex.yy -configure:16170: checking lex library -configure:16184: gcc -o conftest -g -O2 conftest.c >&5 -/tmp/ccIz3HCL.o: In function `input': -/home/xavier/sdcc/sim/ucsim/lex.yy.c:1180: undefined reference to `yywrap' -/tmp/ccIz3HCL.o: In function `yylex': -/home/xavier/sdcc/sim/ucsim/lex.yy.c:871: undefined reference to `yywrap' -/tmp/ccIz3HCL.o: In function `main': -/home/xavier/sdcc/sim/ucsim/conftest.l:17: undefined reference to `yywrap' -collect2: error: ld returned 1 exit status -configure:16184: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| /* 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" -| { /* IRIX 6.5 flex 2.5.4 underquotes its yyless argument. */ -| yyless ((input () != 0)); } -| YY_BREAK -| case 6: -| YY_RULE_SETUP -| #line 8 "conftest.l" -| { unput (yytext[0]); } -| YY_BREAK -| case 7: -| YY_RULE_SETUP -| #line 9 "conftest.l" -| { BEGIN INITIAL; } -| YY_BREAK -| case 8: -| YY_RULE_SETUP -| #line 10 "conftest.l" -| ECHO; -| YY_BREAK -| #line 794 "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 10 "conftest.l" -| -| #ifdef YYTEXT_POINTER -| extern char *yytext; -| #endif -| int -| main (void) -| { -| return ! yylex () + ! yywrap (); -| } -configure:16184: gcc -o conftest -g -O2 conftest.c -lfl >&5 -configure:16184: $? = 0 -configure:16194: result: -lfl -configure:16200: checking whether yytext is a pointer -configure:16217: gcc -o conftest -g -O2 conftest.c -lfl >&5 -configure:16217: $? = 0 -configure:16225: result: yes -configure:16244: checking for bison -configure:16260: found /usr/bin/bison -configure:16271: result: bison -y -configure:16300: checking for ANSI C header files -configure:16404: result: yes -configure:16415: checking endian.h usability -configure:16415: g++ -c -g -O2 conftest.cpp >&5 -configure:16415: $? = 0 -configure:16415: result: yes -configure:16415: checking endian.h presence -configure:16415: g++ -E conftest.cpp -configure:16415: $? = 0 -configure:16415: result: yes -configure:16415: checking for endian.h -configure:16415: result: yes -configure:16415: checking sys/endian.h usability -configure:16415: g++ -c -g -O2 conftest.cpp >&5 -conftest.cpp:63:10: fatal error: sys/endian.h: No such file or directory - #include <sys/endian.h> - ^~~~~~~~~~~~~~ -compilation terminated. -configure:16415: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_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 <sys/endian.h> -configure:16415: result: no -configure:16415: checking sys/endian.h presence -configure:16415: g++ -E conftest.cpp -conftest.cpp:30:10: fatal error: sys/endian.h: No such file or directory - #include <sys/endian.h> - ^~~~~~~~~~~~~~ -compilation terminated. -configure:16415: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_H 1 -| /* end confdefs.h. */ -| #include <sys/endian.h> -configure:16415: result: no -configure:16415: checking for sys/endian.h -configure:16415: result: no -configure:16415: checking machine/endian.h usability -configure:16415: g++ -c -g -O2 conftest.cpp >&5 -conftest.cpp:63:10: fatal error: machine/endian.h: No such file or directory - #include <machine/endian.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:16415: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_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 <machine/endian.h> -configure:16415: result: no -configure:16415: checking machine/endian.h presence -configure:16415: g++ -E conftest.cpp -conftest.cpp:30:10: fatal error: machine/endian.h: No such file or directory - #include <machine/endian.h> - ^~~~~~~~~~~~~~~~~~ -compilation terminated. -configure:16415: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_H 1 -| /* end confdefs.h. */ -| #include <machine/endian.h> -configure:16415: result: no -configure:16415: checking for machine/endian.h -configure:16415: result: no -configure:16415: checking sys/isa_defs.h usability -configure:16415: g++ -c -g -O2 conftest.cpp >&5 -conftest.cpp:63:10: fatal error: sys/isa_defs.h: No such file or directory - #include <sys/isa_defs.h> - ^~~~~~~~~~~~~~~~ -compilation terminated. -configure:16415: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_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 <sys/isa_defs.h> -configure:16415: result: no -configure:16415: checking sys/isa_defs.h presence -configure:16415: g++ -E conftest.cpp -conftest.cpp:30:10: fatal error: sys/isa_defs.h: No such file or directory - #include <sys/isa_defs.h> - ^~~~~~~~~~~~~~~~ -compilation terminated. -configure:16415: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_H 1 -| /* end confdefs.h. */ -| #include <sys/isa_defs.h> -configure:16415: result: no -configure:16415: checking for sys/isa_defs.h -configure:16415: result: no -configure:16427: checking getopt.h usability -configure:16427: g++ -c -g -O2 conftest.cpp >&5 -configure:16427: $? = 0 -configure:16427: result: yes -configure:16427: checking getopt.h presence -configure:16427: g++ -E conftest.cpp -configure:16427: $? = 0 -configure:16427: result: yes -configure:16427: checking for getopt.h -configure:16427: result: yes -configure:16439: checking for unistd.h -configure:16439: result: yes -configure:16451: checking termios.h usability -configure:16451: g++ -c -g -O2 conftest.cpp >&5 -configure:16451: $? = 0 -configure:16451: result: yes -configure:16451: checking termios.h presence -configure:16451: g++ -E conftest.cpp -configure:16451: $? = 0 -configure:16451: result: yes -configure:16451: checking for termios.h -configure:16451: result: yes -configure:16462: checking curses.h usability -configure:16462: g++ -c -g -O2 conftest.cpp >&5 -configure:16462: $? = 0 -configure:16462: result: yes -configure:16462: checking curses.h presence -configure:16462: g++ -E conftest.cpp -configure:16462: $? = 0 -configure:16462: result: yes -configure:16462: checking for curses.h -configure:16462: result: yes -configure:16476: checking sys/socket.h usability -configure:16476: g++ -c -g -O2 conftest.cpp >&5 -configure:16476: $? = 0 -configure:16476: result: yes -configure:16476: checking sys/socket.h presence -configure:16476: g++ -E conftest.cpp -configure:16476: $? = 0 -configure:16476: result: yes -configure:16476: checking for sys/socket.h -configure:16476: result: yes -conftest.cpp:37:25: warning: extra tokens at end of #include directive - #include <<sys/socket.h>> - ^ -conftest.cpp:37:10: fatal error: <sys/socket.h: No such file or directory - #include <<sys/socket.h>> - ^~~~~~~~~~~~~~~ -compilation terminated. -configure:16548: checking for dlfcn.h -configure:16548: result: yes -configure:16557: checking for dirent.h that defines DIR -configure:16576: g++ -c -g -O2 conftest.cpp >&5 -configure:16576: $? = 0 -configure:16584: result: yes -configure:16597: checking for library containing opendir -configure:16628: g++ -o conftest -g -O2 conftest.cpp >&5 -configure:16628: $? = 0 -configure:16645: result: none required -configure:16715: checking which header file defines FD_ macros -conftest.cpp:41:10: fatal error: winsock2.h: No such file or directory - #include <winsock2.h> - ^~~~~~~~~~~~ -compilation terminated. -configure:16778: result: <sys/select.h> -configure:16840: checking for socket in -lsocket -configure:16865: g++ -o conftest -g -O2 conftest.cpp -lsocket >&5 -/usr/bin/ld: cannot find -lsocket -collect2: error: ld returned 1 exit status -configure:16865: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_H 1 -| #define HAVE_GETOPT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_CURSES_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define SOCKET_AVAIL 1 -| #define UCSOCKET_T int -| #define SOCKLEN_T uint -| #define HEADER_SOCKET <sys/socket.h> -| #define HAVE_DIRENT_H 1 -| #define FD_NEED_TIME_H 0 -| #define FD_NEED_TYPES_H 0 -| #define FD_NEED_SELECT_H 1 -| #define FD_NEED_WINSOCK2_H 0 -| #define FD_HEADER_OK 1 -| #define HEADER_FD <sys/select.h> -| /* 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 socket (); -| int -| main () -| { -| return socket (); -| ; -| return 0; -| } -configure:16874: result: no -configure:16885: checking for xdr_short in -lnsl -configure:16910: g++ -o conftest -g -O2 conftest.cpp -lnsl >&5 -configure:16910: $? = 0 -configure:16919: result: yes -configure:16930: checking for nanosleep in -lrt -configure:16955: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5 -configure:16955: $? = 0 -configure:16964: result: yes -configure:16977: checking for dlopen in -ldl -configure:17011: result: yes -configure:17042: checking for panel_above in -lpanel -configure:17067: g++ -o conftest -g -O2 conftest.cpp -lpanel -lrt -lnsl >&5 -configure:17067: $? = 0 -configure:17076: result: yes -configure:17090: checking for nl in -lcurses -configure:17115: g++ -o conftest -g -O2 conftest.cpp -lcurses -lrt -lnsl >&5 -configure:17115: $? = 0 -configure:17124: result: yes -configure:17188: checking for vasprintf -configure:17188: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5 -configure:17188: $? = 0 -configure:17188: result: yes -configure:17200: checking for strerror -configure:17200: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5 -configure:17200: $? = 0 -configure:17200: result: yes -configure:17200: checking for strdup -configure:17200: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5 -conftest.cpp:73:6: warning: declaration of 'char strdup()' conflicts with built-in declaration 'char* strdup(const char*)' [-Wbuiltin-declaration-mismatch] - char strdup (); - ^~~~~~ -configure:17200: $? = 0 -configure:17200: result: yes -configure:17211: checking for yylex -configure:17211: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5 -/tmp/ccu7HmMR.o: In function `main': -/home/xavier/sdcc/sim/ucsim/conftest.cpp:85: undefined reference to `yylex' -collect2: error: ld returned 1 exit status -configure:17211: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_H 1 -| #define HAVE_GETOPT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_CURSES_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define SOCKET_AVAIL 1 -| #define UCSOCKET_T int -| #define SOCKLEN_T uint -| #define HEADER_SOCKET <sys/socket.h> -| #define HAVE_DIRENT_H 1 -| #define FD_NEED_TIME_H 0 -| #define FD_NEED_TYPES_H 0 -| #define FD_NEED_SELECT_H 1 -| #define FD_NEED_WINSOCK2_H 0 -| #define FD_HEADER_OK 1 -| #define HEADER_FD <sys/select.h> -| #define HAVE_LIBNSL 1 -| #define HAVE_LIBRT 1 -| #define HAVE_VASPRINTF 1 -| #define HAVE_STRERROR 1 -| #define HAVE_STRDUP 1 -| /* end confdefs.h. */ -| /* Define yylex to an innocuous variant, in case <limits.h> declares yylex. -| For example, HP-UX 11i <limits.h> declares gettimeofday. */ -| #define yylex innocuous_yylex -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char yylex (); 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 yylex -| -| /* 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 yylex (); -| /* 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_yylex || defined __stub___yylex -| choke me -| #endif -| -| int -| main () -| { -| return yylex (); -| ; -| return 0; -| } -configure:17211: result: no -configure:17221: checking whether scanf knows %a -configure:17250: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5 -conftest.cpp:53:15: error: '::main' must return 'int' - void main(void) - ^ -conftest.cpp: In function 'int main()': -conftest.cpp:59:5: error: 'exit' was not declared in this scope - exit(1); - ^~~~ -conftest.cpp:60:31: warning: format '%a' expects argument of type 'float*', but argument 3 has type 'char**' [-Wformat=] - i= fscanf(f, " %a[a-z] ", &a); - ~~^ -conftest.cpp:63:5: error: 'exit' was not declared in this scope - exit(2); - ^~~~ -conftest.cpp:65:5: error: 'exit' was not declared in this scope - exit(0); - ^~~~ -conftest.cpp:66:3: error: 'exit' was not declared in this scope - exit(3); - ^~~~ -configure:17250: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_H 1 -| #define HAVE_GETOPT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_CURSES_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define SOCKET_AVAIL 1 -| #define UCSOCKET_T int -| #define SOCKLEN_T uint -| #define HEADER_SOCKET <sys/socket.h> -| #define HAVE_DIRENT_H 1 -| #define FD_NEED_TIME_H 0 -| #define FD_NEED_TYPES_H 0 -| #define FD_NEED_SELECT_H 1 -| #define FD_NEED_WINSOCK2_H 0 -| #define FD_HEADER_OK 1 -| #define HEADER_FD <sys/select.h> -| #define HAVE_LIBNSL 1 -| #define HAVE_LIBRT 1 -| #define HAVE_VASPRINTF 1 -| #define HAVE_STRERROR 1 -| #define HAVE_STRDUP 1 -| /* end confdefs.h. */ -| -| #include <stdio.h> -| void main(void) -| { -| FILE *f; -| char *a; -| int i; -| if ((f= fopen("conftest.data", "r")) == NULL) -| exit(1); -| i= fscanf(f, " %a[a-z] ", &a); -| fclose(f); -| if (i == 0) -| exit(2); -| if (i == 1) -| exit(0); -| exit(3); -| } -configure:17261: result: no -configure:17269: checking whether getcwd is GNUish -configure:17288: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5 -conftest.cpp:53:15: error: '::main' must return 'int' - void main(void) - ^ -conftest.cpp: In function 'int main()': -conftest.cpp:56:5: error: 'exit' was not declared in this scope - exit(1); - ^~~~ -conftest.cpp:56:5: note: suggested alternative: '_exit' - exit(1); - ^~~~ - _exit -conftest.cpp:57:3: error: 'exit' was not declared in this scope - exit(0); - ^~~~ -conftest.cpp:57:3: note: suggested alternative: '_exit' - exit(0); - ^~~~ - _exit -configure:17288: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_H 1 -| #define HAVE_GETOPT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_CURSES_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define SOCKET_AVAIL 1 -| #define UCSOCKET_T int -| #define SOCKLEN_T uint -| #define HEADER_SOCKET <sys/socket.h> -| #define HAVE_DIRENT_H 1 -| #define FD_NEED_TIME_H 0 -| #define FD_NEED_TYPES_H 0 -| #define FD_NEED_SELECT_H 1 -| #define FD_NEED_WINSOCK2_H 0 -| #define FD_HEADER_OK 1 -| #define HEADER_FD <sys/select.h> -| #define HAVE_LIBNSL 1 -| #define HAVE_LIBRT 1 -| #define HAVE_VASPRINTF 1 -| #define HAVE_STRERROR 1 -| #define HAVE_STRDUP 1 -| /* end confdefs.h. */ -| -| #include <unistd.h> -| void main(void) -| { -| if ((getcwd(NULL, 0)) == NULL) -| exit(1); -| exit(0); -| } -configure:17299: result: no -configure:17310: checking for type of length pointer parameter of accept -configure:17331: g++ -c -g -O2 -DACCEPT_SOCKLEN_T=int conftest.cpp >&5 -conftest.cpp: In function 'int main()': -conftest.cpp:56:44: error: invalid conversion from 'int*' to 'socklen_t* {aka unsigned int*}' [-fpermissive] - struct sockaddr a; int len; accept (0, &a, &len); - ^~~~ -In file included from conftest.cpp:52:0: -/usr/include/x86_64-linux-gnu/sys/socket.h:232:12: note: initializing argument 3 of 'int accept(int, sockaddr*, socklen_t*)' - extern int accept (int __fd, __SOCKADDR_ARG __addr, - ^~~~~~ -configure:17331: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_H 1 -| #define HAVE_GETOPT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_CURSES_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define SOCKET_AVAIL 1 -| #define UCSOCKET_T int -| #define SOCKLEN_T uint -| #define HEADER_SOCKET <sys/socket.h> -| #define HAVE_DIRENT_H 1 -| #define FD_NEED_TIME_H 0 -| #define FD_NEED_TYPES_H 0 -| #define FD_NEED_SELECT_H 1 -| #define FD_NEED_WINSOCK2_H 0 -| #define FD_HEADER_OK 1 -| #define HEADER_FD <sys/select.h> -| #define HAVE_LIBNSL 1 -| #define HAVE_LIBRT 1 -| #define HAVE_VASPRINTF 1 -| #define HAVE_STRERROR 1 -| #define HAVE_STRDUP 1 -| /* end confdefs.h. */ -| #include <sys/types.h> -| #include <sys/socket.h> -| int -| main () -| { -| struct sockaddr a; int len; accept (0, &a, &len); -| ; -| return 0; -| } -configure:17331: g++ -c -g -O2 -DACCEPT_SOCKLEN_T=size_t conftest.cpp >&5 -conftest.cpp: In function 'int main()': -conftest.cpp:56:51: error: cannot convert 'size_t* {aka long unsigned int*}' to 'socklen_t* {aka unsigned int*}' for argument '3' to 'int accept(int, sockaddr*, socklen_t*)' - struct sockaddr a; size_t len; accept (0, &a, &len); - ^ -configure:17331: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_H 1 -| #define HAVE_GETOPT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_CURSES_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define SOCKET_AVAIL 1 -| #define UCSOCKET_T int -| #define SOCKLEN_T uint -| #define HEADER_SOCKET <sys/socket.h> -| #define HAVE_DIRENT_H 1 -| #define FD_NEED_TIME_H 0 -| #define FD_NEED_TYPES_H 0 -| #define FD_NEED_SELECT_H 1 -| #define FD_NEED_WINSOCK2_H 0 -| #define FD_HEADER_OK 1 -| #define HEADER_FD <sys/select.h> -| #define HAVE_LIBNSL 1 -| #define HAVE_LIBRT 1 -| #define HAVE_VASPRINTF 1 -| #define HAVE_STRERROR 1 -| #define HAVE_STRDUP 1 -| /* end confdefs.h. */ -| #include <sys/types.h> -| #include <sys/socket.h> -| int -| main () -| { -| struct sockaddr a; size_t len; accept (0, &a, &len); -| ; -| return 0; -| } -configure:17331: g++ -c -g -O2 -DACCEPT_SOCKLEN_T=socklen_t conftest.cpp >&5 -configure:17331: $? = 0 -configure:17338: result: socklen_t -configure:17380: checking whether byte ordering is bigendian -configure:17395: g++ -c -g -O2 conftest.cpp >&5 -conftest.cpp:53:9: error: expected unqualified-id before 'not' token - not a universal capable compiler - ^~~ -configure:17395: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_H 1 -| #define HAVE_GETOPT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_CURSES_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define SOCKET_AVAIL 1 -| #define UCSOCKET_T int -| #define SOCKLEN_T uint -| #define HEADER_SOCKET <sys/socket.h> -| #define HAVE_DIRENT_H 1 -| #define FD_NEED_TIME_H 0 -| #define FD_NEED_TYPES_H 0 -| #define FD_NEED_SELECT_H 1 -| #define FD_NEED_WINSOCK2_H 0 -| #define FD_HEADER_OK 1 -| #define HEADER_FD <sys/select.h> -| #define HAVE_LIBNSL 1 -| #define HAVE_LIBRT 1 -| #define HAVE_VASPRINTF 1 -| #define HAVE_STRERROR 1 -| #define HAVE_STRDUP 1 -| #define ACCEPT_SOCKLEN_T socklen_t -| /* end confdefs.h. */ -| #ifndef __APPLE_CC__ -| not a universal capable compiler -| #endif -| typedef int dummy; -| -configure:17440: g++ -c -g -O2 conftest.cpp >&5 -configure:17440: $? = 0 -configure:17458: g++ -c -g -O2 conftest.cpp >&5 -conftest.cpp: In function 'int main()': -conftest.cpp:59:8: error: 'big' was not declared in this scope - not big endian - ^~~ -configure:17458: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_H 1 -| #define HAVE_GETOPT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_CURSES_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define SOCKET_AVAIL 1 -| #define UCSOCKET_T int -| #define SOCKLEN_T uint -| #define HEADER_SOCKET <sys/socket.h> -| #define HAVE_DIRENT_H 1 -| #define FD_NEED_TIME_H 0 -| #define FD_NEED_TYPES_H 0 -| #define FD_NEED_SELECT_H 1 -| #define FD_NEED_WINSOCK2_H 0 -| #define FD_HEADER_OK 1 -| #define HEADER_FD <sys/select.h> -| #define HAVE_LIBNSL 1 -| #define HAVE_LIBRT 1 -| #define HAVE_VASPRINTF 1 -| #define HAVE_STRERROR 1 -| #define HAVE_STRDUP 1 -| #define ACCEPT_SOCKLEN_T socklen_t -| /* 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:17586: result: no -configure:17609: checking whether preprocessor accepts -MM or -M -Using built-in specs. -COLLECT_GCC=g++ -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) -COLLECT_GCC_OPTIONS='-E' '-v' '-MM' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -E -quiet -v -imultiarch x86_64-linux-gnu -MM -D_GNU_SOURCE _test_.c -mtune=generic -march=x86-64 -fstack-protector-strong -Wformat -Wformat-security -ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7" -ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/include/c++/7 - /usr/include/x86_64-linux-gnu/c++/7 - /usr/include/c++/7/backward - /usr/lib/gcc/x86_64-linux-gnu/7/include - /usr/local/include - /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -_test_.o: _test_.c -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-E' '-v' '-MM' '-shared-libgcc' '-mtune=generic' '-march=x86-64' -configure:17624: result: -MM -configure:17632: checking whether C++ accepts -ggdb -configure:17652: g++ -c -ggdb conftest.cpp >&5 -configure:17652: $? = 0 -configure:17661: result: yes -configure:17668: checking whether C++ accepts -gstabs -configure:17688: g++ -c -gstabs conftest.cpp >&5 -configure:17688: $? = 0 -configure:17697: result: yes -configure:17717: checking whether C++ accepts -pipe -configure:17737: g++ -c -pipe conftest.cpp >&5 -configure:17737: $? = 0 -configure:17746: result: yes -configure:17813: checking return type of signal handlers -configure:17831: g++ -c -g -O2 -g conftest.cpp >&5 -conftest.cpp: In function 'int main()': -conftest.cpp:58:25: error: void value not ignored as it ought to be - return *(signal (0, 0)) (0) == 1; - ~~~~~~~~~~~~~~~~^~~ -configure:17831: $? = 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 VERSIONSTR "0.6-pre56" -| #define VERSIONHI 0 -| #define VERSIONLO 6-pre56 -| #define VERSIONP -| #define STATISTIC no -| #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 HAVE_DLFCN_H 1 -| #define LT_OBJDIR ".libs/" -| #define YYTEXT_POINTER 1 -| #define HAVE_FLEX 1 -| #define STDC_HEADERS 1 -| #define HAVE_ENDIAN_H 1 -| #define HAVE_GETOPT_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_CURSES_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define SOCKET_AVAIL 1 -| #define UCSOCKET_T int -| #define SOCKLEN_T uint -| #define HEADER_SOCKET <sys/socket.h> -| #define HAVE_DIRENT_H 1 -| #define FD_NEED_TIME_H 0 -| #define FD_NEED_TYPES_H 0 -| #define FD_NEED_SELECT_H 1 -| #define FD_NEED_WINSOCK2_H 0 -| #define FD_HEADER_OK 1 -| #define HEADER_FD <sys/select.h> -| #define HAVE_LIBNSL 1 -| #define HAVE_LIBRT 1 -| #define HAVE_VASPRINTF 1 -| #define HAVE_STRERROR 1 -| #define HAVE_STRDUP 1 -| #define ACCEPT_SOCKLEN_T socklen_t -| /* end confdefs.h. */ -| #include <sys/types.h> -| #include <signal.h> -| -| int -| main () -| { -| return *(signal (0, 0)) (0) == 1; -| ; -| return 0; -| } -configure:17838: result: void -configure:17851: checking size of char -configure:17856: g++ -o conftest -g -O2 -g conftest.cpp -lrt -lnsl >&5 -configure:17856: $? = 0 -configure:17856: ./conftest -configure:17856: $? = 0 -configure:17870: result: 1 -configure:17884: checking size of short -configure:17889: g++ -o conftest -g -O2 -g conftest.cpp -lrt -lnsl >&5 -configure:17889: $? = 0 -configure:17889: ./conftest -configure:17889: $? = 0 -configure:17903: result: 2 -configure:17917: checking size of int -configure:17922: g++ -o conftest -g -O2 -g conftest.cpp -lrt -lnsl >&5 -configure:17922: $? = 0 -configure:17922: ./conftest -configure:17922: $? = 0 -configure:17936: result: 4 -configure:17950: checking size of long -configure:17955: g++ -o conftest -g -O2 -g conftest.cpp -lrt -lnsl >&5 -configure:17955: $? = 0 -configure:17955: ./conftest -configure:17955: $? = 0 -configure:17969: result: 8 -configure:17983: checking size of long long -configure:17988: g++ -o conftest -g -O2 -g conftest.cpp -lrt -lnsl >&5 -configure:17988: $? = 0 -configure:17988: ./conftest -configure:17988: $? = 0 -configure:18002: result: 8 -configure:18075: checking type name for byte -configure:18078: result: char -configure:18080: checking specifier for byte -configure:18083: result: "" -configure:18085: checking type name for word -configure:18088: result: short -configure:18090: checking specifier for word -configure:18093: result: "h" -configure:18095: checking type name for dword -configure:18098: result: int -configure:18100: checking specifier for dword -configure:18103: result: "" -configure:18105: checking type name for qword -configure:18108: result: long -configure:18110: checking specifier for qword -configure:18113: result: "l" -configure:18307: 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:1208: creating Makefile -config.status:1208: creating main.mk -config.status:1208: creating packages.mk -config.status:1208: creating sim.src/Makefile -config.status:1208: creating cmd.src/Makefile -config.status:1208: creating s51.src/Makefile -config.status:1208: creating avr.src/Makefile -config.status:1208: creating z80.src/Makefile -config.status:1208: creating tlcs.src/Makefile -config.status:1208: creating hc08.src/Makefile -config.status:1208: creating xa.src/Makefile -config.status:1208: creating stm8.src/Makefile -config.status:1208: creating pdk.src/Makefile -config.status:1208: creating st7.src/Makefile -config.status:1208: creating gui.src/Makefile -config.status:1208: creating gui.src/serio.src/Makefile -config.status:1208: creating doc/Makefile -config.status:1208: creating ddconfig.h -config.status:1383: ddconfig.h is unchanged -config.status:1397: executing libtool commands - -## ---------------- ## -## Cache variables. ## -## ---------------- ## - -ac_cv_build=x86_64-pc-linux-gnu -ac_cv_c_bigendian=no -ac_cv_c_compiler_gnu=yes -ac_cv_cxx_compiler_gnu=yes -ac_cv_env_CCC_set= -ac_cv_env_CCC_value= -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_CXXCPP_set= -ac_cv_env_CXXCPP_value= -ac_cv_env_CXXFLAGS_set= -ac_cv_env_CXXFLAGS_value= -ac_cv_env_CXX_set= -ac_cv_env_CXX_value= -ac_cv_env_LDFLAGS_set= -ac_cv_env_LDFLAGS_value= -ac_cv_env_LIBS_set= -ac_cv_env_LIBS_value= -ac_cv_env_LT_SYS_LIBRARY_PATH_set= -ac_cv_env_LT_SYS_LIBRARY_PATH_value= -ac_cv_env_YACC_set= -ac_cv_env_YACC_value= -ac_cv_env_YFLAGS_set= -ac_cv_env_YFLAGS_value= -ac_cv_env_build_alias_set= -ac_cv_env_build_alias_value= -ac_cv_env_docdir_set=set -ac_cv_env_docdir_value='${datarootdir}/doc/${PACKAGE}' -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_dlopen=no -ac_cv_func_shl_load=no -ac_cv_func_strdup=yes -ac_cv_func_strerror=yes -ac_cv_func_vasprintf=yes -ac_cv_func_yylex=no -ac_cv_header_curses_h=yes -ac_cv_header_dirent_dirent_h=yes -ac_cv_header_dlfcn_h=yes -ac_cv_header_endian_h=yes -ac_cv_header_getopt_h=yes -ac_cv_header_inttypes_h=yes -ac_cv_header_machine_endian_h=no -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_endian_h=no -ac_cv_header_sys_isa_defs_h=no -ac_cv_header_sys_socket_h=yes -ac_cv_header_sys_stat_h=yes -ac_cv_header_sys_types_h=yes -ac_cv_header_termios_h=yes -ac_cv_header_unistd_h=yes -ac_cv_host=x86_64-pc-linux-gnu -ac_cv_lib_curses_nl=yes -ac_cv_lib_dl_dlopen=yes -ac_cv_lib_dld_shl_load=no -ac_cv_lib_lex=-lfl -ac_cv_lib_nsl_xdr_short=yes -ac_cv_lib_panel_panel_above=yes -ac_cv_lib_rt_nanosleep=yes -ac_cv_lib_socket_socket=no -ac_cv_objext=o -ac_cv_path_EGREP='/bin/grep -E' -ac_cv_path_FGREP='/bin/grep -F' -ac_cv_path_GREP=/bin/grep -ac_cv_path_SED=/bin/sed -ac_cv_path_install='/usr/bin/install -c' -ac_cv_path_lt_DD=/bin/dd -ac_cv_prog_AWK=gawk -ac_cv_prog_CPP='gcc -E' -ac_cv_prog_CXXCPP='g++ -E' -ac_cv_prog_LEX=flex -ac_cv_prog_YACC='bison -y' -ac_cv_prog_ac_ct_AR=ar -ac_cv_prog_ac_ct_CC=gcc -ac_cv_prog_ac_ct_CXX=g++ -ac_cv_prog_ac_ct_MANIFEST_TOOL=mt -ac_cv_prog_ac_ct_OBJDUMP=objdump -ac_cv_prog_ac_ct_RANLIB=ranlib -ac_cv_prog_ac_ct_STRIP=strip -ac_cv_prog_cc_c89= -ac_cv_prog_cc_g=yes -ac_cv_prog_cxx_g=yes -ac_cv_prog_lex_root=lex.yy -ac_cv_prog_lex_yytext_pointer=yes -ac_cv_search_opendir='none required' -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 -ac_cv_type_signal=void -lt_cv_ar_at_file=@ -lt_cv_archive_cmds_need_lc=no -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=/usr/bin/ld -lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64' -lt_cv_path_NM='/usr/bin/nm -B' -lt_cv_path_mainfest_tool=no -lt_cv_prog_compiler_c_o=yes -lt_cv_prog_compiler_c_o_CXX=yes -lt_cv_prog_compiler_pic='-fPIC -DPIC' -lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC' -lt_cv_prog_compiler_pic_works=yes -lt_cv_prog_compiler_pic_works_CXX=yes -lt_cv_prog_compiler_rtti_exceptions=no -lt_cv_prog_compiler_static_works=yes -lt_cv_prog_compiler_static_works_CXX=yes -lt_cv_prog_gnu_ld=yes -lt_cv_prog_gnu_ldcxx=yes -lt_cv_sharedlib_from_linklib_cmd='printf %s\n' -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'\'' | sed '\''/ __gnu_lto/d'\''' -lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' -lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' -lt_cv_sys_global_symbol_to_import= -lt_cv_sys_max_cmd_len=1572864 -lt_cv_to_host_file_cmd=func_convert_file_noop -lt_cv_to_tool_file_cmd=func_convert_file_noop -lt_cv_truncate_bin='/bin/dd bs=4096 count=1' -sdcc_cv_cxx_ggdb=yes -sdcc_cv_cxx_gstabs=yes -sdcc_cv_cxx_pipe=yes -ucsim_cv_MM=-MM -ucsim_cv_accept_length_type=socklen_t -ucsim_cv_fd='<sys/select.h>' -ucsim_cv_getcwd=no -ucsim_cv_header_ok=1 -ucsim_cv_scanf_a=no -ucsim_cv_socket='<sys/socket.h>' - -## ----------------- ## -## Output variables. ## -## ----------------- ## - -AR='ar' -AWK='gawk' -CC='gcc' -CFLAGS='-g -O2' -CPP='gcc -E' -CPPFLAGS='' -CURSES_LIBS='-lpanel -lcurses' -CXX='g++' -CXXCPP='g++ -E' -CXXFLAGS='-g -O2 -g' -DEFS='-DHAVE_CONFIG_H' -DL='-ldl' -DLLTOOL='false' -DSYMUTIL='' -DUMPBIN='' -ECHO_C='' -ECHO_N='-n' -ECHO_T='' -EGREP='/bin/grep -E' -EXEEXT='' -FGREP='/bin/grep -F' -GREP='/bin/grep' -INSTALL_DATA='${INSTALL} -m 644' -INSTALL_PROGRAM='${INSTALL}' -INSTALL_SCRIPT='${INSTALL}' -LD='/usr/bin/ld -m elf_x86_64' -LDFLAGS='' -LEX='flex' -LEXLIB='-lfl' -LEX_OUTPUT_ROOT='lex.yy' -LIBOBJS='' -LIBS='-lrt -lnsl ' -LIBTOOL='$(SHELL) $(top_builddir)/libtool' -LIBTOOL_DEPS='./ltmain.sh' -LIPO='' -LN_S='ln -s' -LTLIBOBJS='' -LT_SYS_LIBRARY_PATH='' -MAKEDEP='g++ -MM' -MANIFEST_TOOL=':' -NM='/usr/bin/nm -B' -NMEDIT='' -OBJDUMP='objdump' -OBJEXT='o' -OTOOL64='' -OTOOL='' -PACKAGE_BUGREPORT='' -PACKAGE_NAME='' -PACKAGE_STRING='' -PACKAGE_TARNAME='' -PACKAGE_URL='' -PACKAGE_VERSION='' -PATH_SEPARATOR=':' -PICOPT=' -fPIC -DPIC' -RANLIB='ranlib' -SED='/bin/sed' -SHAREDLIB='yes' -SHELL='/bin/bash' -SREC_CAT='' -STRIP='strip' -VERSION='0.6-pre56' -VERSIONHI='0' -VERSIONLO='6-pre56' -VERSIONP='' -WALL_FLAG='-Wall' -WINSOCK_AVAIL='0' -YACC='bison -y' -YFLAGS='' -ac_ct_AR='ar' -ac_ct_CC='gcc' -ac_ct_CXX='g++' -ac_ct_DUMPBIN='' -bindir='${exec_prefix}/bin' -build='x86_64-pc-linux-gnu' -build_alias='' -build_cpu='x86_64' -build_os='linux-gnu' -build_vendor='pc' -curses_ok='yes' -datadir='${datarootdir}' -datarootdir='${prefix}/share' -dl_ok='yes' -dlso_ok='no' -docdir='${datarootdir}/doc/${PACKAGE}' -dvidir='${docdir}' -enable_avr_port='no' -enable_dlso='no' -enable_ds390_port='yes' -enable_gbz80_port='yes' -enable_hc08_port='yes' -enable_mcs51_port='yes' -enable_pdk_port='yes' -enable_r2k_port='yes' -enable_r3ka_port='yes' -enable_s08_port='yes' -enable_serio='no' -enable_st7_port='no' -enable_stm8_port='yes' -enable_tlcs_port='yes' -enable_ucsim='no' -enable_xa_port='no' -enable_z180_port='yes' -enable_z80_port='yes' -exec_prefix='${prefix}' -host='x86_64-pc-linux-gnu' -host_alias='' -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' -localedir='${datarootdir}/locale' -localstatedir='${prefix}/var' -mandir='${datarootdir}/man' -oldincludedir='/usr/include' -panel_ok='yes' -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 VERSIONSTR "0.6-pre56" -#define VERSIONHI 0 -#define VERSIONLO 6-pre56 -#define VERSIONP -#define STATISTIC no -#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 HAVE_DLFCN_H 1 -#define LT_OBJDIR ".libs/" -#define YYTEXT_POINTER 1 -#define HAVE_FLEX 1 -#define STDC_HEADERS 1 -#define HAVE_ENDIAN_H 1 -#define HAVE_GETOPT_H 1 -#define HAVE_UNISTD_H 1 -#define HAVE_TERMIOS_H 1 -#define HAVE_CURSES_H 1 -#define HAVE_SYS_SOCKET_H 1 -#define SOCKET_AVAIL 1 -#define UCSOCKET_T int -#define SOCKLEN_T uint -#define HEADER_SOCKET <sys/socket.h> -#define HAVE_DIRENT_H 1 -#define FD_NEED_TIME_H 0 -#define FD_NEED_TYPES_H 0 -#define FD_NEED_SELECT_H 1 -#define FD_NEED_WINSOCK2_H 0 -#define FD_HEADER_OK 1 -#define HEADER_FD <sys/select.h> -#define HAVE_LIBNSL 1 -#define HAVE_LIBRT 1 -#define HAVE_VASPRINTF 1 -#define HAVE_STRERROR 1 -#define HAVE_STRDUP 1 -#define ACCEPT_SOCKLEN_T socklen_t -#define RETSIGTYPE void -#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 SPEC_BYTE "" -#define TYPE_WORD short -#define SPEC_WORD "h" -#define TYPE_DWORD int -#define SPEC_DWORD "" -#define TYPE_QWORD long -#define SPEC_QWORD "l" -#define _A_ "" -#define _M_ "h" - -configure: exit 0 diff --git a/sim/ucsim/config.status b/sim/ucsim/config.status deleted file mode 100755 index d9c8ff1..0000000 --- a/sim/ucsim/config.status +++ /dev/null @@ -1,2118 +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 main.mk:main_in.mk packages.mk:packages_in.mk sim.src/Makefile cmd.src/Makefile s51.src/Makefile avr.src/Makefile z80.src/Makefile tlcs.src/Makefile hc08.src/Makefile xa.src/Makefile stm8.src/Makefile pdk.src/Makefile st7.src/Makefile gui.src/Makefile gui.src/serio.src/Makefile doc/Makefile" -config_headers=" ddconfig.h:ddconfig_in.h" -config_commands=" libtool" - -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' '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/sim/ucsim' -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=`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 - -# -# INIT-COMMANDS -# - - -# 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.4.6' -macro_revision='2.4.6' -enable_shared='yes' -enable_static='yes' -pic_mode='default' -enable_fast_install='needless' -shared_archive_member_spec='' -SHELL='/bin/bash' -ECHO='printf %s\n' -PATH_SEPARATOR=':' -host_alias='' -host='x86_64-pc-linux-gnu' -host_os='linux-gnu' -build_alias='' -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='/usr/bin/ld -m elf_x86_64' -NM='/usr/bin/nm -B' -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' -lt_cv_to_host_file_cmd='func_convert_file_noop' -lt_cv_to_tool_file_cmd='func_convert_file_noop' -reload_flag=' -r' -reload_cmds='$LD$reload_flag -o $output$reload_objs' -OBJDUMP='objdump' -deplibs_check_method='pass_all' -file_magic_cmd='$MAGIC_CMD' -file_magic_glob='' -want_nocaseglob='no' -DLLTOOL='false' -sharedlib_from_linklib_cmd='printf %s\n' -AR='ar' -AR_FLAGS='cru' -archiver_list_spec='@' -STRIP='strip' -RANLIB='ranlib' -old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib' -old_postuninstall_cmds='' -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' -lock_old_archive_extraction='no' -CC='gcc' -CFLAGS='-g -O2' -compiler='g++' -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'\'' | sed '\''/ __gnu_lto/d'\''' -lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' -lt_cv_sys_global_symbol_to_import='' -lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' -lt_cv_nm_interface='BSD nm' -nm_file_list_spec='@' -lt_sysroot='' -lt_cv_truncate_bin='/bin/dd bs=4096 count=1' -objdir='.libs' -MAGIC_CMD='file' -lt_prog_compiler_no_builtin_flag=' -fno-builtin' -lt_prog_compiler_pic=' -fPIC -DPIC' -lt_prog_compiler_wl='-Wl,' -lt_prog_compiler_static='-static' -lt_cv_prog_compiler_c_o='yes' -need_locks='no' -MANIFEST_TOOL=':' -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_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='no' -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='' -postlink_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 ' -configure_time_dlsearch_path='/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 ' -configure_time_lt_sys_library_path='' -hardcode_action='immediate' -enable_dlopen='yes' -enable_dlopen_self='yes' -enable_dlopen_self_static='no' -old_striplib='strip --strip-debug' -striplib='strip --strip-unneeded' -compiler_lib_search_dirs='' -predep_objects='' -postdep_objects='' -predeps='' -postdeps='' -compiler_lib_search_path='' -LD_CXX='/usr/bin/ld -m elf_x86_64' -reload_flag_CXX=' -r' -reload_cmds_CXX='$LD$reload_flag -o $output$reload_objs' -old_archive_cmds_CXX='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' -compiler_CXX='g++' -GCC_CXX='yes' -lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' -lt_prog_compiler_pic_CXX=' -fPIC -DPIC' -lt_prog_compiler_wl_CXX='-Wl,' -lt_prog_compiler_static_CXX='-static' -lt_cv_prog_compiler_c_o_CXX='yes' -archive_cmds_need_lc_CXX='no' -enable_shared_with_static_runtimes_CXX='no' -export_dynamic_flag_spec_CXX='$wl--export-dynamic' -whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' -compiler_needs_object_CXX='no' -old_archive_from_new_cmds_CXX='' -old_archive_from_expsyms_cmds_CXX='' -archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' -archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' -module_cmds_CXX='' -module_expsym_cmds_CXX='' -with_gnu_ld_CXX='yes' -allow_undefined_flag_CXX='' -no_undefined_flag_CXX='' -hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' -hardcode_libdir_separator_CXX='' -hardcode_direct_CXX='no' -hardcode_direct_absolute_CXX='no' -hardcode_minus_L_CXX='no' -hardcode_shlibpath_var_CXX='unsupported' -hardcode_automatic_CXX='no' -inherit_rpath_CXX='no' -link_all_deplibs_CXX='no' -always_export_symbols_CXX='no' -export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' -exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' -include_expsyms_CXX='' -prelink_cmds_CXX='' -postlink_cmds_CXX='' -file_list_spec_CXX='' -hardcode_action_CXX='immediate' -compiler_lib_search_dirs_CXX='/usr/lib/gcc/x86_64-linux-gnu/7 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu /usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu /usr/lib/../lib /usr/lib/gcc/x86_64-linux-gnu/7/../../..' -predep_objects_CXX='/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o' -postdep_objects_CXX='/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o' -predeps_CXX='' -postdeps_CXX='-lstdc++ -lm -lgcc_s -lc -lgcc_s' -compiler_lib_search_path_CXX='-L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../..' - -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 PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_import lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_cv_nm_interface nm_file_list_spec lt_cv_truncate_bin lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL 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_separator 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 compiler_lib_search_dirs predep_objects postdep_objects predeps postdeps compiler_lib_search_path LD_CXX reload_flag_CXX compiler_CXX lt_prog_compiler_no_builtin_flag_CXX lt_prog_compiler_pic_CXX lt_prog_compiler_wl_CXX lt_prog_compiler_static_CXX lt_cv_prog_compiler_c_o_CXX export_dynamic_flag_spec_CXX whole_archive_flag_spec_CXX compiler_needs_object_CXX with_gnu_ld_CXX allow_undefined_flag_CXX no_undefined_flag_CXX hardcode_libdir_flag_spec_CXX hardcode_libdir_separator_CXX exclude_expsyms_CXX include_expsyms_CXX file_list_spec_CXX compiler_lib_search_dirs_CXX predep_objects_CXX postdep_objects_CXX predeps_CXX postdeps_CXX compiler_lib_search_path_CXX; do - case `eval \\$ECHO \\""\\$$var"\\"` in - *[\\\`\"\$]*) - eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes - ;; - *) - 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 postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec configure_time_dlsearch_path configure_time_lt_sys_library_path reload_cmds_CXX old_archive_cmds_CXX old_archive_from_new_cmds_CXX old_archive_from_expsyms_cmds_CXX archive_cmds_CXX archive_expsym_cmds_CXX module_cmds_CXX module_expsym_cmds_CXX export_symbols_cmds_CXX prelink_cmds_CXX postlink_cmds_CXX; do - case `eval \\$ECHO \\""\\$$var"\\"` in - *[\\\`\"\$]*) - eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes - ;; - *) - eval "lt_$var=\\\"\$$var\\\"" - ;; - esac -done - -ac_aux_dir='.' - -# See if we are running on zsh, and set the options that allow our -# commands through without removal of \ escapes INIT. -if test -n "${ZSH_VERSION+set}"; then - setopt NO_GLOB_SUBST -fi - - - PACKAGE='' - VERSION='0.6-pre56' - RM='rm -f' - ofile='libtool' - - - - - - - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "ddconfig.h") CONFIG_HEADERS="$CONFIG_HEADERS ddconfig.h:ddconfig_in.h" ;; - "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "main.mk") CONFIG_FILES="$CONFIG_FILES main.mk:main_in.mk" ;; - "packages.mk") CONFIG_FILES="$CONFIG_FILES packages.mk:packages_in.mk" ;; - "sim.src/Makefile") CONFIG_FILES="$CONFIG_FILES sim.src/Makefile" ;; - "cmd.src/Makefile") CONFIG_FILES="$CONFIG_FILES cmd.src/Makefile" ;; - "s51.src/Makefile") CONFIG_FILES="$CONFIG_FILES s51.src/Makefile" ;; - "avr.src/Makefile") CONFIG_FILES="$CONFIG_FILES avr.src/Makefile" ;; - "z80.src/Makefile") CONFIG_FILES="$CONFIG_FILES z80.src/Makefile" ;; - "tlcs.src/Makefile") CONFIG_FILES="$CONFIG_FILES tlcs.src/Makefile" ;; - "hc08.src/Makefile") CONFIG_FILES="$CONFIG_FILES hc08.src/Makefile" ;; - "xa.src/Makefile") CONFIG_FILES="$CONFIG_FILES xa.src/Makefile" ;; - "stm8.src/Makefile") CONFIG_FILES="$CONFIG_FILES stm8.src/Makefile" ;; - "pdk.src/Makefile") CONFIG_FILES="$CONFIG_FILES pdk.src/Makefile" ;; - "st7.src/Makefile") CONFIG_FILES="$CONFIG_FILES st7.src/Makefile" ;; - "gui.src/Makefile") CONFIG_FILES="$CONFIG_FILES gui.src/Makefile" ;; - "gui.src/serio.src/Makefile") CONFIG_FILES="$CONFIG_FILES gui.src/serio.src/Makefile" ;; - "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/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= 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["dlso_ok"]="no" -S["PICOPT"]=" -fPIC -DPIC" -S["SHAREDLIB"]="yes" -S["WALL_FLAG"]="-Wall" -S["MAKEDEP"]="g++ -MM" -S["CURSES_LIBS"]="-lpanel -lcurses" -S["curses_ok"]="yes" -S["panel_ok"]="yes" -S["DL"]="-ldl" -S["dl_ok"]="yes" -S["WINSOCK_AVAIL"]="0" -S["YFLAGS"]="" -S["YACC"]="bison -y" -S["LEXLIB"]="-lfl" -S["LEX_OUTPUT_ROOT"]="lex.yy" -S["LEX"]="flex" -S["LIBTOOL_DEPS"]="./ltmain.sh" -S["CPP"]="gcc -E" -S["LT_SYS_LIBRARY_PATH"]="" -S["OTOOL64"]="" -S["OTOOL"]="" -S["LIPO"]="" -S["NMEDIT"]="" -S["DSYMUTIL"]="" -S["MANIFEST_TOOL"]=":" -S["ac_ct_AR"]="ar" -S["DLLTOOL"]="false" -S["OBJDUMP"]="objdump" -S["LN_S"]="ln -s" -S["NM"]="/usr/bin/nm -B" -S["ac_ct_DUMPBIN"]="" -S["DUMPBIN"]="" -S["LD"]="/usr/bin/ld -m elf_x86_64" -S["FGREP"]="/bin/grep -F" -S["EGREP"]="/bin/grep -E" -S["GREP"]="/bin/grep" -S["SED"]="/bin/sed" -S["ac_ct_CC"]="gcc" -S["CFLAGS"]="-g -O2" -S["CC"]="gcc" -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["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool" -S["SREC_CAT"]="" -S["AR"]="ar" -S["STRIP"]="strip" -S["RANLIB"]="ranlib" -S["INSTALL_DATA"]="${INSTALL} -m 644" -S["INSTALL_SCRIPT"]="${INSTALL}" -S["INSTALL_PROGRAM"]="${INSTALL}" -S["CXXCPP"]="g++ -E" -S["OBJEXT"]="o" -S["EXEEXT"]="" -S["ac_ct_CXX"]="g++" -S["CPPFLAGS"]="" -S["LDFLAGS"]="" -S["CXXFLAGS"]="-g -O2 -g" -S["CXX"]="g++" -S["enable_serio"]="no" -S["enable_pdk_port"]="yes" -S["enable_st7_port"]="no" -S["enable_stm8_port"]="yes" -S["enable_xa_port"]="no" -S["enable_s08_port"]="yes" -S["enable_hc08_port"]="yes" -S["enable_tlcs_port"]="yes" -S["enable_r3ka_port"]="yes" -S["enable_r2k_port"]="yes" -S["enable_gbz80_port"]="yes" -S["enable_z180_port"]="yes" -S["enable_z80_port"]="yes" -S["enable_avr_port"]="no" -S["enable_ds390_port"]="yes" -S["enable_mcs51_port"]="yes" -S["enable_dlso"]="no" -S["enable_ucsim"]="no" -S["VERSIONP"]="" -S["VERSIONLO"]="6-pre56" -S["VERSIONHI"]="0" -S["VERSION"]="0.6-pre56" -S["AWK"]="gawk" -S["target_alias"]="" -S["host_alias"]="" -S["build_alias"]="" -S["LIBS"]="-lrt -lnsl " -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["VERSIONSTR"]=" \"0.6-pre56\"" -D["VERSIONHI"]=" 0" -D["VERSIONLO"]=" 6-pre56" -D["VERSIONP"]=" " -D["STATISTIC"]=" no" -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["HAVE_DLFCN_H"]=" 1" -D["LT_OBJDIR"]=" \".libs/\"" -D["YYTEXT_POINTER"]=" 1" -D["HAVE_FLEX"]=" 1" -D["STDC_HEADERS"]=" 1" -D["HAVE_ENDIAN_H"]=" 1" -D["HAVE_GETOPT_H"]=" 1" -D["HAVE_UNISTD_H"]=" 1" -D["HAVE_TERMIOS_H"]=" 1" -D["HAVE_CURSES_H"]=" 1" -D["HAVE_SYS_SOCKET_H"]=" 1" -D["SOCKET_AVAIL"]=" 1" -D["UCSOCKET_T"]=" int" -D["SOCKLEN_T"]=" uint" -D["HEADER_SOCKET"]=" <sys/socket.h>" -D["HAVE_DIRENT_H"]=" 1" -D["FD_NEED_TIME_H"]=" 0" -D["FD_NEED_TYPES_H"]=" 0" -D["FD_NEED_SELECT_H"]=" 1" -D["FD_NEED_WINSOCK2_H"]=" 0" -D["FD_HEADER_OK"]=" 1" -D["HEADER_FD"]=" <sys/select.h>" -D["HAVE_LIBNSL"]=" 1" -D["HAVE_LIBRT"]=" 1" -D["HAVE_VASPRINTF"]=" 1" -D["HAVE_STRERROR"]=" 1" -D["HAVE_STRDUP"]=" 1" -D["ACCEPT_SOCKLEN_T"]=" socklen_t" -D["RETSIGTYPE"]=" void" -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["SPEC_BYTE"]=" \"\"" -D["TYPE_WORD"]=" short" -D["SPEC_WORD"]=" \"h\"" -D["TYPE_DWORD"]=" int" -D["SPEC_DWORD"]=" \"\"" -D["TYPE_QWORD"]=" long" -D["SPEC_QWORD"]=" \"l\"" -D["_A_"]=" \"\"" -D["_M_"]=" \"h\"" - 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 - # - - 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[ ]*=[ ]*/{ -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 -s&@INSTALL@&$ac_INSTALL&;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 - "libtool":C) - - # See if we are running on zsh, and set the options that 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 -# Generated automatically by $as_me ($PACKAGE) $VERSION -# NOTE: Changes made to this file will be lost: look at ltmain.sh. - -# Provide generalized library-building support services. -# Written by Gordon Matzigkeit, 1996 - -# Copyright (C) 2014 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. - -# 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 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 this program. If not, see <http://www.gnu.org/licenses/>. - - -# The names of the tagged configurations supported by this script. -available_tags='CXX ' - -# Configured defaults for sys_lib_dlsearch_path munging. -: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} - -# ### 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 - -# Shared archive member basename,for filename based shared library versioning on AIX. -shared_archive_member_spec=$shared_archive_member_spec - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# An echo program that protects backslashes. -ECHO=$lt_ECHO - -# The PATH separator for the build system. -PATH_SEPARATOR=$lt_PATH_SEPARATOR - -# 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 - -# convert \$build file names to \$host format. -to_host_file_cmd=$lt_cv_to_host_file_cmd - -# convert \$build files to toolchain format. -to_tool_file_cmd=$lt_cv_to_tool_file_cmd - -# 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 - -# How to find potential files when deplibs_check_method = "file_magic". -file_magic_glob=$lt_file_magic_glob - -# Find potential files using nocaseglob when deplibs_check_method = "file_magic". -want_nocaseglob=$lt_want_nocaseglob - -# DLL creation program. -DLLTOOL=$lt_DLLTOOL - -# Command to associate shared and link libraries. -sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd - -# The archiver. -AR=$lt_AR - -# Flags to create an archive. -AR_FLAGS=$lt_AR_FLAGS - -# How to feed a file listing to the archiver. -archiver_list_spec=$lt_archiver_list_spec - -# 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 into a list of symbols to manually relocate. -global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import - -# 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 lister interface. -nm_interface=$lt_lt_cv_nm_interface - -# Specify filename containing input files for \$NM. -nm_file_list_spec=$lt_nm_file_list_spec - -# The root where to search for dependent libraries,and where our libraries should be installed. -lt_sysroot=$lt_sysroot - -# Command to truncate a binary pipe. -lt_truncate_bin=$lt_lt_cv_truncate_bin - -# 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 - -# Manifest tool. -MANIFEST_TOOL=$lt_MANIFEST_TOOL - -# 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 - -# Detected run-time system search path for libraries. -sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path - -# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. -configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path - -# 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 - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl - -# 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 - -# 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 - -# 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 - -# Commands necessary for finishing linking programs. -postlink_cmds=$lt_postlink_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 - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects -postdep_objects=$lt_postdep_objects -predeps=$lt_predeps -postdeps=$lt_postdeps - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path - -# ### END LIBTOOL CONFIG - -_LT_EOF - - cat <<'_LT_EOF' >> "$cfgfile" - -# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE - -# func_munge_path_list VARIABLE PATH -# ----------------------------------- -# VARIABLE is name of variable containing _space_ separated list of -# directories to be munged by the contents of PATH, which is string -# having a format: -# "DIR[:DIR]:" -# string "DIR[ DIR]" will be prepended to VARIABLE -# ":DIR[:DIR]" -# string "DIR[ DIR]" will be appended to VARIABLE -# "DIRP[:DIRP]::[DIRA:]DIRA" -# string "DIRP[ DIRP]" will be prepended to VARIABLE and string -# "DIRA[ DIRA]" will be appended to VARIABLE -# "DIR[:DIR]" -# VARIABLE will be replaced by "DIR[ DIR]" -func_munge_path_list () -{ - case x$2 in - x) - ;; - *:) - eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" - ;; - x:*) - eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" - ;; - *::*) - eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" - eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" - ;; - *) - eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" - ;; - esac -} - - -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -func_cc_basename () -{ - for cc_temp in $*""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac - done - func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -} - - -# ### END FUNCTIONS SHARED WITH CONFIGURE - -_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 set != "${COLLECT_NAMES+set}"; 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 '$q' "$ltmain" >> "$cfgfile" \ - || (rm -f "$cfgfile"; exit 1) - - mv -f "$cfgfile" "$ofile" || - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" - - - cat <<_LT_EOF >> "$ofile" - -# ### BEGIN LIBTOOL TAG CONFIG: CXX - -# The linker used to build libraries. -LD=$lt_LD_CXX - -# How to create reloadable object files. -reload_flag=$lt_reload_flag_CXX -reload_cmds=$lt_reload_cmds_CXX - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds_CXX - -# A language specific compiler. -CC=$lt_compiler_CXX - -# Is the compiler the GNU compiler? -with_gcc=$GCC_CXX - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_CXX - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_CXX - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_CXX - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_CXX - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object_CXX - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds_CXX -archive_expsym_cmds=$lt_archive_expsym_cmds_CXX - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds_CXX -module_expsym_cmds=$lt_module_expsym_cmds_CXX - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld_CXX - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_CXX - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_CXX - -# 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_CXX - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX - -# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct_CXX - -# 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_CXX - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L_CXX - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX - -# 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_CXX - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath_CXX - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_CXX - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols_CXX - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_CXX - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_CXX - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_CXX - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds_CXX - -# Commands necessary for finishing linking programs. -postlink_cmds=$lt_postlink_cmds_CXX - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec_CXX - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_CXX - -# The directories searched by this compiler when creating a shared library. -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX - -# Dependencies to place before and after the objects being linked to -# create a shared library. -predep_objects=$lt_predep_objects_CXX -postdep_objects=$lt_postdep_objects_CXX -predeps=$lt_predeps_CXX -postdeps=$lt_postdeps_CXX - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_CXX - -# ### END LIBTOOL TAG CONFIG: CXX -_LT_EOF - - ;; - - esac -done # for ac_tag - - -as_fn_exit 0 diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index 3cc5b4b..0000000 --- a/src/Makefile +++ /dev/null @@ -1,153 +0,0 @@ -# -# -# - -srcdir = . -top_srcdir = .. -top_builddir = .. - - -include $(top_builddir)/Makefile.common - -USE_ALT_LEX = 0 - -PORTS = $(shell cat ../ports.build) -ALLPORTS = $(shell cat ../ports.all) -PORT_LIBS = $(PORTS:%=%/port.a) - -LIBS = -lm - -CFLAGS = -pipe -ggdb -g -Og -Wall -Wno-parentheses -CXXFLAGS = -pipe -ggdb -g -Og -Wall -Wno-parentheses -CPPFLAGS += -I$(srcdir) -LDFLAGS = - -ifdef SDCC_SUB_VERSION -CFLAGS += -DSDCC_SUB_VERSION_STR=\"$(SDCC_SUB_VERSION)\" -endif - -SLIBOBJS = NewAlloc.o dbuf.o dbuf_string.o findme.o - -OBJECTS = SDCCy.o SDCChasht.o SDCCmain.o \ - SDCCsymt.o SDCCopt.o SDCCast.o SDCCmem.o SDCCval.o \ - SDCCicode.o SDCCbitv.o SDCCset.o SDCClabel.o \ - SDCCBBlock.o SDCCloop.o SDCCcse.o SDCCcflow.o SDCCdflow.o \ - SDCClrange.o SDCCptropt.o SDCCpeeph.o SDCCglue.o \ - SDCCasm.o SDCCmacro.o SDCCutil.o SDCCdebug.o cdbFile.o SDCCdwarf2.o\ - SDCCerr.o SDCCsystem.o SDCCgen.o - -SPECIAL = SDCCy.h -ifeq ($(USE_ALT_LEX), 1) -OBJECTS += altlex.o -SPECIAL += reswords.h -else -OBJECTS += SDCClex.o -endif - -SLIBSOURCES = $(patsubst %.o,$(SLIB)/%.c,$(SLIBOBJS)) -SOURCES := $(patsubst %.o,%.c,$(OBJECTS)) - -# C++ sources (.cc extension) -CXXSOURCES += $(sort $(notdir $(wildcard $(srcdir)/*.cc))) -OBJECTS += $(patsubst %.cc,%.o,$(CXXSOURCES)) - -TARGET = $(top_builddir)/bin/sdcc$(EXEEXT) - -# Compiling entire program or any subproject -# ------------------------------------------ -all: checkconf version.h $(TARGET) - -$(PORT_LIBS): FORCE - $(MAKE) -C $(dir $@) - -FORCE: - -$(top_builddir)/support/gc/libgc.a: - $(MAKE) -C $(top_builddir)/support/gc - -# Compiling and installing everything and runing test -# --------------------------------------------------- -install: all installdirs - $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)/`echo sdcc|sed '$(transform)'`$(EXEEXT) - $(STRIP) $(DESTDIR)$(bindir)/`echo sdcc|sed '$(transform)'`$(EXEEXT) - - -# Deleting all the installed files -# -------------------------------- -uninstall: - rm -f $(DESTDIR)$(bindir)/`echo sdcc|sed '$(transform)'`$(EXEEXT) - -# Performing self-test -# -------------------- -check: - - -# Performing installation test -# ---------------------------- -installcheck: - - -# Creating installation directories -# --------------------------------- -installdirs: - $(INSTALL) -d $(DESTDIR)$(bindir) - - -# Creating dependencies -# --------------------- -dep: version.h Makefile.dep - -Makefile.dep: version.h $(SOURCES) $(CXXSOURCES) $(SLIBSOURCES) $(SPECIAL) - $(MAKEDEP) $(CPPFLAGS) $(filter %.c,$^) $(filter %.cc,$^) >Makefile.dep - -# don't include Makefile.dep for the listed targets: -ifeq "$(findstring $(MAKECMDGOALS),uninstall check installcheck installdirs checkconf \ - clean distclean mostlyclean realclean)" "" - -include Makefile.dep -endif -include $(srcdir)/clean.mk - - -# My rules -# -------- -$(TARGET): $(SLIBOBJS) $(OBJECTS) $(PORT_LIBS) - $(CXX) $(LDFLAGS) -o $@ $(SLIBOBJS) $(OBJECTS) $(PORT_LIBS) $(LIBDIRS) $(LIBS) - -.c.o: - $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ - -$(SLIBOBJS):%.o:$(SLIB)/%.c - $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ - -reswords.h: reswords.gperf Makefile - gperf -o -k1,2,4 -t -C -N is_reserved_word $< > $@ - -altlex.o: altlex.c SDCCy.h reswords.h - -SDCCy.h: SDCCy.c - -SDCCy.c: SDCC.y - $(YACC) -d $< - mv y.tab.c $*.c - mv y.tab.h $*.h - -SDCClex.c: SDCC.lex SDCCy.h - $(LEX) -8 -f -t $< >$@ - -version.h: ../ChangeLog - $(AWK) -f $(srcdir)/version.awk $< > $@ - -.l.c: - rm -f $*.cc - $(LEX) -t $< >$*.cc - - -# Remaking configuration -# ---------------------- -checkconf: - @if [ -f $(top_builddir)/devel ]; then\ - $(MAKE) -f $(srcdir)/conf.mk srcdir="$(srcdir)" top_builddir="$(top_builddir)" \ - freshconf;\ - fi - -# End of main_in.mk/main.mk diff --git a/src/ds390/Makefile b/src/ds390/Makefile deleted file mode 100644 index cb704c7..0000000 --- a/src/ds390/Makefile +++ /dev/null @@ -1,7 +0,0 @@ - -srcdir = . -top_builddir = ../.. -top_srcdir = ../.. - -# Make all in this directory -include $(srcdir)/../port.mk diff --git a/src/hc08/Makefile b/src/hc08/Makefile deleted file mode 100644 index cb704c7..0000000 --- a/src/hc08/Makefile +++ /dev/null @@ -1,7 +0,0 @@ - -srcdir = . -top_builddir = ../.. -top_srcdir = ../.. - -# Make all in this directory -include $(srcdir)/../port.mk diff --git a/src/mcs51/Makefile b/src/mcs51/Makefile deleted file mode 100644 index cb704c7..0000000 --- a/src/mcs51/Makefile +++ /dev/null @@ -1,7 +0,0 @@ - -srcdir = . -top_builddir = ../.. -top_srcdir = ../.. - -# Make all in this directory -include $(srcdir)/../port.mk diff --git a/src/pdk/Makefile b/src/pdk/Makefile deleted file mode 100644 index cb704c7..0000000 --- a/src/pdk/Makefile +++ /dev/null @@ -1,7 +0,0 @@ - -srcdir = . -top_builddir = ../.. -top_srcdir = ../.. - -# Make all in this directory -include $(srcdir)/../port.mk diff --git a/src/pic14/Makefile b/src/pic14/Makefile deleted file mode 100644 index 1c6f129..0000000 --- a/src/pic14/Makefile +++ /dev/null @@ -1,7 +0,0 @@ - -srcdir = . -top_builddir = ../.. -top_srcdir = ../.. - -# Make all in this directory -include $(srcdir)/../port.mk diff --git a/src/pic16/Makefile b/src/pic16/Makefile deleted file mode 100644 index cb704c7..0000000 --- a/src/pic16/Makefile +++ /dev/null @@ -1,7 +0,0 @@ - -srcdir = . -top_builddir = ../.. -top_srcdir = ../.. - -# Make all in this directory -include $(srcdir)/../port.mk diff --git a/src/regression/Makefile b/src/regression/Makefile deleted file mode 100644 index 26a7ff3..0000000 --- a/src/regression/Makefile +++ /dev/null @@ -1,226 +0,0 @@ -# Regression testing Makefile for Pic Port of SDCC -# -# note that this regression suite was started before -# the one in sdcc/regression. The regression suite in -# sdcc/regression is better suited for testing mature -# ports. -# -# GPL'd -# -# T. Scott Dattalo scott@dattalo.com -# -# This makefile provides a means by which the output -# of the SDCC Compiler can be tested. This version -# is unique to the PIC (as in Microchip PIC) port. -# As such it requires the following software: -# -# gpasm version 0.11.1 (or greater) -# gpsim version 0.20.7 (or greater) -# -# Usage: -# -# make -# - without any options the whole regression test is -# performed. The results are placed into a log file -# (defined by $LOGFILE). -# -# make asm -# - Creates .asm files by compiling the .c files -# -# make cod -# - Creates .cod files by assembling the .asm files -# (.cod files are symbolic files compatible with -# MPASM, Microchip's assembler) -# -# make stc -# - Creates .stc files which are script files for -# gpsim. -# -# make clean -# - removes all of the intermediate files created -# -# make cleancod -# make cleanasm -# make cleanstc -# make cleano -# - removes either the .stc, .asm, .cod or .o files - -# verboseness -#Q ?= # be verbose -Q ?= @ # be quiet - -SDCC_SRC=../.. -SDCC_BIN=../.. - -CC = $(SDCC_BIN)/bin/sdcc -LINKER = gplink -USE_PIC16 ?= 0 -ifeq ($(strip $(filter 1 yes,$(USE_PIC16))),) -TARGETPIC = 16f877 -#TARGETPIC = 16f84 -CFLAGS = -mpic14 -p$(TARGETPIC) -DIR = pic14 -else -TARGETPIC = 18f452 -CFLAGS = -mpic16 -p$(TARGETPIC) -DIR = pic16 -endif -CFLAGS += -Wl,-q --no-warn-non-free -CFLAGS += -Wl,--map -CFLAGS += -I $(SDCC_SRC)/device/include/$(DIR) -I $(SDCC_SRC)/device/non-free/include/$(DIR) -CFLAGS += -L $(SDCC_BIN)/device/lib/build/$(DIR) -L $(SDCC_BIN)/device/non-free/lib/build/$(DIR) -#CFLAGS += --no-pcode-opt -#CFLAGS += -V - -.SUFFIXES: .asm .c .cod .stc -.NOTPARALLEL: - -# Results of the test are placed here: -LOGFILE = test.log - -# Script file for creating gpsim scripts -CREATESTC = create_stc - -# Script file for invoking gpsim -SIMULATE = simulate - -# List the C files to be test here: -SRC = add.c \ - add2.c \ - add3.c \ - add4.c \ - and1.c \ - and2.c \ - arrays.c \ - b.c \ - bank1.c \ - bool1.c \ - bool2.c \ - bool3.c \ - call1.c \ - compare.c \ - compare10.c \ - compare2.c \ - compare3.c \ - compare4.c \ - compare5.c \ - compare6.c \ - compare7.c \ - compare8.c \ - compare9.c \ - configword.c \ - empty.c \ - for.c \ - init0.c \ - inline.c \ - mult1.c \ - nestfor.c \ - or1.c \ - pcodeopt.c \ - pointer1.c \ - ptrarg.c \ - ptrfunc.c \ - rotate1.c \ - rotate2.c \ - rotate3.c \ - rotate4.c \ - rotate5.c \ - rotate6.c \ - rotate7.c \ - string1.c \ - struct1.c \ - sub.c \ - sub2.c \ - switch1.c \ - while.c \ - xor.c - -COD := $(patsubst %.c, %.cod, $(SRC)) -ASM := $(patsubst %.c, %.asm, $(SRC)) -O := $(patsubst %.c, %.o, $(SRC)) -P := $(patsubst %.c, %.p, $(SRC)) -STC := $(patsubst %.c, %.stc, $(SRC)) -HEX := $(patsubst %.c, %.hex, $(SRC)) -LST := $(patsubst %.c, %.lst, $(SRC)) -MAP := $(patsubst %.c, %.map, $(SRC)) - -all: test - - -# The cod files are generated by sdcc -.c.cod: - $(Q)-$(CC) $(CFLAGS) $*.c - -# The .stc files are script files for gpsim -.cod.stc: - $(Q)-./$(CREATESTC) $*.cod $*.stc - $(Q)-./$(SIMULATE) $*.stc $(LOGFILE) - -# this will also make .stc files -#%.stc : %.cod -# ./create_stc $^ $@ - -# now for the dependencies - -cod : $(COD) - -o : $(O) - -asm : $(ASM) - -stc : $(STC) - echo $(STC) - -test: $(STC) - $(Q)echo "Done - Results are in $(LOGFILE)" - -cleancod: - files="$(COD)" ; \ - for f in $$files ; do \ - if [ -f $$f ]; then rm $$f; fi \ - done ; \ - -cleano: - files="$(O)" ; \ - for f in $$files ; do \ - if [ -f $$f ]; then rm $$f; fi \ - done ; \ - -cleanp: - files="$(P)" ; \ - for f in $$files ; do \ - if [ -f $$f ]; then rm $$f; fi \ - done ; \ - -cleanasm: - files="$(ASM)" ; \ - for f in $$files ; do \ - if [ -f $$f ]; then rm $$f; fi \ - done ; \ - -cleanstc: - files="$(STC)" ; \ - for f in $$files ; do \ - if [ -f $$f ]; then rm $$f; fi \ - done ; \ - -cleanhex: - files="$(HEX)" ; \ - for f in $$files ; do \ - if [ -f $$f ]; then rm $$f; fi \ - done ; \ - -cleanlst: - files="$(LST)" ; \ - for f in $$files ; do \ - if [ -f $$f ]; then rm $$f; fi \ - done ; \ - -cleanmap: - files="$(MAP)" ; \ - for f in $$files ; do \ - if [ -f $$f ]; then rm $$f; fi \ - done ; \ - -clean: cleancod cleanasm cleanstc cleano cleanp cleanhex cleanlst cleanmap - if [ -f "$(LOGFILE)" ]; then rm $(LOGFILE); fi diff --git a/src/stm8/Makefile b/src/stm8/Makefile deleted file mode 100644 index cb704c7..0000000 --- a/src/stm8/Makefile +++ /dev/null @@ -1,7 +0,0 @@ - -srcdir = . -top_builddir = ../.. -top_srcdir = ../.. - -# Make all in this directory -include $(srcdir)/../port.mk diff --git a/src/z80/Makefile b/src/z80/Makefile deleted file mode 100644 index cb704c7..0000000 --- a/src/z80/Makefile +++ /dev/null @@ -1,7 +0,0 @@ - -srcdir = . -top_builddir = ../.. -top_srcdir = ../.. - -# Make all in this directory -include $(srcdir)/../port.mk 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) |
