Skip to content

Commit

Permalink
Fix link error in FastNoiseSIMD on Windows (#1924)
Browse files Browse the repository at this point in the history
The wrapper and library were using different runtimes. Compile the
library against the dynamic runtime to match the runtime.
  • Loading branch information
OmarEmaraDev authored Oct 4, 2023
1 parent 1a39086 commit 1c9bf68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ setlocal
:: /EHsc Set appropriate error handling
:: /GL- Disable whole program optimization
:: /Ox Enable full optimization
set args=-c /EHsc /GL- /Ox
set args=-c /EHsc /GL- /Ox /MD

cl FastNoiseSIMD.cpp %args%
cl FastNoiseSIMD_internal.cpp %args%
Expand Down

0 comments on commit 1c9bf68

Please sign in to comment.