Fixed arm build and windows build server script

This commit is contained in:
BenDroid 2018-01-20 13:46:46 +01:00
parent 12d2663b5a
commit 36f0d9c68a
2 changed files with 4 additions and 3 deletions

View file

@ -26,13 +26,14 @@
#include "Cpu.h"
#include "CpuImpl.h"
void CpuImpl::initCommon()
{
memcpy(m_brand, "Unknown", 7);
# if defined(XMRIG_ARMv8)
m_flags |= X86_64;
m_flags |= AES;
m_flags |= Cpu::X86_64;
m_flags |= Cpu::AES;
# endif
}