File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -414,6 +414,11 @@ def compile_android(self):
414
414
for fold in armlibs :
415
415
self .trip_libs (strip_cmd_path , os .path .join (android_out_dir , fold ))
416
416
417
+ # strip arm64-v8a libs
418
+ strip_cmd_path = os .path .join (ndk_root , "toolchains/aarch64-linux-android-4.9/prebuilt/%s/aarch64-linux-android/bin/%s" % (sys_folder_name , strip_execute_name ))
419
+ if os .path .exists (strip_cmd_path ) and os .path .exists (os .path .join (android_out_dir , "arm64-v8a" )):
420
+ self .trip_libs (strip_cmd_path , os .path .join (android_out_dir , 'arm64-v8a' ))
421
+
417
422
# strip x86 libs
418
423
strip_cmd_path = os .path .join (ndk_root , "toolchains/x86-4.8/prebuilt/%s/i686-linux-android/bin/%s" % (sys_folder_name , strip_execute_name ))
419
424
if os .path .exists (strip_cmd_path ) and os .path .exists (os .path .join (android_out_dir , "x86" )):
You can’t perform that action at this time.
0 commit comments