Skip to content

Commit

Permalink
Merge pull request #4772 from JinShil/fix14572
Browse files Browse the repository at this point in the history
fix Issue 14572 (Take 2) - Cannot build from source: 'g++ -m64: No such file or directory'
  • Loading branch information
MartinNowak committed Jun 25, 2015
2 parents 3c47713 + 1cfeb7f commit 963f4c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/posix.mak
Expand Up @@ -36,7 +36,7 @@ LDFLAGS=-lm -lstdc++ -lpthread
#else
HOST_CC=g++
#endif
CC=$(HOST_CC) $(MODEL_FLAG)
CC=$(HOST_CC)
GIT=git

# Host D compiler for bootstrapping
Expand Down Expand Up @@ -119,6 +119,7 @@ MMD=-MMD -MF $(basename $@).deps
CFLAGS := $(WARNINGS) \
-fno-exceptions -fno-rtti \
-D__pascal= -DMARS=1 -DTARGET_$(OS_UPCASE)=1 -DDM_TARGET_CPU_$(TARGET_CPU)=1 \
$(MODEL_FLAG)
# Default D compiler flags for all source files
DFLAGS=

Expand Down

0 comments on commit 963f4c0

Please sign in to comment.