Skip to content

Commit 2834ebb

Browse files
authored
Merge pull request #6 from skypool-org/merge/6.18.0
Merge/6.18.0
2 parents 4fdcc15 + 4419f36 commit 2834ebb

143 files changed

Lines changed: 5948 additions & 15059 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# v6.18.0
2+
- [#3067](https://github.com/xmrig/xmrig/pull/3067) Monero v15 network upgrade support and more house keeping.
3+
- Removed deprecated AstroBWTv1 and v2.
4+
- Fixed debug GhostRider build.
5+
- Monero v15 network upgrade support.
6+
- Fixed ZMQ debug log.
7+
- Improved daemon ZMQ mining stability.
8+
- [#3054](https://github.com/xmrig/xmrig/pull/3054) Fixes for 32-bit ARM.
9+
- [#3042](https://github.com/xmrig/xmrig/pull/3042) Fixed being unable to resume from `pause-on-battery`.
10+
- [#3031](https://github.com/xmrig/xmrig/pull/3031) Fixed `--cpu-priority` not working sometimes.
11+
- [#3020](https://github.com/xmrig/xmrig/pull/3020) Removed old AstroBWT algorithm.
12+
113
# v6.17.0
214
- [#2954](https://github.com/xmrig/xmrig/pull/2954) **Dero HE fork support (`astrobwt/v2` algorithm).**
315
- [#2961](https://github.com/xmrig/xmrig/pull/2961) Dero HE (`astrobwt/v2`) CUDA config generator.

CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ option(WITH_CN_PICO "Enable CryptoNight-Pico algorithm" ON)
88
option(WITH_CN_FEMTO "Enable CryptoNight-UPX2 algorithm" ON)
99
option(WITH_RANDOMX "Enable RandomX algorithms family" ON)
1010
option(WITH_ARGON2 "Enable Argon2 algorithms family" ON)
11-
option(WITH_ASTROBWT "Enable AstroBWT algorithms family" ON)
1211
option(WITH_KAWPOW "Enable KawPow algorithms family" ON)
1312
option(WITH_GHOSTRIDER "Enable GhostRider algorithm" ON)
1413
option(WITH_HTTP "Enable HTTP protocol support (client/server)" ON)
@@ -200,7 +199,6 @@ find_package(UV REQUIRED)
200199
include(cmake/flags.cmake)
201200
include(cmake/randomx.cmake)
202201
include(cmake/argon2.cmake)
203-
include(cmake/astrobwt.cmake)
204202
include(cmake/kawpow.cmake)
205203
include(cmake/ghostrider.cmake)
206204
include(cmake/OpenSSL.cmake)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
XMRig is a high performance, open source, cross platform RandomX, KawPow, CryptoNight, AstroBWT and [GhostRider](https://github.com/xmrig/xmrig/tree/master/src/crypto/ghostrider#readme) unified CPU/GPU miner and [RandomX benchmark](https://xmrig.com/benchmark). Official binaries are available for Windows, Linux, macOS and FreeBSD.
1111

1212
## Mining backends
13-
- **CPU** (x64/ARMv8)
13+
- **CPU** (x64/ARMv7/ARMv8)
1414
- **OpenCL** for AMD GPUs.
1515
- **CUDA** for NVIDIA GPUs via external [CUDA plugin](https://github.com/xmrig/xmrig-cuda).
1616

cmake/astrobwt.cmake

Lines changed: 0 additions & 57 deletions
This file was deleted.

scripts/build.hwloc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
HWLOC_VERSION_MAJOR="2"
44
HWLOC_VERSION_MINOR="7"
5-
HWLOC_VERSION_PATCH="0"
5+
HWLOC_VERSION_PATCH="1"
66

77
HWLOC_VERSION="${HWLOC_VERSION_MAJOR}.${HWLOC_VERSION_MINOR}.${HWLOC_VERSION_PATCH}"
88

scripts/build.libressl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -e
22

3-
LIBRESSL_VERSION="3.4.2"
3+
LIBRESSL_VERSION="3.5.2"
44

55
mkdir -p deps
66
mkdir -p deps/include

scripts/build.openssl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -e
22

3-
OPENSSL_VERSION="1.1.1m"
3+
OPENSSL_VERSION="1.1.1o"
44

55
mkdir -p deps
66
mkdir -p deps/include

scripts/build.openssl3.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -e
22

3-
OPENSSL_VERSION="3.0.1"
3+
OPENSSL_VERSION="3.0.3"
44

55
mkdir -p deps
66
mkdir -p deps/include

scripts/build.uv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -e
22

3-
UV_VERSION="1.43.0"
3+
UV_VERSION="1.44.1"
44

55
mkdir -p deps
66
mkdir -p deps/include

scripts/generate_cl.js

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -67,23 +67,6 @@ function rx()
6767
}
6868

6969

70-
function astrobwt()
71-
{
72-
const astrobwt = opencl_minify(addIncludes('astrobwt.cl', [ 'BWT.cl', 'salsa20.cl', 'sha3.cl' ]));
73-
74-
// fs.writeFileSync('astrobwt_gen.cl', astrobwt);
75-
fs.writeFileSync('astrobwt_cl.h', text2h(astrobwt, 'xmrig', 'astrobwt_cl'));
76-
}
77-
78-
79-
function astrobwt_v2()
80-
{
81-
const astrobwt = opencl_minify(addIncludes('astrobwt_v2.cl', [ 'BWT.cl', 'salsa20.cl', 'sha3.cl' ]));
82-
83-
fs.writeFileSync('astrobwt_v2_cl.h', text2h(astrobwt, 'xmrig', 'astrobwt_v2_cl'));
84-
}
85-
86-
8770
function kawpow()
8871
{
8972
const kawpow = opencl_minify(addIncludes('kawpow.cl', [ 'defs.h' ]));
@@ -105,16 +88,6 @@ process.chdir(path.resolve('src/backend/opencl/cl/rx'));
10588

10689
rx();
10790

108-
process.chdir(cwd);
109-
process.chdir(path.resolve('src/backend/opencl/cl/astrobwt'));
110-
111-
astrobwt();
112-
113-
process.chdir(cwd);
114-
process.chdir(path.resolve('src/backend/opencl/cl/astrobwt_v2'));
115-
116-
astrobwt_v2();
117-
11891
process.chdir(cwd);
11992
process.chdir(path.resolve('src/backend/opencl/cl/kawpow'));
12093

0 commit comments

Comments
 (0)