diff options
author | Roland McGrath <roland@gnu.org> | 1994-08-01 01:15:05 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-08-01 01:15:05 +0000 |
commit | bc5db29748f43d3d68d284c1fa8b34054bf13f89 (patch) | |
tree | d51c70b72f4ee1e2cf5dda7a98b47c4af2d1c109 | |
parent | a9896daff7be27b6558f1cf1248cc7303e22f520 (diff) |
Formerly Maketools.~21~
-rw-r--r-- | =Maketools | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -1,5 +1,5 @@ # This is the directory holding ar and ranlib -tooldir := /usr/local/i386-mach/bin +tooldir := /usr/local/i386-gnu/bin # This is a machine on which to run MiG. (MiG writes CPU dependent code, # so MiG has to be run on a machine that's the same as the one that will @@ -14,12 +14,10 @@ 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). CCTARGET=i386-gnu -CCVERSION=$(firstword $(CCVERSION-$(hostname)) 2.5.8) +CCVERSION=$(firstword $(CCVERSION-$(hostname)) 2.6.0) 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) @@ -27,7 +25,6 @@ ifndef HOST_CC export HOST_CC := $(CC) endif CC=gcc $(CCTYPE) -O2 -MIGHOSTCC= gcc $(MIGHOSTCCTYPE) -O2 ifeq (,$(wildcard /usr/local/lib/migcom)) MIGCOM=rsh $(mighost) cd `pwd` \; umask `umask` \; /usr/local/lib/migcom else @@ -42,8 +39,7 @@ AR=$(tooldir)/ar RANLIB=$(tooldir)/ranlib LD=$(ccdir)/ld -L$(ccdir) -# objcopy zeroes the exec header, so we can't do this. -#INSTALL_BIN=$(tooldir)/objcopy -S -INSTALL_BIN=cp +INSTALL_BIN=$(tooldir)/objcopy -S +#INSTALL_BIN=cp machine := i386 |