Support x86_64 platform in makefile-engine

This commit is contained in:
Siarzhuk Zharski 2013-01-09 19:32:35 +01:00
parent c7087c9183
commit c7e76f70bc
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ VPATH :=
VPATH += $(addprefix :, $(subst ,:, $(filter-out $($(subst, :, ,$(VPATH))), $(SRC_PATHS))))
# SETTING: build the local and system include paths, compose C++ libs
ifeq ($(CPU), x86)
ifneq (,$(filter $(CPU),x86 x86_64))
LOC_INCLUDES = $(foreach path, $(SRC_PATHS) $(LOCAL_INCLUDE_PATHS), $(addprefix -I, $(path)))
ifeq ($(CC_VER), 2)
INCLUDES = $(LOC_INCLUDES)