mesh-llm/scripts/build-mac.sh
Nick DiZazzo ed41f366dc
feat: unify release hosts and native runtimes
- build one backend-neutral host per platform and package native runtimes separately
- compose immutable product-v2 bundles from verified host and runtime artifacts
- enforce host import policy and runtime provenance across release and SDK lanes
- align debug, release, Windows, Kotlin, and Swift validation with the composed product model
- update release documentation, CI topology, and agent guidance for the unified path
- require no-device client readiness and bounded clean shutdown for packaged runtimes
2026-07-29 10:16:23 -04:00

8 lines
325 B
Bash
Executable file

#!/usr/bin/env zsh
# Compatibility entry point for the unified macOS development product.
# The host is dynamic; native ABI compilation happens only in runtime packaging.
setopt errexit nounset pipefail
SCRIPT_DIR="${0:A:h}"
exec "$SCRIPT_DIR/build-development-product.sh" --profile "${MESH_LLM_BUILD_PROFILE:-debug}" "$@"