aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp
diff options
context:
space:
mode:
authorGravatar msarett <msarett@google.com>2015-07-21 12:01:48 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-21 12:01:48 -0700
commitcf2a6a47e4db5682798fe46f9e3ef14a27ff4b2b (patch)
treed928b4fd1197d8494de5f20fd3b89d836190adf6 /gyp
parent259fbf191625d504e20c7ede69d988735fc569ad (diff)
Reenable yasm for Android x86 and x86-64 on Linux host
It turns out that gyp (kind of) has support for cross compiling with a different host and target. We simply need to specify CC_host and CC_target instead of CC. Making this change allows us to compile yasm on a Linux host for Android. We run into problems on Mac because the linker on a Mac host requires different command line arguments than the linker on the Android target. In looking through the code for gyp itself and speaking to Ben, it doesn't appear to me that gyp supports passing different arguments to host and target linkers. I would imagine that we would have similar problems on Windows. Below is a link to a CL that would fix this issue in gyp. It looks like it has been dropped for a long time. Thanks to Ben for this link! https://chromiumcodereview.appspot.com/10795044/ Also I'm adding a link to the build instructions for Chrome (thanks again Ben). It looks like they only support building for Android from Linux. https://code.google.com/p/chromium/wiki/AndroidBuildInstructions My next steps are: 1) Getting in touch with Torne or someone else with gyp to see if people are aware of this issue or interested in fixing it. 2) Deciding if skia should care about this issue. 3) Deciding if skia should work around this issue. It'd be really great to hear your thoughts on (2) and (3). My first thought is that we shouldn't care because, as long as we always compile the production copy of skia for Android on Linux, we will get the fast code. Is this a valid conclusion? Is there a way to write Android apps on Mac that accidentally use the slower code? If we do care, there are workarounds: For Mac, we can check in a yasm binary - it's a little smaller than the one I am deleting in this CL :-/ For Windows, we *might* be able to use the yasm.exe binary already in externals (we get this from DEPS because this is how chromium uses yasm on Windows). Are there other platforms that we care about? Let me know what you think! BUG=skia:4028 DOCS_PREVIEW= https://skia.org/?cl=1239333002 Review URL: https://codereview.chromium.org/1239333002
Diffstat (limited to 'gyp')
-rw-r--r--gyp/libjpeg-turbo.gyp23
-rw-r--r--gyp/yasm.gyp1
2 files changed, 14 insertions, 10 deletions
diff --git a/gyp/libjpeg-turbo.gyp b/gyp/libjpeg-turbo.gyp
index 18d70ed2eb..7ff763427b 100644
--- a/gyp/libjpeg-turbo.gyp
+++ b/gyp/libjpeg-turbo.gyp
@@ -125,14 +125,13 @@
# Add target-specific source files.
'conditions': [
- # FIXME (msarett): Reenable yasm on Android for x86 and x86_64
- # https://code.google.com/p/skia/issues/detail?id=4028
- [ 'skia_os == "android" and "x86" in skia_arch_type', {
- 'sources': [
- '../third_party/externals/libjpeg-turbo/jsimd_none.c',
- ],
+ # TODO (msarett): Is it possible to enable cross compiling for Android on other platforms?
+ [ 'skia_os == "android" and host_os != "linux" and "x86" in skia_arch_type', {
+ 'sources': [
+ '../third_party/externals/libjpeg-turbo/jsimd_none.c',
+ ],
}],
- [ 'skia_arch_type == "x86" and skia_os != "android"', {
+ [ 'skia_arch_type == "x86" and (skia_os != "android" or host_os == "linux")', {
'sources': [
'../third_party/externals/libjpeg-turbo/simd/jsimd_i386.c',
'../third_party/externals/libjpeg-turbo/simd/jccolor-mmx.asm',
@@ -170,7 +169,7 @@
'../third_party/externals/libjpeg-turbo/simd/jsimdcpu.asm',
],
}],
- [ 'skia_arch_type == "x86_64" and skia_os != "android"', {
+ [ 'skia_arch_type == "x86_64" and (skia_os != "android" or host_os == "linux")', {
'sources': [
'../third_party/externals/libjpeg-turbo/simd/jsimd_x86_64.c',
'../third_party/externals/libjpeg-turbo/simd/jccolor-sse2-64.asm',
@@ -257,9 +256,13 @@
],
},
}],
- [ 'skia_os == "android" and (skia_arch_type == "x86" or skia_arch_type == "x86_64")', {
+ [ 'skia_os == "android" and host_os == "linux" and \
+ (skia_arch_type == "x86" or skia_arch_type == "x86_64")', {
+ 'dependencies': [
+ 'yasm.gyp:yasm#host',
+ ],
'variables': {
- 'yasm_path': '../third_party/yasm/config/android/yasm',
+ 'yasm_path': '<(PRODUCT_DIR)/yasm',
'conditions': [
[ 'skia_arch_type == "x86"', {
'yasm_format': '-felf',
diff --git a/gyp/yasm.gyp b/gyp/yasm.gyp
index 44792f0226..3f5758100a 100644
--- a/gyp/yasm.gyp
+++ b/gyp/yasm.gyp
@@ -65,6 +65,7 @@
'ldflags!': [ '-stdlib=libc++', '-fsanitize=address' ],
# https://crbug.com/489901
'cflags!': [ '-fsanitize=bounds', '-fsanitize=address' ],
+ 'libraries!': [ '-llog', ],
},
'targets': [
{