aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-08-11 10:49:57 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-08-11 10:49:57 +0100
commitb904b98221d30f2962f4372b9dfea06554b621b5 (patch)
tree1f8ea89758412b30631c0d27d2105d6d564b8a02 /tools/Makefile
parent570d530d68880592db3062aa353cbaf12047158d (diff)
downloadxen-b904b98221d30f2962f4372b9dfea06554b621b5.tar.gz
xen-b904b98221d30f2962f4372b9dfea06554b621b5.tar.bz2
xen-b904b98221d30f2962f4372b9dfea06554b621b5.zip
tools build: add cross-install to find the right "strip"
Signed-off-by: Aron Griffis <aron@hp.com>
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile
index bcc9fb8d0a..159087eca1 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -38,8 +38,10 @@ endif
# For the sake of linking, set the sys-root
ifneq ($(CROSS_COMPILE),)
+CROSS_BIN_PATH ?= /usr/$(CROSS_COMPILE:-=)/bin
CROSS_SYS_ROOT ?= /usr/$(CROSS_COMPILE:-=)/sys-root
-export CROSS_SYS_ROOT
+export CROSS_SYS_ROOT # exported for check/funcs.sh
+export CROSS_BIN_PATH # exported for cross-install.sh
endif
.PHONY: all
@@ -57,7 +59,8 @@ clean distclean: subdirs-clean
ifneq ($(XEN_COMPILE_ARCH),$(XEN_TARGET_ARCH))
IOEMU_CONFIGURE_CROSS ?= --cpu=$(XEN_TARGET_ARCH) \
--cross-prefix=$(CROSS_COMPILE) \
- --interp-prefix=$(CROSS_SYS_ROOT)
+ --interp-prefix=$(CROSS_SYS_ROOT) \
+ --install=$(CURDIR)/cross-install
endif
ioemu/config-host.mak: