1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-08 08:23:34 -05:00

Fixed Linux build.

This commit is contained in:
XMRig
2019-10-07 13:37:12 +07:00
parent 68d77b02d7
commit 0e0a26f644
3 changed files with 3 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ xmrig::CpuWorker<N>::CpuWorker(size_t id, const CpuLaunchData &data) :
m_miner(data.miner),
m_ctx()
{
m_memory = new VirtualMemory(m_algorithm.l3() * N, data.hugePages, true);
m_memory = new VirtualMemory(m_algorithm.l3() * N, data.hugePages, true, m_node);
}