From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from foss.arm.com (foss.arm.com [217.140.101.70]) by dpdk.org (Postfix) with ESMTP id B02772A58 for ; Wed, 5 Jul 2017 04:14:18 +0200 (CEST) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id E3025344; Tue, 4 Jul 2017 19:14:17 -0700 (PDT) Received: from localhost.localdomain.com (unknown [10.169.41.170]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 7517E3F581; Tue, 4 Jul 2017 19:14:17 -0700 (PDT) From: Herbert Guan To: dts@dpdk.org Cc: Herbert Guan Date: Wed, 5 Jul 2017 10:13:47 +0800 Message-Id: <1499220827-13598-1-git-send-email-herbert.guan@arm.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH] Add the target selection support for ARM targets X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Jul 2017 02:14:19 -0000 Signed-off-by: Herbert Guan --- tools/setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/setup.py b/tools/setup.py index 3d9d8ff..090dda9 100755 --- a/tools/setup.py +++ b/tools/setup.py @@ -225,7 +225,9 @@ def config_execution(): target = 'x86_64-native-linuxapp-gcc' targets = ['x86_64-native-linuxapp-gcc', 'x86_64-native-linuxapp-icc', 'i686-native-linuxapp-gcc', 'i686-native-linuxapp-icc', - 'x86_64-native-bsdapp-gcc', 'x86_64-native-bsdapp-clang'] + 'x86_64-native-bsdapp-gcc', 'x86_64-native-bsdapp-clang', + 'arm64-armv8a-linuxapp-gcc', 'arm64-dpaa2-linuxapp-gcc', + 'arm64-thunderx-linuxapp-gcc', 'arm64-xgene1-linuxapp-gcc'] nic_type = 'cfg' exec_option = {'prompt': 'Choose default or manually', -- 1.8.3.1