forked from qt-creator/qt-creator
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:
@@ -517,6 +517,12 @@ Abi Abi::abiFromTargetTriplet(const QString &triple)
|
|||||||
flavor = GenericFlavor;
|
flavor = GenericFlavor;
|
||||||
format = ElfFormat;
|
format = ElfFormat;
|
||||||
width = 32;
|
width = 32;
|
||||||
|
} else if (p == "sh") {
|
||||||
|
arch = ShArchitecture;
|
||||||
|
os = BareMetalOS;
|
||||||
|
flavor = GenericFlavor;
|
||||||
|
format = ElfFormat;
|
||||||
|
width = 32;
|
||||||
} else if (p == "v850") {
|
} else if (p == "v850") {
|
||||||
arch = V850Architecture;
|
arch = V850Architecture;
|
||||||
os = BareMetalOS;
|
os = BareMetalOS;
|
||||||
|
Reference in New Issue
Block a user