mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-23 02:51:56 +00:00
2005-10-05 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/22340 * configure.in (default_target): Remove. * Makefile.tpl (all): Do not use prerequisites as subroutines (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet. (do-[+make_target+], check, install, [+bootstrap_target+]): Do not use prerequisites as subroutines. (check-host, check-target): New. (bootstrap configure & all targets): Do not use stage*-start if the directory layout is already ok. (non-bootstrap configure & all targets): Prepend a $(unstage). (stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL. (NOTPARALLEL): Remove. (unstage, stage variables): New variables. (unstage, stage targets): Simply expand to those variables. * configure: Regenerate. * Makefile.in: Regenerate.
This commit is contained in:
parent
c13c918a2c
commit
f70224b53d
21
ChangeLog
21
ChangeLog
@ -1,3 +1,24 @@
|
||||
2005-10-05 Paolo Bonzini <bonzini@gnu.org>
|
||||
|
||||
PR bootstrap/22340
|
||||
|
||||
* configure.in (default_target): Remove.
|
||||
* Makefile.tpl (all): Do not use prerequisites as subroutines
|
||||
(all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
|
||||
(do-[+make_target+], check, install, [+bootstrap_target+]): Do not
|
||||
use prerequisites as subroutines.
|
||||
(check-host, check-target): New.
|
||||
(bootstrap configure & all targets): Do not use stage*-start
|
||||
if the directory layout is already ok.
|
||||
(non-bootstrap configure & all targets): Prepend a $(unstage).
|
||||
(stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL.
|
||||
(NOTPARALLEL): Remove.
|
||||
(unstage, stage variables): New variables.
|
||||
(unstage, stage targets): Simply expand to those variables.
|
||||
|
||||
* configure: Regenerate.
|
||||
* Makefile.in: Regenerate.
|
||||
|
||||
2005-10-04 James E Wilson <wilson@specifix.com>
|
||||
|
||||
* Makefile.def (lang_env_dependencies): Add libmudflap.
|
||||
|
1873
Makefile.in
1873
Makefile.in
File diff suppressed because it is too large
Load Diff
130
Makefile.tpl
130
Makefile.tpl
@ -158,11 +158,13 @@ HOST_EXPORTS = \
|
||||
TOPLEVEL_CONFIGURE_ARGUMENTS="$(TOPLEVEL_CONFIGURE_ARGUMENTS)"; export TOPLEVEL_CONFIGURE_ARGUMENTS; \
|
||||
GMPLIBS="$(HOST_GMPLIBS)"; export GMPLIBS; \
|
||||
GMPINC="$(HOST_GMPINC)"; export GMPINC; \
|
||||
@if gcc-bootstrap
|
||||
$(RPATH_ENVVAR)=`echo "$(TARGET_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR); \
|
||||
@endif gcc-bootstrap
|
||||
$(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR);
|
||||
|
||||
# Similar, for later GCC stages.
|
||||
POSTSTAGE1_HOST_EXPORTS = \
|
||||
$(RPATH_ENVVAR)=`echo "$(TARGET_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR); \
|
||||
$(HOST_EXPORTS) \
|
||||
CC="$(STAGE_CC_WRAPPER) $$r/$(HOST_SUBDIR)/prev-gcc/xgcc$(exeext) \
|
||||
-B$$r/$(HOST_SUBDIR)/prev-gcc/ -B$(build_tooldir)/bin/"; export CC; \
|
||||
@ -566,7 +568,7 @@ PICFLAG_FOR_TARGET =
|
||||
|
||||
# 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.
|
||||
@default_target@:
|
||||
all:
|
||||
|
||||
#### host and target specific makefile fragments come in here.
|
||||
@target_makefile_frag@
|
||||
@ -698,7 +700,26 @@ configure-target: [+
|
||||
|
||||
# The target built for a native non-bootstrap build.
|
||||
.PHONY: all
|
||||
all: unstage all-host all-target stage
|
||||
all:
|
||||
@if gcc-bootstrap
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
if [ ! -f stage_last ]; then \
|
||||
$(MAKE) $(RECURSE_FLAGS_TO_PASS) bootstrap; \
|
||||
fi
|
||||
@endif gcc-bootstrap
|
||||
@$(unstage)
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
if [ -f stage_last ]; then \
|
||||
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host; \
|
||||
else \
|
||||
$(MAKE) $(RECURSE_FLAGS_TO_PASS) all-host; \
|
||||
fi
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
$(MAKE) $(RECURSE_FLAGS_TO_PASS) all-target
|
||||
@$(stage)
|
||||
|
||||
.PHONY: all-build
|
||||
all-build: [+
|
||||
@ -722,7 +743,12 @@ all-target: [+
|
||||
# but it may do additional work as well).
|
||||
[+ FOR recursive_targets +]
|
||||
.PHONY: do-[+make_target+]
|
||||
do-[+make_target+]: unstage [+make_target+]-host [+make_target+]-target stage
|
||||
do-[+make_target+]:
|
||||
@$(unstage)
|
||||
@$(MAKE) $(RECURSE_FLAGS_TO_PASS) [+make_target+]-host \
|
||||
[+make_target+]-target
|
||||
@$(stage)
|
||||
|
||||
|
||||
.PHONY: [+make_target+]-host
|
||||
[+make_target+]-host: [+
|
||||
@ -802,13 +828,22 @@ clean-target-libgcc:
|
||||
check: do-check
|
||||
|
||||
# Only include modules actually being configured and built.
|
||||
do-check: unstage [+
|
||||
.PHONY: check-host
|
||||
check-host: [+
|
||||
FOR host_modules +] \
|
||||
maybe-check-[+module+][+
|
||||
ENDFOR host_modules +][+
|
||||
ENDFOR host_modules +]
|
||||
|
||||
.PHONY: check-target
|
||||
check-target: [+
|
||||
FOR target_modules +] \
|
||||
maybe-check-target-[+module+][+
|
||||
ENDFOR target_modules +] stage
|
||||
ENDFOR target_modules +]
|
||||
|
||||
do-check:
|
||||
@$(unstage)
|
||||
@$(MAKE) $(RECURSE_FLAGS_TO_PASS) check-host check-target
|
||||
@$(stage)
|
||||
|
||||
# Automated reporting of test results.
|
||||
|
||||
@ -834,7 +869,10 @@ mail-report-with-warnings.log: warning.log
|
||||
# Installation targets.
|
||||
|
||||
.PHONY: install uninstall
|
||||
install: installdirs install-host install-target
|
||||
install:
|
||||
@$(unstage)
|
||||
@$(MAKE) $(RECURSE_FLAGS_TO_PASS) installdirs install-host install-target
|
||||
@$(stage)
|
||||
|
||||
.PHONY: install-host-nogcc
|
||||
install-host-nogcc: [+
|
||||
@ -915,7 +953,8 @@ maybe-configure-[+prefix+][+module+]:
|
||||
maybe-configure-[+prefix+][+module+]: configure-[+prefix+][+module+]
|
||||
configure-[+prefix+][+module+]: [+deps+]
|
||||
@[+ IF bootstrap +]test -f stage_last && exit 0; \
|
||||
[+ ENDIF bootstrap +]test ! -f [+subdir+]/[+module+]/Makefile || exit 0; \
|
||||
[+ ELSE bootstrap +]$(unstage)
|
||||
@[+ ENDIF bootstrap +]test ! -f [+subdir+]/[+module+]/Makefile || exit 0; \
|
||||
$(SHELL) $(srcdir)/mkinstalldirs [+subdir+]/[+module+] ; \
|
||||
r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
@ -942,7 +981,7 @@ maybe-configure-stage[+id+]-[+prefix+][+module+]:
|
||||
@if [+module+]-bootstrap
|
||||
maybe-configure-stage[+id+]-[+prefix+][+module+]: configure-stage[+id+]-[+prefix+][+module+]
|
||||
configure-stage[+id+]-[+prefix+][+module+]: [+deps+]
|
||||
@$(MAKE) stage[+id+]-start
|
||||
@[ `cat stage_current` = stage[+id+] ] || $(MAKE) stage[+id+]-start
|
||||
@[ -f [+subdir+]/[+module+]/Makefile ] && exit 0 || : ; \
|
||||
r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
@ -974,7 +1013,8 @@ TARGET-[+prefix+][+module+]=[+
|
||||
maybe-all-[+prefix+][+module+]: all-[+prefix+][+module+]
|
||||
all-[+prefix+][+module+]: configure-[+prefix+][+module+]
|
||||
@[+ IF bootstrap +]test -f stage_last && exit 0; \
|
||||
[+ ENDIF bootstrap +]r=`${PWD_COMMAND}`; export r; \
|
||||
[+ ELSE bootstrap +]$(unstage)
|
||||
@[+ ENDIF bootstrap +]r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
[+exports+] \
|
||||
(cd [+subdir+]/[+module+] && \
|
||||
@ -990,8 +1030,9 @@ maybe-clean-stage[+id+]-[+prefix+][+module+]:
|
||||
@if [+module+]-bootstrap
|
||||
maybe-all-stage[+id+]-[+prefix+][+module+]: all-stage[+id+]-[+prefix+][+module+]
|
||||
all-stage[+id+]: all-stage[+id+]-[+prefix+][+module+]
|
||||
TARGET-stage[+id+]-[+prefix+][+module+] = $(TARGET-[+prefix+][+module+])
|
||||
all-stage[+id+]-[+prefix+][+module+]: configure-stage[+id+]-[+prefix+][+module+]
|
||||
@$(MAKE) stage[+id+]-start
|
||||
@[ `cat stage_current` = stage[+id+] ] || $(MAKE) stage[+id+]-start
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
[+exports+][+ IF prev +] \
|
||||
@ -999,14 +1040,15 @@ all-stage[+id+]-[+prefix+][+module+]: configure-stage[+id+]-[+prefix+][+module+]
|
||||
cd [+subdir+]/[+module+] && \
|
||||
$(MAKE) [+args+] [+ IF prev
|
||||
+][+poststage1_args+][+ ENDIF prev
|
||||
+] [+stage_make_flags+] [+extra_make_flags+]
|
||||
+] [+stage_make_flags+] [+extra_make_flags+] \
|
||||
$(TARGET-stage[+id+]-[+prefix+][+module+])
|
||||
|
||||
maybe-clean-stage[+id+]-[+prefix+][+module+]: clean-stage[+id+]-[+prefix+][+module+]
|
||||
clean-stage[+id+]: clean-stage[+id+]-[+prefix+][+module+]
|
||||
clean-stage[+id+]-[+prefix+][+module+]:
|
||||
@[ -f [+subdir+]/[+module+]/Makefile ] || [ -f [+subdir+]/stage[+id+]-[+module+]/Makefile ] \
|
||||
|| exit 0 ; \
|
||||
[ -f [+subdir+]/[+module+]/Makefile ] || $(MAKE) stage[+id+]-start ; \
|
||||
@[ `cat stage_current` = stage[+id+] ] || $(MAKE) stage[+id+]-start
|
||||
cd [+subdir+]/[+module+] && \
|
||||
$(MAKE) [+args+] [+ IF prev +] \
|
||||
[+poststage1_args+] [+ ENDIF prev +] \
|
||||
@ -1051,6 +1093,7 @@ check-[+module+]:
|
||||
[+ ELIF no_check_cross +]
|
||||
# This module is only tested in a native toolchain.
|
||||
check-[+module+]:
|
||||
@$(unstage)
|
||||
@if [ '$(host)' = '$(target)' ] ; then \
|
||||
r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
@ -1060,6 +1103,7 @@ check-[+module+]:
|
||||
fi
|
||||
[+ ELSE check +]
|
||||
check-[+module+]:
|
||||
@$(unstage)
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
$(HOST_EXPORTS) \
|
||||
@ -1076,6 +1120,7 @@ maybe-install-[+module+]: install-[+module+]
|
||||
install-[+module+]:
|
||||
[+ ELSE install +]
|
||||
install-[+module+]: installdirs
|
||||
@$(unstage)
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
$(HOST_EXPORTS) \
|
||||
@ -1098,7 +1143,8 @@ maybe-[+make_target+]-[+module+]: [+make_target+]-[+module+]
|
||||
FOR depend +]\
|
||||
[+depend+]-[+module+] [+
|
||||
ENDFOR depend +]
|
||||
@[ -f ./[+module+]/Makefile ] || exit 0; \
|
||||
@[+ IF bootstrap +][+ ELSE +]$(unstage)
|
||||
@[+ ENDIF bootstrap +][ -f ./[+module+]/Makefile ] || exit 0; \
|
||||
r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
$(HOST_EXPORTS) \
|
||||
@ -1160,6 +1206,7 @@ maybe-check-target-[+module+]: check-target-[+module+]
|
||||
check-target-[+module+]:
|
||||
[+ ELSE check +]
|
||||
check-target-[+module+]:
|
||||
@$(unstage)
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \[+
|
||||
IF raw_cxx +]
|
||||
@ -1185,6 +1232,7 @@ maybe-install-target-[+module+]: install-target-[+module+]
|
||||
install-target-[+module+]:
|
||||
[+ ELSE install +]
|
||||
install-target-[+module+]: installdirs
|
||||
@$(unstage)
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \[+
|
||||
IF raw_cxx +]
|
||||
@ -1211,6 +1259,7 @@ maybe-[+make_target+]-target-[+module+]: [+make_target+]-target-[+module+]
|
||||
FOR depend +]\
|
||||
[+depend+]-target-[+module+] [+
|
||||
ENDFOR depend +]
|
||||
@$(unstage)
|
||||
@[ -f $(TARGET_SUBDIR)/[+module+]/Makefile ] || exit 0 ; \
|
||||
r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \[+
|
||||
@ -1352,17 +1401,23 @@ gcc-no-fixedincludes:
|
||||
# stage_last instead tracks the stage that was built last. These targets
|
||||
# are dummy when toplevel bootstrap is not active.
|
||||
|
||||
.PHONY: unstage
|
||||
unstage:
|
||||
# While making host and target tools, symlinks to the final stage must be
|
||||
# there, so $(MAKE) $(unstage) should be run at various points. To avoid
|
||||
# excessive recursive invocations of make, we "inline" them using a variable.
|
||||
|
||||
unstage = :
|
||||
stage = :
|
||||
|
||||
@if gcc-bootstrap
|
||||
@[ -f stage_current ] || $(MAKE) `cat stage_last`-start
|
||||
unstage = [ -f stage_current ] || $(MAKE) `cat stage_last`-start
|
||||
stage = $(MAKE) `cat stage_current`-end
|
||||
@endif gcc-bootstrap
|
||||
|
||||
.PHONY: stage
|
||||
.PHONY: unstage stage
|
||||
unstage:
|
||||
@$(unstage)
|
||||
stage:
|
||||
@if gcc-bootstrap
|
||||
@$(MAKE) `cat stage_current`-end
|
||||
@endif gcc-bootstrap
|
||||
@$(stage)
|
||||
|
||||
# We name the build directories for the various stages "stage1-gcc",
|
||||
# "stage2-gcc","stage3-gcc", etc.
|
||||
@ -1375,19 +1430,6 @@ stage:
|
||||
# mv on platforms where symlinks to directories do not work or are not
|
||||
# reliable.
|
||||
|
||||
# At the end of the bootstrap, a symlink to 'stage3-gcc' named 'gcc' must
|
||||
# be kept, so that libraries can find it. Ick!
|
||||
|
||||
# It would be best to preinstall gcc into a staging area (and in the
|
||||
# future, gather there all prebootstrap packages). This would allow
|
||||
# assemblers and linkers can be bootstrapped as well as the compiler
|
||||
# (both in a combined tree, or separately). This however requires some
|
||||
# change to the gcc driver, again in order to avoid comparison failures.
|
||||
|
||||
# Bugs: This is crippled when doing parallel make, the `make all-host'
|
||||
# and `make all-target' phases can be parallelized.
|
||||
|
||||
|
||||
# 'touch' doesn't work right on some platforms.
|
||||
STAMP = echo timestamp >
|
||||
|
||||
@ -1472,7 +1514,8 @@ stage[+id+]-bubble:: [+ IF prev +]stage[+prev+]-bubble[+ ENDIF +][+IF lean +]
|
||||
IF prev +]|| test -f stage[+prev+]-lean [+ ENDIF prev +] ; then \
|
||||
echo Skipping rebuild of stage[+id+] ; \
|
||||
else \
|
||||
$(MAKE) $(RECURSE_FLAGS_TO_PASS) NOTPARALLEL= all-stage[+id+]; \
|
||||
$(MAKE) stage[+id+]-start; \
|
||||
$(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stage[+id+]; \
|
||||
fi
|
||||
|
||||
.PHONY: all-stage[+id+] clean-stage[+id+]
|
||||
@ -1497,7 +1540,14 @@ do-clean: clean-stage[+id+]
|
||||
for file in $${files} ; do \
|
||||
f1=$$r/stage[+prev+]-gcc/$$file; f2=$$r/stage[+id+]-gcc/$$file; \
|
||||
@do_compare@ > /dev/null 2>&1; \
|
||||
test $$? -eq 1 && echo $$file differs >> .bad_compare || true; \
|
||||
if test $$? -eq 1; then \
|
||||
case $$file in \
|
||||
./cc*-checksum$(objext) | ./libgcc/* ) \
|
||||
echo warning: $$file differs ;; \
|
||||
*) \
|
||||
echo $$file differs >> .bad_compare ;; \
|
||||
esac ; \
|
||||
fi ; \
|
||||
done ; \
|
||||
if [ -f .bad_compare ]; then \
|
||||
echo "Bootstrap comparison failure!"; \
|
||||
@ -1512,7 +1562,9 @@ do-clean: clean-stage[+id+]
|
||||
|
||||
[+ IF bootstrap-target +]
|
||||
.PHONY: [+bootstrap-target+]
|
||||
[+bootstrap-target+]: stage[+id+]-bubble [+compare-target+] all
|
||||
[+bootstrap-target+]: stage[+id+]-bubble
|
||||
[+ IF compare-target +]$(MAKE) [+compare-target+]
|
||||
[+ ENDIF compare-target +]$(MAKE) $(RECURSE_FLAGS_TO_PASS) all
|
||||
[+ ENDIF bootstrap-target +]
|
||||
|
||||
# Rules to wipe a stage and all the following ones, also used for cleanstrap
|
||||
@ -1545,8 +1597,6 @@ stagefeedback-start::
|
||||
done
|
||||
|
||||
@if gcc-bootstrap
|
||||
NOTPARALLEL = .NOTPARALLEL
|
||||
$(NOTPARALLEL):
|
||||
do-distclean: distclean-stage1
|
||||
@endif gcc-bootstrap
|
||||
|
||||
|
101
configure
vendored
101
configure
vendored
@ -3194,19 +3194,15 @@ esac
|
||||
case "$enable_bootstrap" in
|
||||
yes)
|
||||
bootstrap_lean='#'
|
||||
default_target=bootstrap
|
||||
bootstrap_suffix=bootstrap ;;
|
||||
lean)
|
||||
bootstrap_lean=''
|
||||
default_target=bootstrap
|
||||
bootstrap_suffix=bootstrap ;;
|
||||
no)
|
||||
default_target=all
|
||||
bootstrap_suffix=no-bootstrap ;;
|
||||
esac
|
||||
|
||||
|
||||
|
||||
for module in ${build_configdirs} ; do
|
||||
if test -z "${no_recursion}" \
|
||||
&& test -f ${build_subdir}/${module}/Makefile; then
|
||||
@ -3521,7 +3517,7 @@ test -n "$target_alias" && ncn_target_tool_prefix=$target_alias-
|
||||
# Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3525: checking for $ac_word" >&5
|
||||
echo "configure:3521: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3552,7 +3548,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3556: checking for $ac_word" >&5
|
||||
echo "configure:3552: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3596,7 +3592,7 @@ fi
|
||||
# Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3600: checking for $ac_word" >&5
|
||||
echo "configure:3596: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3627,7 +3623,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3631: checking for $ac_word" >&5
|
||||
echo "configure:3627: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3671,7 +3667,7 @@ fi
|
||||
# Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3675: checking for $ac_word" >&5
|
||||
echo "configure:3671: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3702,7 +3698,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3706: checking for $ac_word" >&5
|
||||
echo "configure:3702: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3746,7 +3742,7 @@ fi
|
||||
# Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3750: checking for $ac_word" >&5
|
||||
echo "configure:3746: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3777,7 +3773,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3781: checking for $ac_word" >&5
|
||||
echo "configure:3777: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3821,7 +3817,7 @@ fi
|
||||
# Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3825: checking for $ac_word" >&5
|
||||
echo "configure:3821: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_NM'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3852,7 +3848,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3856: checking for $ac_word" >&5
|
||||
echo "configure:3852: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_NM'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3896,7 +3892,7 @@ fi
|
||||
# Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3900: checking for $ac_word" >&5
|
||||
echo "configure:3896: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3927,7 +3923,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3931: checking for $ac_word" >&5
|
||||
echo "configure:3927: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3966,7 +3962,7 @@ fi
|
||||
# Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3970: checking for $ac_word" >&5
|
||||
echo "configure:3966: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3997,7 +3993,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4001: checking for $ac_word" >&5
|
||||
echo "configure:3997: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4041,7 +4037,7 @@ fi
|
||||
# Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4045: checking for $ac_word" >&5
|
||||
echo "configure:4041: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_OBJCOPY'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4072,7 +4068,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4076: checking for $ac_word" >&5
|
||||
echo "configure:4072: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_OBJCOPY'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4116,7 +4112,7 @@ fi
|
||||
# Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4120: checking for $ac_word" >&5
|
||||
echo "configure:4116: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4147,7 +4143,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4151: checking for $ac_word" >&5
|
||||
echo "configure:4147: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4199,7 +4195,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4203: checking for $ac_word" >&5
|
||||
echo "configure:4199: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_AR_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4230,7 +4226,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4234: checking for $ac_word" >&5
|
||||
echo "configure:4230: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_AR_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4274,7 +4270,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4278: checking for $ac_word" >&5
|
||||
echo "configure:4274: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_AS_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4305,7 +4301,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4309: checking for $ac_word" >&5
|
||||
echo "configure:4305: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_AS_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4349,7 +4345,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4353: checking for $ac_word" >&5
|
||||
echo "configure:4349: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_CC_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4380,7 +4376,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4384: checking for $ac_word" >&5
|
||||
echo "configure:4380: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_CC_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4424,7 +4420,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4428: checking for $ac_word" >&5
|
||||
echo "configure:4424: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_CXX_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4455,7 +4451,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4459: checking for $ac_word" >&5
|
||||
echo "configure:4455: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_CXX_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4499,7 +4495,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4503: checking for $ac_word" >&5
|
||||
echo "configure:4499: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4530,7 +4526,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4534: checking for $ac_word" >&5
|
||||
echo "configure:4530: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4574,7 +4570,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4578: checking for $ac_word" >&5
|
||||
echo "configure:4574: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_GCC_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4605,7 +4601,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4609: checking for $ac_word" >&5
|
||||
echo "configure:4605: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_GCC_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4644,7 +4640,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4648: checking for $ac_word" >&5
|
||||
echo "configure:4644: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_GCJ_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4675,7 +4671,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4679: checking for $ac_word" >&5
|
||||
echo "configure:4675: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_GCJ_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4719,7 +4715,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4723: checking for $ac_word" >&5
|
||||
echo "configure:4719: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_GFORTRAN_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4750,7 +4746,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4754: checking for $ac_word" >&5
|
||||
echo "configure:4750: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_GFORTRAN_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4794,7 +4790,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4798: checking for $ac_word" >&5
|
||||
echo "configure:4794: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_LD_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4825,7 +4821,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4829: checking for $ac_word" >&5
|
||||
echo "configure:4825: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_LD_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4869,7 +4865,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4873: checking for $ac_word" >&5
|
||||
echo "configure:4869: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_LIPO_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4900,7 +4896,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4904: checking for $ac_word" >&5
|
||||
echo "configure:4900: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_LIPO_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4944,7 +4940,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4948: checking for $ac_word" >&5
|
||||
echo "configure:4944: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_NM_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4975,7 +4971,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:4979: checking for $ac_word" >&5
|
||||
echo "configure:4975: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_NM_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -5019,7 +5015,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:5023: checking for $ac_word" >&5
|
||||
echo "configure:5019: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -5050,7 +5046,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:5054: checking for $ac_word" >&5
|
||||
echo "configure:5050: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -5089,7 +5085,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:5093: checking for $ac_word" >&5
|
||||
echo "configure:5089: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_STRIP_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -5120,7 +5116,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:5124: checking for $ac_word" >&5
|
||||
echo "configure:5120: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_STRIP_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -5164,7 +5160,7 @@ fi
|
||||
# Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:5168: checking for $ac_word" >&5
|
||||
echo "configure:5164: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_WINDRES_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -5195,7 +5191,7 @@ fi
|
||||
# Extract the first word of "${ncn_progname}", so it can be a program name with args.
|
||||
set dummy ${ncn_progname}; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:5199: checking for $ac_word" >&5
|
||||
echo "configure:5195: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_WINDRES_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -5302,7 +5298,7 @@ RANLIB_FOR_TARGET=${RANLIB_FOR_TARGET}${extra_ranlibflags_for_target}
|
||||
NM_FOR_TARGET=${NM_FOR_TARGET}${extra_nmflags_for_target}
|
||||
|
||||
echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
|
||||
echo "configure:5306: checking whether to enable maintainer-specific portions of Makefiles" >&5
|
||||
echo "configure:5302: checking whether to enable maintainer-specific portions of Makefiles" >&5
|
||||
# Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
|
||||
if test "${enable_maintainer_mode+set}" = set; then
|
||||
enableval="$enable_maintainer_mode"
|
||||
@ -5349,7 +5345,7 @@ esac
|
||||
# gcc for stageN-gcc and stagePREV-gcc for stage(N-1). In case this is not
|
||||
# possible, however, we can resort to mv.
|
||||
echo $ac_n "checking if symbolic links between directories work""... $ac_c" 1>&6
|
||||
echo "configure:5353: checking if symbolic links between directories work" >&5
|
||||
echo "configure:5349: checking if symbolic links between directories work" >&5
|
||||
if eval "test \"`echo '$''{'gcc_cv_prog_ln_s_dir'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -5580,7 +5576,6 @@ s%@CONFIGURED_FLEX@%$CONFIGURED_FLEX%g
|
||||
s%@CONFIGURED_LEX@%$CONFIGURED_LEX%g
|
||||
s%@CONFIGURED_MAKEINFO@%$CONFIGURED_MAKEINFO%g
|
||||
s%@bootstrap_lean@%$bootstrap_lean%g
|
||||
s%@default_target@%$default_target%g
|
||||
/@serialization_dependencies@/r $serialization_dependencies
|
||||
s%@serialization_dependencies@%%g
|
||||
/@host_makefile_frag@/r $host_makefile_frag
|
||||
|
@ -1780,18 +1780,14 @@ esac
|
||||
case "$enable_bootstrap" in
|
||||
yes)
|
||||
bootstrap_lean='#'
|
||||
default_target=bootstrap
|
||||
bootstrap_suffix=bootstrap ;;
|
||||
lean)
|
||||
bootstrap_lean=''
|
||||
default_target=bootstrap
|
||||
bootstrap_suffix=bootstrap ;;
|
||||
no)
|
||||
default_target=all
|
||||
bootstrap_suffix=no-bootstrap ;;
|
||||
esac
|
||||
AC_SUBST(bootstrap_lean)
|
||||
AC_SUBST(default_target)
|
||||
|
||||
for module in ${build_configdirs} ; do
|
||||
if test -z "${no_recursion}" \
|
||||
|
Loading…
x
Reference in New Issue
Block a user