Ver Fonte

Merge pull request #7245 from Morph1984/compile-opt-desc

CMakeLists: Document the /GT compile option
Mai M há 4 anos atrás
pai
commit
06d097a18e
1 ficheiros alterados com 1 adições e 0 exclusões
  1. 1 0
      src/CMakeLists.txt

+ 1 - 0
src/CMakeLists.txt

@@ -32,6 +32,7 @@ if (MSVC)
     # /Zc:externConstexpr - Allow extern constexpr variables to have external linkage, like the standard mandates
     # /Zc:inline          - Let codegen omit inline functions in object files
     # /Zc:throwingNew     - Let codegen assume `operator new` (without std::nothrow) will never return null
+    # /GT                 - Supports fiber safety for data allocated using static thread-local storage
     add_compile_options(
         /MP
         /Zi