This is an automated email from the ASF dual-hosted git repository.

yuanzhou 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 e58bef309 [VL] Update ubuntu docker to use cmake 3.28 (#6373)
e58bef309 is described below

commit e58bef309677fc158b1d7b5a63b134d9e6644402
Author: Rex(Hui) An <[email protected]>
AuthorDate: Tue Jul 9 10:51:47 2024 +0800

    [VL] Update ubuntu docker to use cmake 3.28 (#6373)
    
    Since the velox needs cmake version > 3.28, we better update the doc to 
align this change
---
 docs/developers/docker_ubuntu22.04.md | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/docs/developers/docker_ubuntu22.04.md 
b/docs/developers/docker_ubuntu22.04.md
index 7d73d0ac3..b139fecdc 100644
--- a/docs/developers/docker_ubuntu22.04.md
+++ b/docs/developers/docker_ubuntu22.04.md
@@ -21,7 +21,8 @@ apt-get update
 
 #install gcc and libraries to build arrow
 apt install software-properties-common
-apt install maven build-essential cmake libssl-dev libre2-dev 
libcurl4-openssl-dev clang lldb lld libz-dev git ninja-build uuid-dev 
autoconf-archive curl zip unzip tar pkg-config bison libtool flex vim
+apt install maven build-essential libssl-dev libre2-dev libcurl4-openssl-dev 
clang lldb lld libz-dev git ninja-build uuid-dev autoconf-archive curl zip 
unzip tar pkg-config bison libtool flex vim python3-pip
+pip3 install cmake==3.28.3
 
 #velox script needs sudo to install dependency libraries
 apt install sudo
@@ -57,4 +58,8 @@ cd incubator-gluten/
 # It's suggested to build using static link, enabled by `--enable_vcpkg=ON`
 # For developer, it's suggested to enable Debug info, by 
--build_type=RelWithDebInfo. Note RelWithDebInfo uses -o2, release uses -o3
 ./dev/buildbundle-veloxbe.sh --enable_vcpkg=ON --build_type=RelWithDebInfo
+
+# If you meet the error like `epoll_wait: Function not implemented` when 
running tests,
+# Please enable epoll_pwait by,
+export EVENT_NOEPOLL=1
 ```


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to