Fixed TLS build on Windows GCC/MVSC
Cleanup TLS compile
This commit is contained in:
parent
bc110ef162
commit
972f542901
13 changed files with 66 additions and 51 deletions
|
@ -47,9 +47,17 @@
|
|||
#define APP_VER_REV 0
|
||||
|
||||
#ifndef NDEBUG
|
||||
#define BUILD_TYPE "DEBUG"
|
||||
#ifndef XMRIG_NO_TLS
|
||||
#define BUILD_TYPE "DEBUG with TLS"
|
||||
#else
|
||||
#define BUILD_TYPE "DEBUG"
|
||||
#endif
|
||||
#else
|
||||
#define BUILD_TYPE "RELEASE"
|
||||
#ifndef XMRIG_NO_TLS
|
||||
#define BUILD_TYPE "RELEASE with TLS"
|
||||
#else
|
||||
#define BUILD_TYPE "RELEASE"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue