From: Ian Lance Taylor Date: Mon, 16 Jun 1997 15:13:43 +0000 (+0000) Subject: * configure.in: Build itl, db, sn, etc., when building for native X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=644344185485f78b25ac547f0ede96dd913550bc;p=binutils-gdb.git * configure.in: Build itl, db, sn, etc., when building for native cygwin32. * Makefile.in (LD): New variable. (EXTRA_HOST_FLAGS): Pass down LD. ($(DO_X)): Likewise. Mon Jun 16 11:10:35 1997 Philip Blundell * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh. --- diff --git a/ChangeLog b/ChangeLog index 28b07cb5bf2..db46f212787 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +Mon Jun 16 11:11:10 1997 Ian Lance Taylor + + * configure.in: Build itl, db, sn, etc., when building for native + cygwin32. + + * Makefile.in (LD): New variable. + (EXTRA_HOST_FLAGS): Pass down LD. + ($(DO_X)): Likewise. + +Mon Jun 16 11:10:35 1997 Philip Blundell + + * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh. + Fri Jun 13 10:22:56 1997 Bob Manson * configure.in (targargs): Strip out any supplied --build argument diff --git a/Makefile.in b/Makefile.in index 1fb7e430c9b..fb158e87e7a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -45,7 +45,7 @@ GDB_NLM_DEPS = SHELL = /bin/sh -INSTALL = $$s/install-sh -c +INSTALL = $(SHELL) $$s/install-sh -c INSTALL_PROGRAM = $(INSTALL) INSTALL_DATA = $(INSTALL) -m 644 @@ -89,6 +89,9 @@ RANLIB = ranlib DLLTOOL = dlltool NM = nm + +LD = ld + # Not plain GZIP, since gzip looks there for extra command-line options. GZIPPROG = gzip @@ -352,6 +355,7 @@ EXTRA_HOST_FLAGS = \ 'CC=$(CC)' \ 'CXX=$(CXX)' \ 'DLLTOOL=$(DLLTOOL)' \ + 'LD=$(LD)' \ 'NM=$(NM)' \ 'RANLIB=$(RANLIB)' @@ -852,10 +856,10 @@ $(DO_X): done; \ ;; \ esac ; \ - export AR AS CC CXX NM RANLIB DLLTOOL; \ + export AR AS CC CXX LD NM RANLIB DLLTOOL; \ if (cd ./$$i; \ $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \ - "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \ + "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \ "RANLIB=$${RANLIB}" \ "DLLTOOL=$${DLLTOOL}" \ $${target}); \ @@ -871,10 +875,10 @@ $(DO_X): for flag in $(EXTRA_TARGET_FLAGS); do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \ done; \ - export AR AS CC CXX NM RANLIB DLLTOOL; \ + export AR AS CC CXX LD NM RANLIB DLLTOOL; \ if (cd $(TARGET_SUBDIR)/$$i; \ $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \ - "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \ + "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \ "RANLIB=$${RANLIB}" \ "DLLTOOL=$${DLLTOOL}" \ $${target}); \ @@ -1505,7 +1509,7 @@ taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \ # Take out texinfo from a few places; make simple BISON=bison line. sed -e '/^all\.normal: /s/\all-texinfo //' \ -e '/^ install-texinfo /d' \ - -e '/^BISON = /,/^$$/d' \ + -e '/^BISON = `if/,/^$$/d' \ -e '/^# BISON:/s/.*/BISON = bison -y/' \ tmp mv -f tmp Makefile.in diff --git a/configure.in b/configure.in index 95654f44792..81c9622f75b 100644 --- a/configure.in +++ b/configure.in @@ -391,10 +391,7 @@ case "${host}" in # end-sanitize-ide ;; *-*-cygwin32) - noconfigdirs="expect dejagnu cvs autoconf automake bison send-pr gprof rcs guile perl texinfo apache inet itcl db sn gnuserv" -# start-sanitize-ide - noconfigdirs="$noconfigdirs libide vmake" -# end-sanitize-ide + noconfigdirs="expect dejagnu cvs autoconf automake bison send-pr gprof rcs guile perl texinfo apache inet" ;; *-*-windows*) # This is only used to build WinGDB... @@ -480,17 +477,18 @@ case "${target}" in ;; *-*-cygwin32) target_configdirs="$target_configdirs target-winsup" - noconfigdirs="$noconfigdirs expect target-libgloss itcl db sn gnuserv" -# start-sanitize-ide - noconfigdirs="$noconfigdirs libide vmake" -# end-sanitize-ide + noconfigdirs="$noconfigdirs expect target-libgloss" # always build newlib. skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` # Can't build gdb for cygwin32 if not native. case "${host}" in - *-*-cygwin32) ;; # keep gdb tcl tk expect - *) noconfigdirs="$noconfigdirs gdb tcl tk expect" + *-*-cygwin32) ;; # keep gdb tcl tk expect etc. + *) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl db sn gnuserv" +# start-sanitize-ide + noconfigdirs="$noconfigdirs libide vmake" +# end-sanitize-ide + ;; esac ;; i[3456]86-*-pe) @@ -642,10 +640,7 @@ esac # If we are building a Canadian Cross, discard tools that can not be built # using a cross compiler. FIXME: These tools should be fixed. if [ "${build}" != "${host}" ]; then - noconfigdirs="$noconfigdirs expect dejagnu itcl db sn gnuserv" -# start-sanitize-ide - noconfigdirs="$noconfigdirs libide ilu vmake" -# end-sanitize-ide + noconfigdirs="$noconfigdirs expect dejagnu" fi # Make sure we don't let GNU ld be added if we didn't want it.