-rw-r--r-- | Vars.make | 6 | ||||
-rw-r--r-- | config.in | 4 |
2 files changed, 10 insertions, 0 deletions
@@ -23,16 +23,19 @@ else $(shell mkdir -p $(QTDIR)/src/moc) $(shell echo -e "all: \n\t" >>$(QTDIR)/src/moc/Makefile) PLATFORM=sharp-linux endif ifdef CONFIG_TARGET_X86 PLATFORM=x86-linux endif +ifdef CONFIG_TARGET_64BIT + PLATFORM=64-linux +endif ifdef CONFIG_TARGET_SHARP PLATFORM=sharp-linux endif ifdef CONFIG_TARGET_IPAQ PLATFORM=ipaq-linux endif ifdef CONFIG_TARGET_RAMSES PLATFORM=ramses-linux @@ -108,16 +111,19 @@ ifdef CONFIG_OPTIMIZATIONS export CFLAGS_RELEASE=$(patsubst "%,%,$(CONFIG_OPTIMIZATIONS)) export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE)) endif ifeq ($(STRIP),) ifneq ($(CONFIG_TARGET_X86),) STRIP=strip endif + ifneq ($(CONFIG_TARGET_64BIT),) + STRIP=strip + endif ifneq ($(CONFIG_TARGET_IPAQ),) STRIP=arm-linux-strip endif ifneq ($(CONFIG_TARGET_SHARP),) STRIP=arm-linux-strip endif ifneq ($(CONFIG_TARGET_RAMSES),) STRIP=arm-linux-strip @@ -30,16 +30,20 @@ choice config TARGET_RAMSES boolean "Ramses" config TARGET_SIMPAD boolean "SIMpad" config TARGET_YOPY boolean "Yopy 3500/3700" + + config TARGET_64BIT + boolean "64 BIT" + endchoice config OE_BUILD_DIR depends TARGET_OE string "OE build directory" default ">>>set OpenEmbedded build directory here<<<" config OE_HOST_SYS |