Skip to content
Permalink
Browse files
Merge pull request #8411 from spycrab/win_repro
Windows: Make builds more reproducible
  • Loading branch information
spycrab committed Oct 20, 2019
2 parents ef77101 + 50ee8b1 commit da22109
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
@@ -50,6 +50,9 @@ if (MSVC)
add_subdirectory(PCH)
add_definitions(/I${PCH_DIRECTORY})
add_definitions(/Yu${PCH_PATH})

# Don't include timestamps in binaries
add_link_options(/Brepro)
endif()

# These aren't actually needed for C11/C++11
@@ -162,7 +162,7 @@
<!--See Common/CompatPatches.cpp-->
<ForceSymbolReferences>enableCompatPatches</ForceSymbolReferences>
<!--TODO fix up ffmpeg garbage-->
<AdditionalOptions>/NODEFAULTLIB:libcmt %(AdditionalOptions)</AdditionalOptions>
<AdditionalOptions>/NODEFAULTLIB:libcmt /Brepro %(AdditionalOptions)</AdditionalOptions>
</Link>
<Lib>
<TreatLibWarningAsErrors>true</TreatLibWarningAsErrors>

0 comments on commit da22109

Please sign in to comment.