mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 22:59:58 -07:00
11 lines
291 B
Bash
Executable File
11 lines
291 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "Increasing limit of opened files..."
|
|
ulimit -n 1000000
|
|
|
|
# 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"
|