re PR middle-end/24252 (Missing "warning: control reaches end of non-void function" in static function)
2006-01-04 Paolo Bonzini <bonzini@gnu.org> PR bootstrap/24252 * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES. * Makefile.tpl (OBJDUMP): New. (EXTRA_HOST_FLAGS): Add it. (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass. * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try to use symbolic links between directories. Avoid race conditions or make them harmless. * configure.in: Do not try to use symbolic links between directories. * Makefile.def (LEAN): Pass. * Makefile.tpl (LEAN): Define. (stage[+id+]-start): Accept that the previous directory does not exist, if the bootstrap is lean. (stage[+id+]-bubble): Invoke lean bootstrap commands after stage[+id+]-start. Use a makefile variable and an `if' instead of a configure substitution. ([+compare-target+]): Likewise. ([+bootstrap-target+]-lean): New. * configure.in: Remove lean bootstrap support from here. * Makefile.in: Regenerate. * configure: Regenerate. From-SVN: r109325
This commit is contained in:
parent
f7ace77f1f
commit
2d309510df
28
ChangeLog
28
ChangeLog
@ -1,3 +1,31 @@
|
||||
2006-01-04 Paolo Bonzini <bonzini@gnu.org>
|
||||
|
||||
PR bootstrap/24252
|
||||
|
||||
* Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
|
||||
* Makefile.tpl (OBJDUMP): New.
|
||||
(EXTRA_HOST_FLAGS): Add it.
|
||||
(EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
|
||||
|
||||
* Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
|
||||
to use symbolic links between directories. Avoid race conditions
|
||||
or make them harmless.
|
||||
* configure.in: Do not try to use symbolic links between directories.
|
||||
|
||||
* Makefile.def (LEAN): Pass.
|
||||
* Makefile.tpl (LEAN): Define.
|
||||
(stage[+id+]-start): Accept that the previous directory does not
|
||||
exist, if the bootstrap is lean.
|
||||
(stage[+id+]-bubble): Invoke lean bootstrap commands after
|
||||
stage[+id+]-start. Use a makefile variable and an `if' instead of a
|
||||
configure substitution.
|
||||
([+compare-target+]): Likewise.
|
||||
([+bootstrap-target+]-lean): New.
|
||||
* configure.in: Remove lean bootstrap support from here.
|
||||
|
||||
* Makefile.in: Regenerate.
|
||||
* configure: Regenerate.
|
||||
|
||||
2006-01-04 Ben Elliston <bje@au.ibm.com>
|
||||
|
||||
* MAINTAINERS (libdecnumber): Add myself.
|
||||
|
@ -4,7 +4,7 @@ AutoGen definitions Makefile.tpl;
|
||||
// Makefile.in is generated from Makefile.tpl by 'autogen Makefile.def'.
|
||||
// This file was originally written by Nathanael Nerode.
|
||||
//
|
||||
// Copyright 2002, 2003 Free Software Foundation
|
||||
// Copyright 2002, 2003, 2004, 2005, 2006 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
|
||||
@ -213,6 +213,8 @@ flags_to_pass = { flag= CXXFLAGS ; };
|
||||
flags_to_pass = { flag= LDFLAGS ; };
|
||||
flags_to_pass = { flag= LIBCFLAGS ; };
|
||||
flags_to_pass = { flag= LIBCXXFLAGS ; };
|
||||
flags_to_pass = { flag= STAGE1_CFLAGS ; };
|
||||
flags_to_pass = { flag= STAGE1_LANGUAGES ; };
|
||||
|
||||
// Target tools
|
||||
flags_to_pass = { flag= AR_FOR_TARGET ; };
|
||||
@ -236,6 +238,9 @@ flags_to_pass = { flag= RANLIB_FOR_TARGET ; };
|
||||
flags_to_pass = { flag= STRIP_FOR_TARGET ; };
|
||||
flags_to_pass = { flag= WINDRES_FOR_TARGET ; };
|
||||
|
||||
// Miscellaneous
|
||||
flags_to_pass = { flag= LEAN ; };
|
||||
|
||||
// Inter-module dependencies
|
||||
|
||||
// Build modules
|
||||
|
1028
Makefile.in
1028
Makefile.in
File diff suppressed because it is too large
Load Diff
65
Makefile.tpl
65
Makefile.tpl
@ -6,7 +6,7 @@ in
|
||||
#
|
||||
# Makefile for directory with subdirs to build.
|
||||
# Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
|
||||
# 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation
|
||||
# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 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
|
||||
@ -285,6 +285,7 @@ DLLTOOL = @DLLTOOL@
|
||||
LD = @LD@
|
||||
LIPO = @LIPO@
|
||||
NM = @NM@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
RANLIB = @RANLIB@
|
||||
STRIP = @STRIP@
|
||||
WINDRES = @WINDRES@
|
||||
@ -407,6 +408,7 @@ EXTRA_HOST_FLAGS = \
|
||||
'LD=$(LD)' \
|
||||
'LIPO=$(LIPO)' \
|
||||
'NM=$(NM)' \
|
||||
'OBJDUMP=$(OBJDUMP)' \
|
||||
'RANLIB=$(RANLIB)' \
|
||||
'STRIP=$(STRIP)' \
|
||||
'WINDRES=$(WINDRES)'
|
||||
@ -464,8 +466,6 @@ EXTRA_GCC_FLAGS = \
|
||||
"`echo 'LIBGCC2_CFLAGS=$(LIBGCC2_CFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
||||
"`echo 'LIBGCC2_DEBUG_CFLAGS=$(LIBGCC2_DEBUG_CFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
||||
"`echo 'LIBGCC2_INCLUDES=$(LIBGCC2_INCLUDES)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
||||
"`echo 'STAGE1_CFLAGS=$(STAGE1_CFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
||||
"`echo 'BOOT_CFLAGS=$(BOOT_CFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
||||
"`echo 'BOOT_ADAFLAGS=$(BOOT_ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`"
|
||||
|
||||
GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS)
|
||||
@ -1222,6 +1222,9 @@ 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.
|
||||
|
||||
@ -1277,48 +1280,43 @@ stage[+id+]-start::
|
||||
@if [+ module +]
|
||||
@cd $(HOST_SUBDIR); [ -d stage[+id+]-[+module+] ] || \
|
||||
mkdir stage[+id+]-[+module+]; \
|
||||
set stage[+id+]-[+module+] [+module+] ; \
|
||||
@CREATE_LINK_TO_DIR@ [+ IF prev +] ; \
|
||||
set stage[+prev+]-[+module+] prev-[+module+] ; \
|
||||
@CREATE_LINK_TO_DIR@ [+ ENDIF prev +]
|
||||
mv stage[+id+]-[+module+] [+module+] [+ IF prev +] ; \
|
||||
mv stage[+prev+]-[+module+] prev-[+module+] || test -f stage[+prev+]-lean [+ ENDIF prev +]
|
||||
@endif [+ module +][+ ENDIF bootstrap +][+ ENDFOR host_modules +]
|
||||
@[ -d stage[+id+]-$(TARGET_SUBDIR) ] || \
|
||||
mkdir stage[+id+]-$(TARGET_SUBDIR); \
|
||||
set stage[+id+]-$(TARGET_SUBDIR) $(TARGET_SUBDIR) ; \
|
||||
@CREATE_LINK_TO_DIR@ [+ IF prev +] ; \
|
||||
set stage[+prev+]-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) ; \
|
||||
@CREATE_LINK_TO_DIR@ [+ ENDIF prev +]
|
||||
mv stage[+id+]-$(TARGET_SUBDIR) $(TARGET_SUBDIR) [+ IF prev +] ; \
|
||||
mv stage[+prev+]-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage[+prev+]-lean [+ ENDIF prev +]
|
||||
|
||||
stage[+id+]-end::
|
||||
@rm -f stage_current[+ FOR host_modules +][+ IF bootstrap +]
|
||||
stage[+id+]-end:: [+ FOR host_modules +][+ IF bootstrap +]
|
||||
@if [+ module +]
|
||||
@if test -d $(HOST_SUBDIR) ; then \
|
||||
cd $(HOST_SUBDIR); set [+module+] stage[+id+]-[+module+] ; \
|
||||
@UNDO_LINK_TO_DIR@ [+ IF prev +] ; \
|
||||
set prev-[+module+] stage[+prev+]-[+module+] ; \
|
||||
@UNDO_LINK_TO_DIR@ [+ ENDIF prev +] ; \
|
||||
@if test -d $(HOST_SUBDIR)/[+module+] ; then \
|
||||
cd $(HOST_SUBDIR); mv [+module+] stage[+id+]-[+module+] [+ IF prev +]; \
|
||||
mv prev-[+module+] stage[+prev+]-[+module+] ; : [+ ENDIF prev +] ; \
|
||||
fi
|
||||
@endif [+ module +][+ ENDIF bootstrap +][+ ENDFOR host_modules +]
|
||||
@if test -d $(TARGET_SUBDIR) ; then \
|
||||
set $(TARGET_SUBDIR) stage[+id+]-$(TARGET_SUBDIR) ; \
|
||||
@UNDO_LINK_TO_DIR@ [+ IF prev +] ; \
|
||||
set prev-$(TARGET_SUBDIR) stage[+prev+]-$(TARGET_SUBDIR) ; \
|
||||
@UNDO_LINK_TO_DIR@ [+ ENDIF prev +] ; \
|
||||
mv $(TARGET_SUBDIR) stage[+id+]-$(TARGET_SUBDIR) [+ IF prev +] ; \
|
||||
mv prev-$(TARGET_SUBDIR) stage[+prev+]-$(TARGET_SUBDIR) ; : [+ ENDIF prev +] ; \
|
||||
fi
|
||||
rm -f stage_current
|
||||
|
||||
# Bubble a bugfix through all the stages up to stage [+id+]. They are
|
||||
# remade, but not reconfigured. The next stage (if any) will not be
|
||||
# reconfigured as well.
|
||||
.PHONY: stage[+id+]-bubble
|
||||
stage[+id+]-bubble:: [+ IF prev +]stage[+prev+]-bubble[+ ENDIF +][+IF lean +]
|
||||
@bootstrap_lean@-rm -rf stage[+lean+]-* ; $(STAMP) stage[+lean+]-lean[+ ENDIF lean +]
|
||||
stage[+id+]-bubble:: [+ IF prev +]stage[+prev+]-bubble[+ ENDIF +]
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
if test -f stage[+id+]-lean [+
|
||||
IF prev +]|| test -f stage[+prev+]-lean [+ ENDIF prev +] ; then \
|
||||
echo Skipping rebuild of stage[+id+] ; \
|
||||
else \
|
||||
$(MAKE) stage[+id+]-start; \
|
||||
$(MAKE) stage[+id+]-start; \[+IF lean +]
|
||||
if $(LEAN); then \
|
||||
rm -rf stage[+lean+]-* ; \
|
||||
$(STAMP) stage[+lean+]-lean ; \
|
||||
fi; \[+ ENDIF lean +]
|
||||
$(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stage[+id+]; \
|
||||
fi[+ IF compare-target +]
|
||||
$(MAKE) $(RECURSE_FLAGS_TO_PASS) [+compare-target+][+ ENDIF compare-target +]
|
||||
@ -1362,11 +1360,14 @@ do-clean: clean-stage[+id+]
|
||||
true; \
|
||||
fi ; \
|
||||
$(STAMP) [+compare-target+][+ IF prev +]
|
||||
@bootstrap_lean@-rm -rf stage[+prev+]-* ; $(STAMP) stage[+prev+]-lean[+ ENDIF prev +]
|
||||
if $(LEAN); then \
|
||||
rm -rf stage[+prev+]-*; \
|
||||
$(STAMP) stage[+prev+]-lean; \
|
||||
fi[+ ENDIF prev +]
|
||||
[+ ENDIF compare-target +]
|
||||
|
||||
[+ IF bootstrap-target +]
|
||||
.PHONY: [+bootstrap-target+]
|
||||
.PHONY: [+bootstrap-target+] [+bootstrap-target+]-lean
|
||||
[+bootstrap-target+]:
|
||||
echo stage[+id+] > stage_final
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
@ -1376,6 +1377,16 @@ do-clean: clean-stage[+id+]
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
||||
|
||||
[+bootstrap-target+]-lean:
|
||||
echo stage[+id+] > stage_final
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LEAN=: stage[+id+]-bubble
|
||||
@: $(MAKE); $(unstage)
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
||||
[+ ENDIF bootstrap-target +]
|
||||
|
||||
# Rules to wipe a stage and all the following ones, also used for cleanstrap
|
||||
|
206
configure
vendored
206
configure
vendored
@ -27,7 +27,7 @@ ac_help="$ac_help
|
||||
--with-build-sysroot=sysroot
|
||||
use sysroot as the system root during the build"
|
||||
ac_help="$ac_help
|
||||
--enable-bootstrap[=lean] Enable bootstrapping [no]"
|
||||
--enable-bootstrap Enable bootstrapping [yes if native build]"
|
||||
ac_help="$ac_help
|
||||
--enable-serial-[{host,target,build}-]configure
|
||||
Force sequential configuration of
|
||||
@ -2967,17 +2967,17 @@ case "$have_compiler:$host:$target:$enable_bootstrap" in
|
||||
enable_bootstrap=no ;;
|
||||
|
||||
# We have a compiler and we are in a native configuration, bootstrap is ok
|
||||
yes:$build:$build:yes | yes:$build:$build:lean)
|
||||
yes:$build:$build:yes)
|
||||
;;
|
||||
|
||||
# Other configurations, but we have a compiler. Assume the user knows
|
||||
# what he's doing.
|
||||
yes:*:*:yes | yes:*:*:lean)
|
||||
yes:*:*:yes)
|
||||
echo "configure: warning: trying to bootstrap a cross compiler" 1>&2
|
||||
;;
|
||||
|
||||
# No compiler: if they passed --enable-bootstrap explicitly, fail
|
||||
no:*:*:yes | no:*:*:lean)
|
||||
no:*:*:yes)
|
||||
{ echo "configure: error: cannot bootstrap without a compiler" 1>&2; exit 1; } ;;
|
||||
|
||||
# Fail if wrong command line
|
||||
@ -2989,16 +2989,11 @@ esac
|
||||
# Adjust the toplevel makefile according to whether bootstrap was selected.
|
||||
case "$enable_bootstrap" in
|
||||
yes)
|
||||
bootstrap_lean='#'
|
||||
bootstrap_suffix=bootstrap ;;
|
||||
lean)
|
||||
bootstrap_lean=''
|
||||
bootstrap_suffix=bootstrap ;;
|
||||
no)
|
||||
bootstrap_suffix=no-bootstrap ;;
|
||||
esac
|
||||
|
||||
|
||||
for module in ${build_configdirs} ; do
|
||||
if test -z "${no_recursion}" \
|
||||
&& test -f ${build_subdir}/${module}/Makefile; then
|
||||
@ -3317,7 +3312,7 @@ do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3318: checking for $ac_word" >&5
|
||||
echo "configure:3316: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3357,7 +3352,7 @@ do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3358: checking for $ac_word" >&5
|
||||
echo "configure:3356: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_BISON'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3396,7 +3391,7 @@ do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3397: checking for $ac_word" >&5
|
||||
echo "configure:3395: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_M4'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3435,7 +3430,7 @@ do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3436: checking for $ac_word" >&5
|
||||
echo "configure:3434: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3475,7 +3470,7 @@ do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3476: checking for $ac_word" >&5
|
||||
echo "configure:3474: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_FLEX'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3514,7 +3509,7 @@ do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3515: checking for $ac_word" >&5
|
||||
echo "configure:3513: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_MAKEINFO'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3567,7 +3562,7 @@ do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3568: checking for $ac_word" >&5
|
||||
echo "configure:3566: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_EXPECT'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3608,7 +3603,7 @@ do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
echo "configure:3609: checking for $ac_word" >&5
|
||||
echo "configure:3607: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_RUNTEST'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3656,7 +3651,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:3657: checking for $ac_word" >&5
|
||||
echo "configure:3655: 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
|
||||
@ -3687,7 +3682,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:3688: checking for $ac_word" >&5
|
||||
echo "configure:3686: 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
|
||||
@ -3731,7 +3726,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:3732: checking for $ac_word" >&5
|
||||
echo "configure:3730: 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
|
||||
@ -3762,7 +3757,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:3763: checking for $ac_word" >&5
|
||||
echo "configure:3761: 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
|
||||
@ -3806,7 +3801,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:3807: checking for $ac_word" >&5
|
||||
echo "configure:3805: 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
|
||||
@ -3837,7 +3832,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:3838: checking for $ac_word" >&5
|
||||
echo "configure:3836: 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
|
||||
@ -3881,7 +3876,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:3882: checking for $ac_word" >&5
|
||||
echo "configure:3880: 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
|
||||
@ -3912,7 +3907,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:3913: checking for $ac_word" >&5
|
||||
echo "configure:3911: 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
|
||||
@ -3956,7 +3951,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:3957: checking for $ac_word" >&5
|
||||
echo "configure:3955: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_LIPO'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -3987,7 +3982,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:3988: checking for $ac_word" >&5
|
||||
echo "configure:3986: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_LIPO'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4031,7 +4026,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:4032: checking for $ac_word" >&5
|
||||
echo "configure:4030: 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
|
||||
@ -4062,7 +4057,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:4063: checking for $ac_word" >&5
|
||||
echo "configure:4061: 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
|
||||
@ -4106,7 +4101,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:4107: checking for $ac_word" >&5
|
||||
echo "configure:4105: 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
|
||||
@ -4137,7 +4132,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:4138: checking for $ac_word" >&5
|
||||
echo "configure:4136: 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
|
||||
@ -4176,7 +4171,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:4177: checking for $ac_word" >&5
|
||||
echo "configure:4175: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4207,7 +4202,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:4208: checking for $ac_word" >&5
|
||||
echo "configure:4206: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -4246,7 +4241,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:4247: checking for $ac_word" >&5
|
||||
echo "configure:4245: 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
|
||||
@ -4277,7 +4272,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:4278: checking for $ac_word" >&5
|
||||
echo "configure:4276: 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
|
||||
@ -4321,7 +4316,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:4322: checking for $ac_word" >&5
|
||||
echo "configure:4320: 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
|
||||
@ -4352,7 +4347,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:4353: checking for $ac_word" >&5
|
||||
echo "configure:4351: 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
|
||||
@ -4396,7 +4391,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:4397: checking for $ac_word" >&5
|
||||
echo "configure:4395: 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
|
||||
@ -4427,7 +4422,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:4428: checking for $ac_word" >&5
|
||||
echo "configure:4426: 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
|
||||
@ -4478,7 +4473,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:4479: checking for $ac_word" >&5
|
||||
echo "configure:4477: 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
|
||||
@ -4509,7 +4504,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:4510: checking for $ac_word" >&5
|
||||
echo "configure:4508: 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
|
||||
@ -4553,7 +4548,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:4554: checking for $ac_word" >&5
|
||||
echo "configure:4552: 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
|
||||
@ -4584,7 +4579,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:4585: checking for $ac_word" >&5
|
||||
echo "configure:4583: 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
|
||||
@ -4628,7 +4623,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:4629: checking for $ac_word" >&5
|
||||
echo "configure:4627: 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
|
||||
@ -4659,7 +4654,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:4660: checking for $ac_word" >&5
|
||||
echo "configure:4658: 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
|
||||
@ -4703,7 +4698,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:4704: checking for $ac_word" >&5
|
||||
echo "configure:4702: 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
|
||||
@ -4734,7 +4729,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:4735: checking for $ac_word" >&5
|
||||
echo "configure:4733: 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
|
||||
@ -4778,7 +4773,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:4779: checking for $ac_word" >&5
|
||||
echo "configure:4777: 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
|
||||
@ -4809,7 +4804,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:4810: checking for $ac_word" >&5
|
||||
echo "configure:4808: 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
|
||||
@ -4853,7 +4848,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:4854: checking for $ac_word" >&5
|
||||
echo "configure:4852: 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
|
||||
@ -4884,7 +4879,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:4885: checking for $ac_word" >&5
|
||||
echo "configure:4883: 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
|
||||
@ -4923,7 +4918,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:4924: checking for $ac_word" >&5
|
||||
echo "configure:4922: 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
|
||||
@ -4954,7 +4949,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:4955: checking for $ac_word" >&5
|
||||
echo "configure:4953: 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
|
||||
@ -4998,7 +4993,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:4999: checking for $ac_word" >&5
|
||||
echo "configure:4997: 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
|
||||
@ -5029,7 +5024,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:5030: checking for $ac_word" >&5
|
||||
echo "configure:5028: 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
|
||||
@ -5073,7 +5068,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:5074: checking for $ac_word" >&5
|
||||
echo "configure:5072: 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
|
||||
@ -5104,7 +5099,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:5105: checking for $ac_word" >&5
|
||||
echo "configure:5103: 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
|
||||
@ -5148,7 +5143,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:5149: checking for $ac_word" >&5
|
||||
echo "configure:5147: 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
|
||||
@ -5179,7 +5174,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:5180: checking for $ac_word" >&5
|
||||
echo "configure:5178: 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
|
||||
@ -5223,7 +5218,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:5224: checking for $ac_word" >&5
|
||||
echo "configure:5222: 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
|
||||
@ -5254,7 +5249,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:5255: checking for $ac_word" >&5
|
||||
echo "configure:5253: 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
|
||||
@ -5298,7 +5293,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:5299: checking for $ac_word" >&5
|
||||
echo "configure:5297: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -5329,7 +5324,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:5330: checking for $ac_word" >&5
|
||||
echo "configure:5328: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP_FOR_TARGET'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@ -5373,7 +5368,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:5374: checking for $ac_word" >&5
|
||||
echo "configure:5372: 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
|
||||
@ -5404,7 +5399,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:5405: checking for $ac_word" >&5
|
||||
echo "configure:5403: 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
|
||||
@ -5443,7 +5438,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:5444: checking for $ac_word" >&5
|
||||
echo "configure:5442: 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
|
||||
@ -5474,7 +5469,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:5475: checking for $ac_word" >&5
|
||||
echo "configure:5473: 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
|
||||
@ -5518,7 +5513,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:5519: checking for $ac_word" >&5
|
||||
echo "configure:5517: 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
|
||||
@ -5549,7 +5544,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:5550: checking for $ac_word" >&5
|
||||
echo "configure:5548: 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
|
||||
@ -5592,7 +5587,7 @@ fi
|
||||
RAW_CXX_FOR_TARGET="$CXX_FOR_TARGET"
|
||||
|
||||
echo $ac_n "checking where to find the target ar""... $ac_c" 1>&6
|
||||
echo "configure:5593: checking where to find the target ar" >&5
|
||||
echo "configure:5591: checking where to find the target ar" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5617,7 +5612,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target as""... $ac_c" 1>&6
|
||||
echo "configure:5618: checking where to find the target as" >&5
|
||||
echo "configure:5616: checking where to find the target as" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5642,7 +5637,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target cc""... $ac_c" 1>&6
|
||||
echo "configure:5643: checking where to find the target cc" >&5
|
||||
echo "configure:5641: checking where to find the target cc" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5667,7 +5662,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target c++""... $ac_c" 1>&6
|
||||
echo "configure:5668: checking where to find the target c++" >&5
|
||||
echo "configure:5666: checking where to find the target c++" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5695,7 +5690,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target c++ for libstdc++""... $ac_c" 1>&6
|
||||
echo "configure:5696: checking where to find the target c++ for libstdc++" >&5
|
||||
echo "configure:5694: checking where to find the target c++ for libstdc++" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5723,7 +5718,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target dlltool""... $ac_c" 1>&6
|
||||
echo "configure:5724: checking where to find the target dlltool" >&5
|
||||
echo "configure:5722: checking where to find the target dlltool" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5748,7 +5743,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target gcc""... $ac_c" 1>&6
|
||||
echo "configure:5749: checking where to find the target gcc" >&5
|
||||
echo "configure:5747: checking where to find the target gcc" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5773,7 +5768,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target gcj""... $ac_c" 1>&6
|
||||
echo "configure:5774: checking where to find the target gcj" >&5
|
||||
echo "configure:5772: checking where to find the target gcj" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5801,7 +5796,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target gfortran""... $ac_c" 1>&6
|
||||
echo "configure:5802: checking where to find the target gfortran" >&5
|
||||
echo "configure:5800: checking where to find the target gfortran" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5829,7 +5824,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target ld""... $ac_c" 1>&6
|
||||
echo "configure:5830: checking where to find the target ld" >&5
|
||||
echo "configure:5828: checking where to find the target ld" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5854,7 +5849,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target lipo""... $ac_c" 1>&6
|
||||
echo "configure:5855: checking where to find the target lipo" >&5
|
||||
echo "configure:5853: checking where to find the target lipo" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5869,7 +5864,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target nm""... $ac_c" 1>&6
|
||||
echo "configure:5870: checking where to find the target nm" >&5
|
||||
echo "configure:5868: checking where to find the target nm" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5894,7 +5889,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target objdump""... $ac_c" 1>&6
|
||||
echo "configure:5895: checking where to find the target objdump" >&5
|
||||
echo "configure:5893: checking where to find the target objdump" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5919,7 +5914,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target ranlib""... $ac_c" 1>&6
|
||||
echo "configure:5920: checking where to find the target ranlib" >&5
|
||||
echo "configure:5918: checking where to find the target ranlib" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5944,7 +5939,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target strip""... $ac_c" 1>&6
|
||||
echo "configure:5945: checking where to find the target strip" >&5
|
||||
echo "configure:5943: checking where to find the target strip" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -5969,7 +5964,7 @@ else
|
||||
fi
|
||||
fi
|
||||
echo $ac_n "checking where to find the target windres""... $ac_c" 1>&6
|
||||
echo "configure:5970: checking where to find the target windres" >&5
|
||||
echo "configure:5968: checking where to find the target windres" >&5
|
||||
if test "x${build}" != "x${host}" ; then
|
||||
# Canadian cross, just use what we found
|
||||
echo "$ac_t""pre-installed" 1>&6
|
||||
@ -6022,7 +6017,7 @@ fi
|
||||
|
||||
|
||||
echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
|
||||
echo "configure:6023: checking whether to enable maintainer-specific portions of Makefiles" >&5
|
||||
echo "configure:6021: 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"
|
||||
@ -6065,42 +6060,6 @@ case $build in
|
||||
esac
|
||||
|
||||
|
||||
# It makes debugging easier if we create as symlinks the stage directories
|
||||
# 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:6070: 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
|
||||
if test "${LN_S}" = "ln -s" \
|
||||
&& mkdir confdir.s1 \
|
||||
&& ln -s confdir.s1 confdir.s2 \
|
||||
&& echo timestamp1 > confdir.s1/conftest.1 \
|
||||
&& cmp confdir.s1/conftest.1 confdir.s2/conftest.1 \
|
||||
&& echo timestamp2 > confdir.s2/conftest.2 \
|
||||
&& cmp confdir.s1/conftest.2 confdir.s1/conftest.2 \
|
||||
&& rm -f confdir.s2; then
|
||||
gcc_cv_prog_ln_s_dir=yes
|
||||
else
|
||||
gcc_cv_prog_ln_s_dir=no
|
||||
fi
|
||||
rm -rf confdir.s1 confdir.s2
|
||||
fi
|
||||
|
||||
echo "$ac_t""$gcc_cv_prog_ln_s_dir" 1>&6
|
||||
|
||||
case ${gcc_cv_prog_ln_s_dir} in
|
||||
yes)
|
||||
CREATE_LINK_TO_DIR='ln -s $$1 $$2'
|
||||
UNDO_LINK_TO_DIR='rm -f $$1' ;;
|
||||
*)
|
||||
CREATE_LINK_TO_DIR='mv $$1 $$2'
|
||||
UNDO_LINK_TO_DIR='mv $$1 $$2' ;;
|
||||
esac
|
||||
|
||||
|
||||
|
||||
# Enable -Werror in bootstrap stage2 and later.
|
||||
# Change the default to "no" on release branches.
|
||||
# Check whether --enable-werror or --disable-werror was given.
|
||||
@ -6293,7 +6252,6 @@ s%@gmplibs@%$gmplibs%g
|
||||
s%@gmpinc@%$gmpinc%g
|
||||
s%@stage1_languages@%$stage1_languages%g
|
||||
s%@SYSROOT_CFLAGS_FOR_TARGET@%$SYSROOT_CFLAGS_FOR_TARGET%g
|
||||
s%@bootstrap_lean@%$bootstrap_lean%g
|
||||
/@serialization_dependencies@/r $serialization_dependencies
|
||||
s%@serialization_dependencies@%%g
|
||||
/@host_makefile_frag@/r $host_makefile_frag
|
||||
@ -6365,8 +6323,6 @@ s%@MAINTAINER_MODE_TRUE@%$MAINTAINER_MODE_TRUE%g
|
||||
s%@MAINTAINER_MODE_FALSE@%$MAINTAINER_MODE_FALSE%g
|
||||
s%@MAINT@%$MAINT%g
|
||||
s%@stage1_cflags@%$stage1_cflags%g
|
||||
s%@CREATE_LINK_TO_DIR@%$CREATE_LINK_TO_DIR%g
|
||||
s%@UNDO_LINK_TO_DIR@%$UNDO_LINK_TO_DIR%g
|
||||
s%@stage2_werror_flag@%$stage2_werror_flag%g
|
||||
|
||||
CEOF
|
||||
|
47
configure.in
47
configure.in
@ -1,5 +1,5 @@
|
||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
|
||||
# 1999, 2000, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
||||
# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
||||
#
|
||||
# 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
|
||||
@ -1736,7 +1736,7 @@ INSTALL_GDB_TK=`echo ${GDB_TK} | sed s/-all-/-install-/g`
|
||||
# not to nest @if/@endif pairs, because configure will not warn you at all.
|
||||
|
||||
AC_ARG_ENABLE([bootstrap],
|
||||
[ --enable-bootstrap[=lean] Enable bootstrapping [no]],,
|
||||
[ --enable-bootstrap Enable bootstrapping [yes if native build]],,
|
||||
enable_bootstrap=default)
|
||||
|
||||
# Issue errors and warnings for invalid/strange bootstrap combinations.
|
||||
@ -1757,17 +1757,17 @@ case "$have_compiler:$host:$target:$enable_bootstrap" in
|
||||
enable_bootstrap=no ;;
|
||||
|
||||
# We have a compiler and we are in a native configuration, bootstrap is ok
|
||||
yes:$build:$build:yes | yes:$build:$build:lean)
|
||||
yes:$build:$build:yes)
|
||||
;;
|
||||
|
||||
# Other configurations, but we have a compiler. Assume the user knows
|
||||
# what he's doing.
|
||||
yes:*:*:yes | yes:*:*:lean)
|
||||
yes:*:*:yes)
|
||||
AC_MSG_WARN([trying to bootstrap a cross compiler])
|
||||
;;
|
||||
|
||||
# No compiler: if they passed --enable-bootstrap explicitly, fail
|
||||
no:*:*:yes | no:*:*:lean)
|
||||
no:*:*:yes)
|
||||
AC_MSG_ERROR([cannot bootstrap without a compiler]) ;;
|
||||
|
||||
# Fail if wrong command line
|
||||
@ -1779,15 +1779,10 @@ esac
|
||||
# Adjust the toplevel makefile according to whether bootstrap was selected.
|
||||
case "$enable_bootstrap" in
|
||||
yes)
|
||||
bootstrap_lean='#'
|
||||
bootstrap_suffix=bootstrap ;;
|
||||
lean)
|
||||
bootstrap_lean=''
|
||||
bootstrap_suffix=bootstrap ;;
|
||||
no)
|
||||
bootstrap_suffix=no-bootstrap ;;
|
||||
esac
|
||||
AC_SUBST(bootstrap_lean)
|
||||
|
||||
for module in ${build_configdirs} ; do
|
||||
if test -z "${no_recursion}" \
|
||||
@ -2290,36 +2285,6 @@ case $build in
|
||||
esac
|
||||
AC_SUBST(stage1_cflags)
|
||||
|
||||
# It makes debugging easier if we create as symlinks the stage directories
|
||||
# gcc for stageN-gcc and stagePREV-gcc for stage(N-1). In case this is not
|
||||
# possible, however, we can resort to mv.
|
||||
AC_CACHE_CHECK([if symbolic links between directories work],
|
||||
[gcc_cv_prog_ln_s_dir],
|
||||
[if test "${LN_S}" = "ln -s" \
|
||||
&& mkdir confdir.s1 \
|
||||
&& ln -s confdir.s1 confdir.s2 \
|
||||
&& echo timestamp1 > confdir.s1/conftest.1 \
|
||||
&& cmp confdir.s1/conftest.1 confdir.s2/conftest.1 \
|
||||
&& echo timestamp2 > confdir.s2/conftest.2 \
|
||||
&& cmp confdir.s1/conftest.2 confdir.s1/conftest.2 \
|
||||
&& rm -f confdir.s2; then
|
||||
gcc_cv_prog_ln_s_dir=yes
|
||||
else
|
||||
gcc_cv_prog_ln_s_dir=no
|
||||
fi
|
||||
rm -rf confdir.s1 confdir.s2])
|
||||
|
||||
case ${gcc_cv_prog_ln_s_dir} in
|
||||
yes)
|
||||
CREATE_LINK_TO_DIR='ln -s $$1 $$2'
|
||||
UNDO_LINK_TO_DIR='rm -f $$1' ;;
|
||||
*)
|
||||
CREATE_LINK_TO_DIR='mv $$1 $$2'
|
||||
UNDO_LINK_TO_DIR='mv $$1 $$2' ;;
|
||||
esac
|
||||
AC_SUBST(CREATE_LINK_TO_DIR)
|
||||
AC_SUBST(UNDO_LINK_TO_DIR)
|
||||
|
||||
# Enable -Werror in bootstrap stage2 and later.
|
||||
# Change the default to "no" on release branches.
|
||||
AC_ARG_ENABLE(werror,
|
||||
|
Loading…
Reference in New Issue
Block a user