Fix summary
Include the x64 parameter in build.
This commit is contained in:
parent
09abc63499
commit
a5d3abdddb
1 changed files with 3 additions and 2 deletions
|
@ -91,8 +91,9 @@ static void print_cpu()
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
PRINT_MSG(" * CPU: " << Cpu::brand() << " (" << Cpu::sockets() << ") " << (Cpu::isX64() ? "" : "-") <<
|
PRINT_MSG(" * CPU: " << Cpu::brand() << " (" << Cpu::threads() << "@" << Cpu::sockets() << ") " <<
|
||||||
" " << (Cpu::hasAES() ? "" : "-") << "AES-NI");
|
(Cpu::isX64() ? "" : "-") << "64 " <<
|
||||||
|
(Cpu::hasAES() ? "" : "-") << "AES-NI");
|
||||||
# ifndef XMRIG_NO_LIBCPUID
|
# ifndef XMRIG_NO_LIBCPUID
|
||||||
PRINT_MSG(" * CPU L2/L3: " << (Cpu::l2() / 1024.0) << " MB/" << Cpu::l3() / 1024.0 << " MB");
|
PRINT_MSG(" * CPU L2/L3: " << (Cpu::l2() / 1024.0) << " MB/" << Cpu::l3() / 1024.0 << " MB");
|
||||||
# endif
|
# endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue