Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build guideline in README #1067

Merged
merged 1 commit into from
Nov 25, 2022
Merged
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
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,15 @@ Please refer to [our website](https://kuzudb.com/) for installation and usage in


## Development
For development, Kùzu requires Bazel, Python 3, and a compiler that supports `C++20`.
### Bazel configuration
- Create bazel configuration file with `touch .bazelrc`
- Add bazel configuration `echo build --cxxopt="-std=c++2a" --cxxopt='-O3' > .bazelrc`
For development, Kùzu requires Cmake(>=3.11), Python 3, and a compiler that supports `C++20`.

### Bazel build

- To do a full clean build
- `bazel clean --expunge`
- `bazel build //...:all`
- To test
- `bazel test //...:all`
- `make clean`
- `make NUM_THREADS=x`
- To test (after running the build)
- `make test`


## Code of Conduct
Expand Down