source: trunk/third/gcc/config/mips/x-sysv @ 8834

Revision 8834, 985 bytes checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r8833, which included commits to RCS files with non-trunk default branches.
Line 
1# Define CC and OLDCC as the same, so that the tests:
2#       if [ x"$(OLDCC)" = x"$(CC)" ] ...
3#
4# will succeed (if OLDCC != CC, it is assumed that GCC is
5# being used in secondary stage builds).  We need to pass
6# the -Wf,-XNg1500 option so the compiler can compile the
7# G++ file cp-parse.c.  Otherwise it complains about
8# too many case statements.  -Olimit is so the user
9# can use -O2.  Down with fixed size tables!
10
11CC              = $(OLDCC)
12OPT             = -O1
13OLDCC           = cc -Wf,-XNg1500,-XNh2000 -Olimit 3000 $(OPT)
14
15# The bison output files are machine-indep,
16# so different flags for a particular machine are not useful.
17#BISONFLAGS     = -l
18
19# This enables collect2 to link.
20# Some systems use version 2.11 of the compilers.  Some use version 3.11.
21CLIB= -L/usr/lib/cmplrs/cc2.11 -L/usr/lib/cmplrs/cc3.11 -lmld
22
23# Show we need to use the C version of ALLOCA
24# The SVR3 configurations have it, but the SVR4 configurations don't.
25# For now, just try using it for all SVR* configurations.
26ALLOCA          = alloca.o
Note: See TracBrowser for help on using the repository browser.