Kaydet (Commit) 320a14c8 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

only use CC/CXX if they are nondefaults

üst ce1efb6b
......@@ -30,9 +30,18 @@ COM := GCC
gb_MKTEMP := mktemp -p
gb_CC := gcc
gb_CXX := g++
gb_GCCP := gcc
# use CC/CXX if they are nondefaults
ifneq ($(origin CC),default)
gb_CC := $(CC)
gb_CXX := $(CXX)
gb_GCCP := $(CC)
endif
ifneq ($(origin CXX),default)
gb_CXX := $(CXX)
endif
gb_OSDEFS := \
-DLINUX \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment