aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--SConscript8
1 files changed, 8 insertions, 0 deletions
diff --git a/SConscript b/SConscript
index 4c4bcc76f9..f1b81ec2a5 100644
--- a/SConscript
+++ b/SConscript
@@ -30,6 +30,7 @@ import subprocess
import zlib
import json
import codecs
+import platform
VERSION = "v0.0-unreleased"
LIBRARY_VERSION_MAJOR = 35
@@ -41,6 +42,13 @@ Import('env')
Import('vars')
Import('install_lib')
+# Workaround to enable cross-compiling from macOS® to Android™ using the Android NDK.
+if platform.system() == 'Darwin' and env['os'] == 'android':
+ # SCons incorrectly assumes that we always want to build a dynamic library on a macOS host.
+ # When targeting Android, we overwrite the following construction variables to build a shared library instead.
+ env.Replace(SHLIBSUFFIX = '.so') # overwrites .dylib
+ env.Replace(SHLINKFLAGS = ['$LINKFLAGS', '-shared']) # overwrites -dynamiclib
+
def build_bootcode_objs(sources):
arm_compute_env.Append(ASFLAGS = "-I bootcode/")
obj = arm_compute_env.Object(sources)