rust: aarch64 support

This commit is contained in:
Tyler Hall
2016-01-08 16:17:46 -05:00
committed by Derek Straka
parent bfb747de96
commit d5c83f28bf
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"):