mirror of
https://github.com/Mesh-LLM/mesh-llm.git
synced 2026-08-08 22:23:19 -04:00
- 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
8 lines
325 B
Bash
Executable file
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}" "$@"
|