-rw-r--r-- | Vars.make | 6 | ||||
-rw-r--r-- | config.in | 4 |
2 files changed, 10 insertions, 0 deletions
@@ -28,6 +28,9 @@ 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 @@ -113,6 +116,9 @@ 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 @@ -35,6 +35,10 @@ choice config TARGET_YOPY boolean "Yopy 3500/3700" + + config TARGET_64BIT + boolean "64 BIT" + endchoice config OE_BUILD_DIR |