mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 22:59:58 -07:00
9 lines
276 B
Bash
Executable File
9 lines
276 B
Bash
Executable File
echo "Increasing limit of opened files..."
|
|
ulimit -n $(ulimit -Hn)
|
|
|
|
# Needed because the datasets tree is too big lol
|
|
echo "Increasing stack size..."
|
|
ulimit -s $(ulimit -Hs)
|
|
|
|
cargo build --profile profiling && samply record ./target/profiling/parser "$HOME/Developer/bitcoin"
|