[Lldb-commits] [lldb] [lldb] Correct BridgeOS spelling and ignore case when parsing the SDK (PR #163479)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 15 11:19:07 PDT 2025
================
@@ -65,27 +65,27 @@ bool XcodeSDK::operator==(const XcodeSDK &other) const {
}
static XcodeSDK::Type ParseSDKName(llvm::StringRef &name) {
- if (name.consume_front("MacOSX"))
+ if (name.consume_front_insensitive("MacOSX"))
----------------
adrian-prantl wrote:
I think I would prefer us remaining strict and just fix the spelling of bridgeOS going forward.
https://github.com/llvm/llvm-project/pull/163479
More information about the lldb-commits
mailing list