aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer')
-rw-r--r--src/plugins/projectexplorer/abi.cpp4
-rw-r--r--src/plugins/projectexplorer/abi.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/abi.cpp b/src/plugins/projectexplorer/abi.cpp
index 9bd6baf4da5..ee310020f15 100644
--- a/src/plugins/projectexplorer/abi.cpp
+++ b/src/plugins/projectexplorer/abi.cpp
@@ -763,6 +763,8 @@ QString Abi::toString(const Architecture &a)
return QLatin1String("78k");
case M68KArchitecture:
return QLatin1String("m68k");
+ case M32CArchitecture:
+ return QLatin1String("m32c");
case RiscVArchitecture:
return QLatin1String("riscv");
case UnknownArchitecture:
@@ -923,6 +925,8 @@ Abi::Architecture Abi::architectureFromString(const QStringRef &a)
return K78Architecture;
if (a == "m68k")
return M68KArchitecture;
+ if (a == "m32c")
+ return M32CArchitecture;
if (a == "riscv")
return RiscVArchitecture;
else if (a == "xtensa")
diff --git a/src/plugins/projectexplorer/abi.h b/src/plugins/projectexplorer/abi.h
index c94ee6081f8..ecbb1cbf88d 100644
--- a/src/plugins/projectexplorer/abi.h
+++ b/src/plugins/projectexplorer/abi.h
@@ -70,6 +70,7 @@ public:
RxArchitecture,
K78Architecture,
M68KArchitecture,
+ M32CArchitecture,
RiscVArchitecture,
UnknownArchitecture
};