summaryrefslogtreecommitdiff
path: root/morphlib/buildenvironment.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/buildenvironment.py')
-rw-r--r--morphlib/buildenvironment.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/morphlib/buildenvironment.py b/morphlib/buildenvironment.py
index 266510f6..f8e88b84 100644
--- a/morphlib/buildenvironment.py
+++ b/morphlib/buildenvironment.py
@@ -115,6 +115,9 @@ class BuildEnvironment():
if arch == 'x86_32':
cpu = 'i686'
abi = ''
+ elif arch.startswith('armv5'): #pragma: no cover
+ cpu = arch
+ abi = 'eabi'
elif arch.startswith('armv7'):
cpu = arch
abi = 'eabi'