Hi All! I'm almost finished Tizen crosscompilation for TI DRA7XX-EVM and I need to introduce some fixes.
Please provide guide how to upstream patches like it. With best regards, -- *Vitaly Chernooky | Senior Developer - Product Engineering and Development* GlobalLogic P *+380.44.4929695 ext.1136* M *+380.63.6011802* S cvv_2k www.globallogic.com http://www.globallogic.com/email_disclaimer.txt
From b45c6c04dcecb83c3bc24fccdcadc3ff38a8bf2d Mon Sep 17 00:00:00 2001 From: Vitaly Chernooky <[email protected]> Date: Wed, 4 Mar 2015 17:48:54 +0200 Subject: [PATCH] crosswalk: unset sysroot This is critical in steps to compile for TI DRA7XX Change-Id: I8ebc283bf09636fecbefd3c7b245d54388533ea2 Signed-off-by: Vitaly Chernooky <[email protected]> --- .../crosswalk/crosswalk-thirdparty.inc | 3 ++- .../recipes-crosswalk/crosswalk/crosswalk.inc | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk-thirdparty.inc b/meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk-thirdparty.inc index ad66654..4924855 100644 --- a/meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk-thirdparty.inc +++ b/meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk-thirdparty.inc @@ -141,7 +141,8 @@ do_compile() { # -> to unset sysroot value. # sysroot variable is automatically set for cross compilation to use arm-sysroot provided by Chromium project # sysroot usage is not needed, we need to use arm libraries from the virtualized environment. - # + GYP_EXTRA_FLAGS="${GYP_EXTRA_FLAGS} -Dsysroot= " + # Crosswalk build fails if the fpu selected in the gcc option is different from neon in case of arm7 compilation # So force it. diff --git a/meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk.inc b/meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk.inc index b3a28b7..561cb47 100644 --- a/meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk.inc +++ b/meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk.inc @@ -179,7 +179,8 @@ do_compile() { # -> to unset sysroot value. # sysroot variable is automatically set for cross compilation to use arm-sysroot provided by Chromium project # sysroot usage is not needed, we need to use arm libraries from the virtualized environment. - # + GYP_EXTRA_FLAGS="${GYP_EXTRA_FLAGS} -Dsysroot= " + # Crosswalk build fails if the fpu selected in the gcc option is different from neon in case of arm7 compilation # So force it. -- 1.7.9.5
_______________________________________________ Dev mailing list [email protected] https://lists.tizen.org/listinfo/dev
