Skip to content

Commit

Permalink
Minor fix to chapel-py's run-in-venv script (#26055)
Browse files Browse the repository at this point in the history
Follow on to: #26050 that adds
some missing double braces to `chapel-py`'s run-in-venv script (forgot
to add this last commit before merging).

[ reviewed by @jabraham17 ] - thanks!
  • Loading branch information
jeremiah-corrado authored Oct 8, 2024
2 parents e44565f + 6bd7e75 commit da8ce92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/config/run-in-venv-with-python-bindings.bash
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if [ $("$python" "$CHPL_HOME/util/chplenv/chpl_sanitizers.py") == "address" ]; t
exit 1
fi

if [ "$CC" == *"clang"* ]; then
if [[ "$CC" == *"clang"* ]]; then
export LD_PRELOAD=$($CC -print-file-name=libclang_rt.asan.so)
else
export LD_PRELOAD=$($CC -print-file-name=libasan.so)
Expand Down

0 comments on commit da8ce92

Please sign in to comment.