mirror of git://gcc.gnu.org/git/gcc.git
config-ml.in (multi-do): Pass MULTIFLAGS to subdir makes.
* config-ml.in (multi-do): Pass MULTIFLAGS to subdir makes. libobjc: * Makefile.in (runtime-info.h): Use MULTIFLAGS. From-SVN: r72598
This commit is contained in:
parent
e77b95a2cf
commit
05dcec66a3
|
@ -1,3 +1,7 @@
|
||||||
|
2003-10-17 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* config-ml.in (multi-do): Pass MULTIFLAGS to subdir makes.
|
||||||
|
|
||||||
2003-10-17 Ralph Loader <rcl@ihug.co.nz>
|
2003-10-17 Ralph Loader <rcl@ihug.co.nz>
|
||||||
|
|
||||||
* MAINTAINERS: Add myself to 'Write After Approval' section.
|
* MAINTAINERS: Add myself to 'Write After Approval' section.
|
||||||
|
|
|
@ -553,6 +553,7 @@ multi-do:
|
||||||
LIBCFLAGS="$(LIBCFLAGS) $${flags}" \
|
LIBCFLAGS="$(LIBCFLAGS) $${flags}" \
|
||||||
LIBCXXFLAGS="$(LIBCXXFLAGS) $${flags}" \
|
LIBCXXFLAGS="$(LIBCXXFLAGS) $${flags}" \
|
||||||
LDFLAGS="$(LDFLAGS) $${flags}" \
|
LDFLAGS="$(LDFLAGS) $${flags}" \
|
||||||
|
MULTIFLAGS="$${flags}" \
|
||||||
DESTDIR="$(DESTDIR)" \
|
DESTDIR="$(DESTDIR)" \
|
||||||
INSTALL="$(INSTALL)" \
|
INSTALL="$(INSTALL)" \
|
||||||
INSTALL_DATA="$(INSTALL_DATA)" \
|
INSTALL_DATA="$(INSTALL_DATA)" \
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2003-10-17 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* Makefile.in (runtime-info.h): Use MULTIFLAGS.
|
||||||
|
|
||||||
2003-09-09 Alan Modra <amodra@bigpond.net.au>
|
2003-09-09 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#Makefile for GNU Objective C runtime library.
|
# Makefile for GNU Objective C runtime library.
|
||||||
#Copyright (C) 1993, 95-98, 1999, 2001 Free Software Foundation, Inc.
|
# Copyright (C) 1993, 95-98, 1999, 2001, 2002, 2003
|
||||||
|
# Free Software Foundation, Inc.
|
||||||
|
|
||||||
#This file is part of GCC.
|
#This file is part of GCC.
|
||||||
|
|
||||||
|
@ -162,7 +163,7 @@ OBJS_GC = archive_gc.lo class_gc.lo encoding_gc.lo gc_gc.lo hash_gc.lo \
|
||||||
runtime-info.h:
|
runtime-info.h:
|
||||||
echo "" > tmp-runtime
|
echo "" > tmp-runtime
|
||||||
echo "/* This file is automatically generated */" > $@
|
echo "/* This file is automatically generated */" > $@
|
||||||
$(CC1OBJ) -print-objc-runtime-info tmp-runtime >> $@
|
$(CC1OBJ) $(MULTIFLAGS) -print-objc-runtime-info tmp-runtime >> $@
|
||||||
rm -f tmp-runtime
|
rm -f tmp-runtime
|
||||||
|
|
||||||
archive_gc.lo: archive.c
|
archive_gc.lo: archive.c
|
||||||
|
|
Loading…
Reference in New Issue