From 20e63402c95470a5f728a348eb784d5bb9ba66d5 Mon Sep 17 00:00:00 2001 From: Allen Wang <9057208+allenwang28@users.noreply.github.com> Date: Tue, 14 Oct 2025 12:31:52 -0700 Subject: [PATCH] set hostmesh v1 by default in env setup --- scripts/install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index 324373938..30dcf1ff5 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -309,6 +309,9 @@ export PATH="${CUDA_HOME}/bin:$PATH" export CUDA_INCLUDE_DIRS=$CUDA_HOME/include export CUDA_CUDART_LIBRARY=$CUDA_HOME/lib64/libcudart.so +# Temporary measure until this environment variable is removed +export MONARCH_HOST_MESH_V1_REMOVE_ME_BEFORE_RELEASE=1 + # Add only CUDA compat libs to LD_LIBRARY_PATH (safe for system tools) if [ -n "${LD_LIBRARY_PATH:-}" ]; then export LD_LIBRARY_PATH="/usr/local/cuda-${CUDA_VERSION}/compat:${LD_LIBRARY_PATH}"