Path: utzoo!mnetor!uunet!husc6!mit-eddie!ICS.UCI.EDU!gcc From: gcc@ICS.UCI.EDU (GNU C Compiler) Newsgroups: comp.lang.c++ Subject: Makefile for g++.1.20 with DYNIX 2.1.1 Message-ID: <8804282015.aa19704@ICS.UCI.EDU> Date: 29 Apr 88 03:36:07 GMT Sender: daemon@eddie.MIT.EDU Lines: 17 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