Merge pull request #37211 from compnerd/windows-static-linking

IRGen: support static linking on Windows
This commit is contained in:
Saleem Abdulrasool
2021-05-05 07:26:36 -07:00
committed by GitHub
17 changed files with 128 additions and 7 deletions

View File

@@ -326,6 +326,9 @@ private:
/// Whether this module file is actually a .sib file.
unsigned IsSIB: 1;
/// Whether this module is compiled as static library.
unsigned IsStaticLibrary: 1;
/// Whether this module file is compiled with '-enable-testing'.
unsigned IsTestable : 1;