rust: aarch64 support

This commit is contained in:
Tyler Hall
2016-02-02 11:40:25 -05:00
committed by Steven Walter
parent aaaeaeed3f
commit 483334f02b
2 changed files with 8 additions and 0 deletions
+2
View File
@@ -33,6 +33,8 @@ def rust_base_triple(d, thing):
if arch.startswith("arm"):
if os.endswith("gnueabi"):
os += bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', 'hf', '', d)
elif arch.startswith("aarch64"):
os = "linux-gnu"
elif arch.startswith("x86_64"):
os = "linux-gnu"
elif arch.startswith("i586"):