[comp.lang.c++] Makefile for g++.1.20 with DYNIX 2.1.1

gcc@ICS.UCI.EDU (GNU C Compiler) (04/29/88)

The following line appears in the Makefile for g++.1.20.

#	uncomment the next line for VAX systems
	gcc -D"CRT0_DUMMIES=" -g -c crt0.c
  
This appears to be what our Sequent Balance 8000 most closely resembles.
However, there seems to be a need for the -DDOT_GLOBAL_START macro as
well.  Therefore, in order to get the appropriate behavior I added the
following to the Makefile for VAX systems:

	gcc -D"CRT0_DUMMIES=" -DDOT_GLOBAL_START -g -c crt0.c


This appears to work at the moment.  More tests may reveal problems....

Doug Schmidt