Add mips64el to arch list
This commit is contained in:
parent
c7e40a2a64
commit
447e0e6c8b
3 changed files with 7 additions and 1 deletions
|
@ -214,6 +214,8 @@ def strip_binary(binary_path):
|
|||
strip = 'arm-linux-gnueabihf-strip'
|
||||
elif get_target_arch() == 'arm64':
|
||||
strip = 'aarch64-linux-gnu-strip'
|
||||
elif get_target_arch() == 'mips64el':
|
||||
strip = 'mips64el-redhat-linux-strip'
|
||||
else:
|
||||
strip = 'strip'
|
||||
execute([strip, binary_path])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue