[OE-core] [PATCH 1/1][danny] crosstap: handle hyphenated x86_64 target arch

tom.zanussi at linux.intel.com tom.zanussi at linux.intel.com
Wed Feb 6 15:40:58 UTC 2013


From: Tom Zanussi <tom.zanussi at linux.intel.com>

systemtap_target_arch() should also translate x86-64 (hyphenated) into
x86_64 for the -a param.  Failing to do that causes systemtap to see
an architecture mismatch and create a cloned session with a bogusly
synthesized build directory path, and fails to compile the probe.

 Fixes [YOCTO #3756]

(From OE-Core rev: 98cae0544884cb5700d42409ec4a9584a17dc9a4)

Signed-off-by: Tom Zanussi <tom.zanussi at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/crosstap | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/crosstap b/scripts/crosstap
index 783bf2f..58317cf 100755
--- a/scripts/crosstap
+++ b/scripts/crosstap
@@ -70,7 +70,7 @@ function systemtap_target_arch() {
         i?86)
             SYSTEMTAP_TARGET_ARCH="i386"
             ;;
-        x86_64*)
+        x86?64*)
             SYSTEMTAP_TARGET_ARCH="x86_64"
             ;;
         arm*)
-- 
1.7.11.4





More information about the Openembedded-core mailing list