← Back to index
|
Original Bugzilla link
Bug 4896 – GCC not accessed as a variable in linux.mak
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
All
OS
Linux
Creation time
2010-09-19T07:08:00Z
Last change time
2016-10-14T12:48:02Z
Assigned to
nobody
Creator
shro8822
Comments
Comment #0
by shro8822 — 2010-09-19T07:08:55Z
Index: src/linux.mak =================================================================== --- src/linux.mak (revision 680) +++ src/linux.mak (working copy) @@ -5,7 +5,8 @@ MODEL=-m32 CC=g++ $(MODEL) +GCC=gcc $(MODEL) #OPT=-g -g3 #OPT=-O2 @@ -93,7 +94,7 @@ all: dmd dmd: $(DMD_OBJS) - gcc $(MODEL) -lstdc++ -lpthread $(COV) $(DMD_OBJS) -o dmd + $(GCC) -lstdc++ -lpthread $(COV) $(DMD_OBJS) -o dmd clean: rm -f $(DMD_OBJS) dmd optab.o id.o impcnvgen idgen id.c id.h \ @@ -463,7 +464,7 @@ $(CC) -c $(GFLAGS) -I$(ROOT) $< strtold.o: $C/strtold.c - gcc $(MODEL) -c $C/strtold.c + $(GCC) -c $C/strtold.c struct.o: struct.c $(CC) -c $(CFLAGS) $<
Comment #1
by andrei — 2016-10-14T12:48:02Z
Fixed a while ago.