docs: update CURRENT_TASK with Box Theory PHI plan (defer/finalize) and MIR v0.5 type meta; add parity tooling and PyVM scaffolding
impl(pyvm/llvmlite): - add tools/parity.sh; tools/pyvm_runner.py; src/llvm_py/pyvm/* - emit string const as handle type in MIR JSON; add dst_type hints - unify '+' to concat_hh with from_i64/from_i8_string bridges; console print via to_i8p_h - add runtime bridges: nyash.box.from_i64, nyash.string.to_i8p_h tests: - add apps/tests/min_str_cat_loop (minimal repro for string cat loop)
This commit is contained in:
@ -7,9 +7,15 @@ ROOT_DIR=$(cd "$(dirname "$0")/.." && pwd)
|
||||
cd "$ROOT_DIR"
|
||||
|
||||
PROFILE=${PROFILE:-release}
|
||||
JOBS=${JOBS:-24}
|
||||
|
||||
echo "[plugins] building all (profile=$PROFILE)"
|
||||
echo "[plugins] building all (profile=$PROFILE, jobs=$JOBS)"
|
||||
|
||||
# Build all plugins in one go for maximum efficiency
|
||||
echo "[plugins] building workspace..."
|
||||
cargo build --workspace --$PROFILE -j $JOBS >/dev/null
|
||||
|
||||
# Copy artifacts to plugin directories
|
||||
for dir in plugins/*; do
|
||||
[[ -d "$dir" && -f "$dir/Cargo.toml" ]] || continue
|
||||
pkg=$(grep -m1 '^name\s*=\s*"' "$dir/Cargo.toml" | sed -E 's/.*"(.*)".*/\1/')
|
||||
@ -19,7 +25,6 @@ for dir in plugins/*; do
|
||||
libname=${pkg//-/_}
|
||||
fi
|
||||
echo "[plugins] -> $pkg (libname=$libname)"
|
||||
cargo build -p "$pkg" --$PROFILE >/dev/null
|
||||
# Copy artifacts
|
||||
outdir="target/$PROFILE"
|
||||
# cdylib (.so/.dylib/.dll)
|
||||
|
||||
Reference in New Issue
Block a user