Installing xcodes 2.1.0 from source (both the homebrew-core formula and the xcodesorg/made tap, which run make install) fails on macOS 26.6 with Xcode 27.0 (27A266a):
Build complete! (68.59 sec)
install: .../.build/apple/Products/Release/xcodes: No such file or directory
make: *** [install] Error 71
The Makefile hardcodes RELEASEBUILDDIR = $(BUILDDIR)/apple/Products/Release/xcodes, but Xcode 27's SwiftPM emits multi-arch products under $(BUILDDIR)/out/Products/Release/ instead. The binary is built fine (universal arm64+x86_64, verified with file) — only the install path lookup fails. The sign, zip, and bottle targets are affected too.
Possible fix: resolve the path via swift build --show-bin-path instead of hardcoding it, or check both locations.
Installing xcodes 2.1.0 from source (both the homebrew-core formula and the
xcodesorg/madetap, which runmake install) fails on macOS 26.6 with Xcode 27.0 (27A266a):The Makefile hardcodes
RELEASEBUILDDIR = $(BUILDDIR)/apple/Products/Release/xcodes, but Xcode 27's SwiftPM emits multi-arch products under$(BUILDDIR)/out/Products/Release/instead. The binary is built fine (universal arm64+x86_64, verified withfile) — only the install path lookup fails. Thesign,zip, andbottletargets are affected too.Possible fix: resolve the path via
swift build --show-bin-pathinstead of hardcoding it, or check both locations.