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>
This commit is contained in:
Denis Shienkov
2020-06-07 14:57:38 +03:00
parent 623e607b23
commit 71631fdadf

View File

@@ -511,6 +511,12 @@ Abi Abi::abiFromTargetTriplet(const QString &triple)
flavor = GenericFlavor; flavor = GenericFlavor;
format = ElfFormat; format = ElfFormat;
width = 16; width = 16;
} else if (p == "rx") {
arch = RxArchitecture;
os = BareMetalOS;
flavor = GenericFlavor;
format = ElfFormat;
width = 32;
} else if (p == "v850") { } else if (p == "v850") {
arch = V850Architecture; arch = V850Architecture;
os = BareMetalOS; os = BareMetalOS;