================
@@ -619,7 +619,13 @@ class ToolChain {
virtual bool SupportsEmbeddedBitcode() const { return false; }
/// getThreadModel() - Which thread model does this target use?
- virtual std::string getThreadModel() const { return "posix"; }
+ virtual std::string getThreadModel() const {
+#ifdef _WIN32
+ return "win32";
----------------
mati865 wrote:
Oh, you are right. This change as is is pretty dumb right now.
https://github.com/llvm/llvm-project/pull/121442
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits