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

Misc Fixes - ignore juno artifacts in .gitignore and add requirement for implicit dependency on pkg-config #1923

Merged
merged 2 commits into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ config/

# pyenv
.python-version

# Default path for Juno DB files. It will get created if you follow the
# README and/or run `./build/juno` command.
juno/
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,18 +49,20 @@
the official Golang [download](https://go.dev/doc/install) page.
- [Rust](https://www.rust-lang.org/tools/install).
- A C compiler: `gcc` or `clang`.
- Install `jemalloc` on your system:
- Install `jemalloc` and `pkg-config` on your system:

- macOS

```bash
brew install jemalloc
brew install pkg-config
```

- Ubuntu

```bash
sudo apt-get install -y libjemalloc-dev
sudo apt-get install -y pkg-config
```

- To ensure a successful build, you either need to synchronize the tags from the upstream repository or create a new tag.
Expand Down
Loading