Add arm64 build support

This commit is contained in:
HAMIDx9 2017-08-08 06:59:45 +00:00 committed by Cheng Zhao
parent 0c93e4b8d7
commit cd42133651
5 changed files with 1029 additions and 182 deletions

View file

@ -208,6 +208,8 @@ def strip_binaries():
def strip_binary(binary_path):
if get_target_arch() == 'arm':
strip = 'arm-linux-gnueabihf-strip'
elif get_target_arch() == 'arm64':
strip = 'aarch64-linux-gnu-strip'
else:
strip = 'strip'
execute([strip, binary_path])