Use local android toolchain for dynamic symbol check.

This commit is contained in:
Josh Matthews 2018-07-27 19:32:50 -04:00 committed by GitHub
parent 53382f5a0f
commit 2fda6bfda3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ actual_symbols = set()
objdump_output = subprocess.check_output([
os.path.join(
os.environ['ANDROID_NDK'], 'toolchains', 'arm-linux-androideabi-4.9',
'android-toolchains', 'ndk', 'toolchains', 'arm-linux-androideabi-4.9',
'prebuilt', 'linux-x86_64', 'bin', 'arm-linux-androideabi-objdump'),
'-T',
'target/armv7-linux-androideabi/debug/libservo.so']