This is an automated email from the ASF dual-hosted git repository.
philo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 044f46aab [GLUTEN-5020][VL] Add sudo for macOS related commands (#5031)
044f46aab is described below
commit 044f46aabdca357df75e1710ec27ab4050ebaa20
Author: James Xu <[email protected]>
AuthorDate: Wed Mar 20 16:54:03 2024 +0800
[GLUTEN-5020][VL] Add sudo for macOS related commands (#5031)
---
ep/build-velox/src/build_velox.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ep/build-velox/src/build_velox.sh
b/ep/build-velox/src/build_velox.sh
index 7b2ddd6bb..47423f335 100755
--- a/ep/build-velox/src/build_velox.sh
+++ b/ep/build-velox/src/build_velox.sh
@@ -168,7 +168,7 @@ function compile {
if [ $OS == 'Linux' ]; then
sudo cmake --install xsimd-build/
elif [ $OS == 'Darwin' ]; then
- cmake --install xsimd-build/
+ sudo cmake --install xsimd-build/
fi
fi
if [ -d gtest-build ]; then
@@ -176,7 +176,7 @@ function compile {
if [ $OS == 'Linux' ]; then
sudo cmake --install gtest-build/
elif [ $OS == 'Darwin' ]; then
- cmake --install gtest-build/
+ sudo cmake --install gtest-build/
fi
fi
fi
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]