Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/madMAx43v3r/chia-plotter
Browse files Browse the repository at this point in the history
…into windows-fury-road
  • Loading branch information
stotiks committed Jun 20, 2021
2 parents 735f815 + c8121b9 commit 249c365
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 29 deletions.
25 changes: 23 additions & 2 deletions README.md
Expand Up @@ -8,7 +8,7 @@ simply by increasing the number of "cores", ie. threads.

## Usage

Check discord for support: https://discord.gg/rj46Dc5c
Check discord for support: https://discord.gg/YJ4GSMMY

```
For <poolkey> and <farmerkey> see output of `chia keys show`.
Expand Down Expand Up @@ -180,7 +180,28 @@ scl enable devtoolset-7 bash
```
---
### Clear Linux
Read [install file](doc/install_clearlinux.md)
```bash
sudo swupd update
sudo swupd bundle-add c-basic devpkg-libsodium git wget

echo PATH=$PATH:/usr/local/bin/ # for statically compiled cmake if not already in your PATH

# Install libsodium
cd /tmp
wget https://download.libsodium.org/libsodium/releases/LATEST.tar.gz
tar -xvf LATEST.tar.gz
cd libsodium-stable
./configure
make && make check
sudo make install
# Checkout the source and install
cd ~/
git clone https://github.com/madMAx43v3r/chia-plotter.git
cd ~/chia-plotter
git submodule update --init
./make_devel.sh
./build/chia_plot --help
```

---
### Ubuntu 20.04
Expand Down
26 changes: 0 additions & 26 deletions doc/install_clearlinux.md

This file was deleted.

2 changes: 1 addition & 1 deletion src/chia_plot.cpp
Expand Up @@ -292,7 +292,7 @@ int _main(int argc, char** argv)
}
}
const int num_files_max = (1 << std::max(log_num_buckets, log_num_buckets_3)) + 2 * num_threads + 32;

#if _WIN32
_setmaxstdio(num_files_max + 10);
//_setmaxstdio(8192);
Expand Down

0 comments on commit 249c365

Please sign in to comment.