Displaying 1 result from an estimated 1 matches for "explicitemulatedtls".
2019 Jan 22
2
Windows JIT-Client and Emulated TLS
...by the JIT process, so I went there and looked for my "llvm::TargetOptions" and set these values explicit:
options.ThreadModel = llvm::ThreadModel::Single;
options.EmulatedTLS = false;
options.ExplicitEmulatedTLS = false;
Sadly this didn't changed a thing... Also setting "-Xclang -fno-emulated-tls" didn't worked, only setting the MSVC switch "/Zc:threadSafeInit-" helped but... obviously disabled TLS at all.
What options do I have? I found an implementation for "__emutls_ge...