aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer
diff options
context:
space:
mode:
authorDenis Shienkov <denis.shienkov@gmail.com>2020-06-07 14:57:38 +0300
committerDenis Shienkov <denis.shienkov@gmail.com>2020-06-08 07:06:16 +0000
commit71631fdadfb319b477d688e30a41d98eb63d9967 (patch)
tree592827dd005d6cfbc67c9b08744cd12636094426 /src/plugins/projectexplorer
parent623e607b2316ee0349763e681b3f744e2e376292 (diff)
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 <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer')
-rw-r--r--src/plugins/projectexplorer/abi.cpp6
1 files changed, 6 insertions, 0 deletions
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;