Skip to content

Commit

Permalink
Don't pass -bigobj everywhere because it is passed to asms which is w…
Browse files Browse the repository at this point in the history
…rong.
  • Loading branch information
egorpugin committed Nov 30, 2024
1 parent f86991f commit 8caf5cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sw/driver/target/native.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,9 @@ void NativeCompiledTarget::prepare_pass1()

if (getCompilerType() == CompilerType::MSVC)
{
CompileOptions.push_back("-bigobj");
// dav1d does not work with this
// it passes -bigobj to nasm which is wrong
//CompileOptions.push_back("-bigobj");
}
if (ReproducibleBuild)
{
Expand Down

0 comments on commit 8caf5cf

Please sign in to comment.