ProjectExplorer: Recognize GCC ABI for Renesas SuperH architecture

Now the ABI of GCC compiler for the Renesas SuperH architecture is
deteted correctly.

Change-Id: I788bc848fed4741b3bbc193e843b753884c7e209
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Denis Shienkov
2020-06-07 15:04:49 +03:00
parent 71631fdadf
commit a8f38f8aab

View File

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