Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/run_umt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ if [ "$1" == "build_umt" ]; then
popd

pushd $AOMP_REPOS_TEST/$CONDUIT_SRC_DIR
git clone https://github.com/LLNL/conduit.git .
git clone --branch v0.9.6 https://github.com/LLNL/conduit.git .
rm -rf build
mkdir build
pushd build
Expand Down
10 changes: 10 additions & 0 deletions srock-bin/srock_common_vars
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@ function srock_venv_activate() {
fi
echo "pip install -r requirements.txt"
pip install -r requirements.txt
# WORKAROUND: meson 1.12.0 has a regression in
# mesonbuild/compilers/mixins/clike.py where CLikeCompiler's
# _sanity_check_compile_args() double-applies LDFLAGS-derived link
# args. TheRock's libdrm build passes a -Wl,--version-script= via
# LDFLAGS, so the duplicate causes `ld: duplicate version tag` and
# meson reports "Compiler cc cannot compile programs." Pin below
# requirements.txt's floor until upstream releases a fix.
echo "pip install 'meson>=1.7.0,<1.12.0' # workaround for meson 1.12.0 LDFLAGS dup bug"
pip install 'meson>=1.7.0,<1.12.0'

export PATH=$SROCK_THEROCK_DIR/$SROCK_VENV/bin:$PATH
}

Expand Down
Loading