Showing with 2 additions and 1 deletion.
  1. +2 −1 src/posix.mak
3 changes: 2 additions & 1 deletion src/posix.mak
Original file line number Diff line number Diff line change
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