[clang] [Clang][MIPS] Send correct architecture for MinGW toolchains (PR #121042)

Hervé Poussineau via cfe-commits cfe-commits at lists.llvm.org
Tue Dec 24 04:27:10 PST 2024


================
@@ -85,6 +85,10 @@
 // RUN:   | FileCheck %s --check-prefix CHECK_MINGW_EC_LINK
 // CHECK_MINGW_EC_LINK: "-m" "arm64ecpe"
 
+// RUN: %clang --target=mipsel-windows-gnu -### -o /dev/null %s 2>&1 \
+// RUN:   | FileCheck %s --check-prefix CHECK_MINGW_MIPSPE
+// CHECK_MINGW_MIPSPE: "-m" "mipspe"
----------------
hpoussin wrote:

No, binutils removed support for "mipspe" target in 2.31 (2018)

https://github.com/llvm/llvm-project/pull/121042


More information about the cfe-commits mailing list