Add armv7l (armhf) as supported native arch. (#682)

This commit is contained in:
clayton craft 2017-10-02 22:49:40 +00:00 committed by Oliver Smith
parent 2587e430ed
commit d45c7d2d84
1 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,8 @@ def alpine_native():
mapping = {
"x86_64": "x86_64",
"aarch64": "aarch64"
"aarch64": "aarch64",
"armv7l": "armhf"
}
if machine in mapping:
return mapping[machine]