Skip to content

Commit

Permalink
Fix Windows build
Browse files Browse the repository at this point in the history
In the libuv bump to 1.45.0 there was a change introducing more
libs to link to:

libuv/libuv@748d894

The libs that commit introduced into the libuv build system are:

dbghelp, ole32, uuid

Looking at the commit it seems no symbol in uuid is used. So I left
it out in this commit. MoarVM builds, so I guess it's fine.
  • Loading branch information
patrickbkr committed Jun 4, 2023
1 parent a21ae05 commit 278af76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/setup.pm
Expand Up @@ -479,7 +479,7 @@ our %COMPILERS = (
my %OS_WIN32 = (
exe => '.exe',
defs => [ qw( WIN32 AO_ASSUME_WINDOWS98 ) ],
syslibs => [ qw( shell32 ws2_32 mswsock rpcrt4 advapi32 psapi iphlpapi userenv user32 bcrypt ) ],
syslibs => [ qw( shell32 ws2_32 mswsock rpcrt4 advapi32 psapi iphlpapi userenv user32 bcrypt dbghelp ole32 ) ],
platform => '$(PLATFORM_WIN32)',

translate_newline_output => 1,
Expand Down

0 comments on commit 278af76

Please sign in to comment.