From e07aeadb8a56ef6ed50ae668de77cf3c320a1287 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Louis-Francis=20Ratt=C3=A9-Boulianne?= <lfrb@collabora.com>
Date: Fri, 9 Dec 2016 16:14:22 -0500
Subject: [PATCH] Add support for x86_64 architecture
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Useful when using the SDK as a device for tests

Signed-off-by: Louis-Francis Ratté-Boulianne <lfrb@collabora.com>
Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Differential Revision: https://phabricator.apertis.org/D5228
---
 tools/ade | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/ade b/tools/ade
index 99d8816..1233f0e 100755
--- a/tools/ade
+++ b/tools/ade
@@ -119,7 +119,8 @@ class Colors:
 class TargetTriplet:
     SUPPORTED = {
         'armhf': "arm-linux-gnueabihf",
-        'arm64': "aarch64-linux-gnu"
+        'arm64': "aarch64-linux-gnu",
+        'x86_64': "x86_64-linux-gnu"
     }
 
     def __init__(self, string):
-- 
GitLab