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

chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-fury-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 3ec0f18  πŸ”„ synced local 'docs/guide/' with remote 'docs/guide/'
3ec0f18 is described below

commit 3ec0f18c3846699f20e29c58e5a4d423e912237a
Author: chaokunyang <[email protected]>
AuthorDate: Sat Jan 6 10:50:06 2024 +0000

    πŸ”„ synced local 'docs/guide/' with remote 'docs/guide/'
---
 docs/guide/DEVELOPMENT.md | 33 +++++++++++++++------------------
 1 file changed, 15 insertions(+), 18 deletions(-)

diff --git a/docs/guide/DEVELOPMENT.md b/docs/guide/DEVELOPMENT.md
index cf94e23..01b660c 100644
--- a/docs/guide/DEVELOPMENT.md
+++ b/docs/guide/DEVELOPMENT.md
@@ -4,15 +4,11 @@ sidebar_position: 6
 id: development
 ---
 
-# How to build to Fury
+# How to build Fury
 
-## Get the source code
+Please checkout the source tree from https://github.com/apache/incubator-fury.
 
-Github repo: https://github.com/apache/incubator-fury
-
-## Building Fury πŸ‹πŸΏβ€β™€οΈ
-
-### Building Fury Java
+### Build Fury Java
 
 ```bash
 cd java
@@ -24,7 +20,7 @@ mvn clean compile -DskipTests
 - java 1.8+
 - maven 3.6.3+
 
-### Building Fury Python
+### Build Fury Python
 
 ```bash
 cd python
@@ -34,29 +30,30 @@ pip install -v -e .
 
 #### Environment Requirements
 
-- python3.6+
+- python 3.6+
 
-### Building Fury C++
+### Build Fury C++
 
-Build fury_util.so:
+Build fury row format:
 
 ```bash
-bazel build //src/fury/util:fury_util
+pip install pyarrow==14.0.0
+bazel build //src/fury/row:fury_row_format
 ```
 
-Build fury row format:
+Build fury row format encoder:
 
 ```bash
 pip install pyarrow==14.0.0
-bazel build //src/fury/row:fury_row_format
+bazel build //src/fury/encoder:fury_encoder
 ```
 
 #### Environment Requirements
 
-- cpp 11+
+- compilers with C++17 support
 - bazel 6.3.2
 
-### Building Fury GoLang
+### Build Fury GoLang
 
 ```bash
 cd go/fury
@@ -68,9 +65,9 @@ go test -v fury_xlang_test.go
 
 #### Environment Requirements
 
-- go1.3+
+- go 1.13+
 
-### Building Fury Rust
+### Build Fury Rust
 
 ```bash
 cd rust


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

Reply via email to