Add mips64el to arch list

This commit is contained in:
Cheng Zhao 2017-11-21 19:06:42 +09:00
parent c7e40a2a64
commit 447e0e6c8b
3 changed files with 7 additions and 1 deletions

View file

@ -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])