Add arm64 build support
This commit is contained in:
parent
0c93e4b8d7
commit
cd42133651
5 changed files with 1029 additions and 182 deletions
|
@ -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])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue