* Makefile.in (CXXFLAGS): Add -O.
This commit is contained in:
parent
de807a9b6a
commit
7b63668388
2 changed files with 18 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in (CXXFLAGS): Add -O.
|
||||||
|
|
||||||
|
Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
|
||||||
|
|
||||||
|
* config.guess: added support for DG Aviion
|
||||||
|
|
||||||
Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
|
Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
|
||||||
|
|
||||||
* configure.in: Produce warning message for subdirectories not
|
* configure.in: Produce warning message for subdirectories not
|
||||||
|
|
13
Makefile.in
13
Makefile.in
|
@ -54,13 +54,20 @@ AS = as
|
||||||
AR = ar
|
AR = ar
|
||||||
AR_FLAGS = rc
|
AR_FLAGS = rc
|
||||||
CC = cc
|
CC = cc
|
||||||
|
|
||||||
|
# We don't specify -g -O because many compilers don't support -g -O,
|
||||||
|
# and/or -O is broken in and of itself.
|
||||||
CFLAGS = -g
|
CFLAGS = -g
|
||||||
|
|
||||||
# start-sanitize-chill
|
# start-sanitize-chill
|
||||||
CHILLFLAGS = $(CFLAGS)
|
CHILLFLAGS = $(CFLAGS)
|
||||||
CHILL_LIB = -lchill
|
CHILL_LIB = -lchill
|
||||||
# end-sanitize-chill
|
# end-sanitize-chill
|
||||||
CXX = gcc
|
CXX = gcc
|
||||||
CXXFLAGS = -g
|
|
||||||
|
# Use -O to stress test the compiler.
|
||||||
|
CXXFLAGS = -g -O
|
||||||
|
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
NM = nm
|
NM = nm
|
||||||
MUNCH_NM = $(NM)
|
MUNCH_NM = $(NM)
|
||||||
|
@ -1052,7 +1059,7 @@ taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex texinfo/gpl.texinfo
|
||||||
# Do this first so "diststuff" files get built properly.
|
# Do this first so "diststuff" files get built properly.
|
||||||
for f in $(DISTBISONFILES) ; do \
|
for f in $(DISTBISONFILES) ; do \
|
||||||
if [ -r $$f ]; then \
|
if [ -r $$f ]; then \
|
||||||
sed '/^BISON *=.*$/s/.*/BISON = bison -y/' <$$f >tmp ; \
|
sed '/^BISON *=.*$$/s/.*/BISON = bison -y/' <$$f >tmp ; \
|
||||||
mv -f tmp $$f ; \
|
mv -f tmp $$f ; \
|
||||||
else true; fi ; \
|
else true; fi ; \
|
||||||
done
|
done
|
||||||
|
@ -1070,7 +1077,7 @@ taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex texinfo/gpl.texinfo
|
||||||
case " $$p " in \
|
case " $$p " in \
|
||||||
*" $$d "*) \
|
*" $$d "*) \
|
||||||
echo making diststuff in $$d ; \
|
echo making diststuff in $$d ; \
|
||||||
(cd $$d ; $(MAKE) diststuff) || exit 1 ;; \
|
(cd $$d ; pwd ; $(MAKE) diststuff BISON="bison -y") || exit 1 ;; \
|
||||||
esac ; \
|
esac ; \
|
||||||
if [ -d $$d/proto-$$d.dir ]; then \
|
if [ -d $$d/proto-$$d.dir ]; then \
|
||||||
ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
|
ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
|
||||||
|
|
Loading…
Reference in a new issue