Skip to content
Snippets Groups Projects
Commit d5dca14d authored by deuce's avatar deuce
Browse files

Fix bug which forced CCPRE to gcc.

parent f6428df4
No related branches found
No related tags found
No related merge requests found
......@@ -15,14 +15,16 @@ endif
# Compiler-specific options
CFLAGS += -MMD
CCPRE ?= gcc
ifdef BUILD_DEPENDS
CCPRE := $(CC)
CCPRE ?= gcc
CC = $(XPDEV)/../build/mkdep -a
CXX = $(XPDEV)/../build/mkdep -a
LD = echo
COMPILE_MSG := Depending
else
CC ?= gcc
CCPRE := $(CC)
CXX ?= g++
LD ?= ld
COMPILE_MSG := Compiling
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment