forked from qt-creator/qt-creator
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:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user