RESOLVED MOVED236251
[Xcode] Prevent install builds from using the default toolchain
https://bugs.webkit.org/show_bug.cgi?id=236251
Summary [Xcode] Prevent install builds from using the default toolchain
Elliott Williams
Reported 2022-02-07 12:09:49 PST
[Xcode] Prevent install builds from using the default toolchain
Attachments
Patch (3.61 KB, patch)
2022-02-07 12:14 PST, Elliott Williams
no flags
Elliott Williams
Comment 1 2022-02-07 12:14:12 PST
Radar WebKit Bug Importer
Comment 2 2022-02-07 12:15:13 PST
Elliott Williams
Comment 3 2022-02-07 12:17:22 PST
Comment on attachment 451137 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=451137&action=review > Source/WTF/WTF.xcodeproj/project.pbxproj:1761 > + shellScript = "if [ $(basename \"$TOOLCHAIN_DIR\") == \"XcodeDefault.xctoolchain\" ]; then\necho \"error: Installed toolchain doesn't match requested one, failing the build early to prevent falling back to default toolchain\"\nexit 1\nfi\n"; this is: ``` if [ $(basename "$TOOLCHAIN_DIR") == "XcodeDefault.xctoolchain" ]; then echo "error: Installed toolchain doesn't match requested one, failing the build early to prevent falling back to default toolchain" exit 1 fi ```
Alexey Proskuryakov
Comment 4 2022-02-07 13:32:29 PST
Comment on attachment 451137 [details] Patch Moving this elsewhere.
Note You need to log in before you can comment on or make changes to this bug.