aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2023-11-06 15:11:25 +0100
committerGitHub <noreply@github.com>2023-11-06 15:11:25 +0100
commit59675949da61078c67faaaf127c54e89ff37fb52 (patch)
tree8f9daeb4947558bbfc7ceb87ea4e8922baa2493d
parent6564ce0fb04008d823e72a91a16b4a318c3658f9 (diff)
parent764ce2a4b0259da1df23430e8baae96d4d31a0b8 (diff)
Merge pull request #2926 from karl-zylinski/raylib-shared-use-shared-runtime
RAYLIB_SHARED: use /NODEFAULTLIB:msvcrt
-rw-r--r--vendor/raylib/raylib.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin
index 69a5959f8..aa67fd906 100644
--- a/vendor/raylib/raylib.odin
+++ b/vendor/raylib/raylib.odin
@@ -99,7 +99,7 @@ RAYLIB_SHARED :: #config(RAYLIB_SHARED, false)
when ODIN_OS == .Windows {
when RAYLIB_SHARED {
- @(extra_linker_flags="/NODEFAULTLIB:libcmt")
+ @(extra_linker_flags="/NODEFAULTLIB:msvcrt")
foreign import lib {
"windows/raylibdll.lib",
"system:Winmm.lib",