add framebuffer cross compiling support

This commit is contained in:
Vincent Sanders 2013-05-12 20:41:28 +01:00
parent ba0cf5c949
commit d34f03e69e
1 changed files with 15 additions and 2 deletions

View File

@ -271,8 +271,21 @@ else
CXX := $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*g++)
endif
else
# All other targets (GTK, Framebuffer)
PKG_CONFIG := pkg-config
ifeq ($(findstring framebuffer,$(TARGET)),framebuffer)
ifeq ($(origin GCCSDK_INSTALL_ENV),undefined)
PKG_CONFIG := pkg-config
else
PKG_CONFIG := PKG_CONFIG_LIBDIR="$(GCCSDK_INSTALL_ENV)/lib/pkgconfig" pkg-config
endif
ifneq ($(origin GCCSDK_INSTALL_CROSSBIN),undefined)
CC := $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*gcc)
CXX := $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*g++)
endif
else
# All native targets (GTK)
PKG_CONFIG := pkg-config
endif
endif
endif
endif