Makefile.in (clean): Remove libgcc directory.

* Makefile.in (clean): Remove libgcc directory.

        * configure.in (-Wno-long-long check): Use higher-level macros.

From-SVN: r35100
This commit is contained in:
Jason Merrill 2000-07-17 16:55:43 -04:00
parent 537815242e
commit 97d81d66f0
3 changed files with 17 additions and 13 deletions

View File

@ -1,3 +1,9 @@
2000-07-17 Jason Merrill <jason@redhat.com>
* Makefile.in (clean): Remove libgcc directory.
* configure.in (-Wno-long-long check): Use higher-level macros.
2000-07-17 Zack Weinberg <zack@wolery.cumb.org> 2000-07-17 Zack Weinberg <zack@wolery.cumb.org>
* simplify-rtx.c (simplify_binary_operation): Recognize * simplify-rtx.c (simplify_binary_operation): Recognize
@ -12,9 +18,9 @@
Mon Jul 17 08:26:35 2000 Clinton Popetz <cpopetz@cygnus.com> Mon Jul 17 08:26:35 2000 Clinton Popetz <cpopetz@cygnus.com>
* mips.c (mips_expand_prologue): Don't calculate the last * mips.c (mips_expand_prologue): Don't calculate the last argument
argument register unless we need it. When we are calculating register unless we need it. When we are calculating this, make
this, make sure FUNCTION_ARG is giving us a REG. sure FUNCTION_ARG is giving us a REG.
2000-07-17 Stephane Carrez <Stephane.Carrez@worldnet.fr> 2000-07-17 Stephane Carrez <Stephane.Carrez@worldnet.fr>
@ -24,7 +30,6 @@ Mon Jul 17 08:26:35 2000 Clinton Popetz <cpopetz@cygnus.com>
2000-07-17 Mark Klein <mklein@dis.com> 2000-07-17 Mark Klein <mklein@dis.com>
* pa.c (emit_hpdiv_const): Update to match new pattern for udivsi3. * pa.c (emit_hpdiv_const): Update to match new pattern for udivsi3.
2000-07-17 J. David Anglin <dave@hiauly1.hia.nrc.ca> 2000-07-17 J. David Anglin <dave@hiauly1.hia.nrc.ca>

View File

@ -2155,6 +2155,7 @@ mostlyclean: $(INTL_MOSTLYCLEAN) lang.mostlyclean
INTL_CLEAN = intl.clean INTL_CLEAN = intl.clean
clean: mostlyclean $(INTL_CLEAN) lang.clean clean: mostlyclean $(INTL_CLEAN) lang.clean
-rm -f libgcc.a -rm -f libgcc.a
-rm -rf libgcc
-rm -f *.dvi -rm -f *.dvi
-rm -f */*.dvi -rm -f */*.dvi
-if [ -f md.pre-cpp ]; then \ -if [ -f md.pre-cpp ]; then \

View File

@ -332,15 +332,13 @@ AC_SUBST(NO_MINUS_C_MINUS_O)
gcc_AC_C_LONG_DOUBLE gcc_AC_C_LONG_DOUBLE
AC_MSG_CHECKING(whether ${CC-cc} accepts -Wno-long-long) AC_CACHE_CHECK(whether ${CC-cc} accepts -Wno-long-long,
echo 'void f(){}' > conftest.c ac_cv_prog_cc_no_long_long,
if test -z "`${CC-cc} -Wno-long-long -c conftest.c 2>&1`"; then [save_CFLAGS="$CFLAGS"
ac_cv_prog_cc_no_long_long=yes CFLAGS="-Wno-long-long"
else AC_TRY_COMPILE(,,ac_cv_prog_cc_no_long_long=yes,
ac_cv_prog_cc_no_long_long=no ac_cv_prog_cc_no_long_long=no)
fi CFLAGS="$save_CFLAGS"])
rm -f conftest*
echo "$ac_t"$ac_cv_prog_cc_no_long_long 1>&6
# If the native compiler is GCC, we can enable warnings even in stage1. # If the native compiler is GCC, we can enable warnings even in stage1.
# That's useful for people building cross-compilers, or just running a # That's useful for people building cross-compilers, or just running a