diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-05-06 17:30:39 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-05-06 17:30:39 +0000 |
commit | 78eacd9a3aac87801d3958e99b11ff6fe6ff9b7c (patch) | |
tree | d21fc0ae4539a47797ee0c0a14f415a8c3ee24ae | |
parent | d90b0ae96a3a22d21c46e56bc4ee6e0816235027 (diff) |
Formerly Maketools.~15~
-rw-r--r-- | =Maketools | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -6,7 +6,10 @@ tooldir := /usr/local/i386-mach/bin # run the eventual code.) If you are not doing cross-compilation, then # you need to set MIGCOM and MIG below to the plain pathnames of those # two programs respectively. -mighost := ernst +# If the version of GCC on this version is not the same as CCVERSION, +# then you must set CCVERSION-$(mighost) in the same fashion as is +# done below for ernst.gnu.ai.mit.edu and douglas.gnu.ai.mit.edu. +mighost := ernst.gnu.ai.mit.edu # Set these options to the GCC compiler spec (the correct value # can be found in /usr/local/lib/lib-gcc). @@ -15,6 +18,8 @@ CCVERSION=$(firstword $(CCVERSION-$(hostname)) 2.5.8) CCTYPE=-b $(CCTARGET) -V $(CCVERSION) CCVERSION-douglas.gnu.ai.mit.edu = 2.5.7 CCVERSION-ernst.gnu.ai.mit.edu = 2.5.7 +MIGHOSTCCVERSION=$(firstword $(CCVERSION-$(mighost)) $(CCVERSION)) +MIGHOSTCCTYPE= -b $(CCTARGET) -V $(MIGHOSTCCVERSION) ccdir = /usr/local/lib/gcc-lib/$(CCTARGET)/$(CCVERSION) @@ -22,6 +27,7 @@ ifndef HOST_CC export HOST_CC := $(CC) endif CC=gcc $(CCTYPE) -O2 -pipe # Ceci n'est pas une pipe. +MIGHOSTCC= gcc $(MIGHOSTCCTYPE) -O2 -pipe ifeq (,$(wildcard /usr/local/lib/migcom)) MIGCOM=rsh $(mighost) cd `pwd` \; /usr/local/lib/migcom else |