mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 08:32:13 +11:00
🐛 fixed docs
This commit is contained in:
parent
2d9fc33835
commit
ee8bd88c96
2 changed files with 7 additions and 5 deletions
|
|
@ -18,7 +18,9 @@ Docker Package can be found [here](https://github.com/EntireTwix/CCash/packages/
|
||||||
```
|
```
|
||||||
git clone --recurse-submodule https://github.com/EntireTwix/CCash/
|
git clone --recurse-submodule https://github.com/EntireTwix/CCash/
|
||||||
cd CCash
|
cd CCash
|
||||||
AVX2_CFLAGS=-mavx2 SSSE3_CFLAGS=-mssse3 SSE41_CFLAGS=-msse4.1 SSE42_CFLAGS=-msse4.2 AVX_CFLAGS=-mavx make third_party/base64/lib/libbase64.o
|
cd third_party/base64
|
||||||
|
AVX2_CFLAGS=-mavx2 SSSE3_CFLAGS=-mssse3 SSE41_CFLAGS=-msse4.1 SSE42_CFLAGS=-msse4.2 AVX_CFLAGS=-mavx make lib/libbase64.o
|
||||||
|
cd ..
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
```
|
```
|
||||||
|
|
@ -35,17 +37,18 @@ there are multiple flags responsible configuring CCash:
|
||||||
| API_VERSION | ${CURRENT_VERSION} | indicates which API version is being used, often backwards compatible | `N/A` | `N/A` |
|
| API_VERSION | ${CURRENT_VERSION} | indicates which API version is being used, often backwards compatible | `N/A` | `N/A` |
|
||||||
| MULTI_THREADED | `true` | when `true` the program is compiled to utilize `n` threads which corresponds to how many Cores your CPU has, plus 1 for saving | speed | memory lock overhead may be in vain on a single core machines |
|
| MULTI_THREADED | `true` | when `true` the program is compiled to utilize `n` threads which corresponds to how many Cores your CPU has, plus 1 for saving | speed | memory lock overhead may be in vain on a single core machines |
|
||||||
| RETURN_ON_DEL_NAME | `N/A` | when defined, return on delete will be toggled and any accounts deleted will send their funds to the defined account, this prevent currency destruction | prevents destruction of currency | deleting accounts is made slower |
|
| RETURN_ON_DEL_NAME | `N/A` | when defined, return on delete will be toggled and any accounts deleted will send their funds to the defined account, this prevent currency destruction | prevents destruction of currency | deleting accounts is made slower |
|
||||||
running simply
|
|
||||||
|
simply running
|
||||||
```
|
```
|
||||||
cmake ..
|
cmake ..
|
||||||
```
|
```
|
||||||
|
|
||||||
sets these flags to their defaults, an example of setting a flag would be
|
sets these flags to their defaults, an example of setting a flag would be
|
||||||
```
|
```
|
||||||
cmake -DMULTI_THREADING=false
|
cmake -DMULTI_THREADING=false ..
|
||||||
```
|
```
|
||||||
|
|
||||||
### Lastly
|
### Lastly
|
||||||
```
|
```
|
||||||
|
cmake <flags of your choice or none> ..
|
||||||
make -j<threads>
|
make -j<threads>
|
||||||
```
|
```
|
||||||
|
|
@ -1,3 +1,2 @@
|
||||||
# About Me
|
# About Me
|
||||||
* [Email](willkatz.dev@gmail.com) you can reach me here, but I may be late to respond as I do not check it often.
|
|
||||||
* [Patreon](https://www.patreon.com/twoxx) if you wanna support this and/or future projects.
|
* [Patreon](https://www.patreon.com/twoxx) if you wanna support this and/or future projects.
|
||||||
Loading…
Reference in a new issue