From 71631fdadfb319b477d688e30a41d98eb63d9967 Mon Sep 17 00:00:00 2001 From: Denis Shienkov Date: Sun, 7 Jun 2020 14:57:38 +0300 Subject: ProjectExplorer: Recognize GCC ABI for Renesas RX architecture Now the ABI of GCC compiler for the Renesas RX architecture is deteted correctly. Change-Id: I5d0b810a5d5fe7339e0d0f507f696f98c16be30d Reviewed-by: hjk --- src/plugins/projectexplorer/abi.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/plugins/projectexplorer') diff --git a/src/plugins/projectexplorer/abi.cpp b/src/plugins/projectexplorer/abi.cpp index ddaacff054..b6dd90b448 100644 --- a/src/plugins/projectexplorer/abi.cpp +++ b/src/plugins/projectexplorer/abi.cpp @@ -511,6 +511,12 @@ Abi Abi::abiFromTargetTriplet(const QString &triple) flavor = GenericFlavor; format = ElfFormat; width = 16; + } else if (p == "rx") { + arch = RxArchitecture; + os = BareMetalOS; + flavor = GenericFlavor; + format = ElfFormat; + width = 32; } else if (p == "v850") { arch = V850Architecture; os = BareMetalOS; -- cgit v1.2.3