You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiler: gcc (Rev2, Built by MSYS2 project) 10.3.0
To Reproduce
Steps to reproduce the behavior: ./vcpkg install raylib:x64-mingw-dynamic
Failure logs
C:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/10.3.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lasan
C:/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/10.3.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lubsan
collect2.exe: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Additional context
It appears that the portfile for raylib is trying to use 'asan' and 'ubsan' which aren't available in MinGW, editing the port file to set '-DENABLE_ASAN' (line 44) to OFF and the same with '-DENABLE_UBSAN' (line 45) allows raylib to build.
The text was updated successfully, but these errors were encountered:
Host Environment
To Reproduce
Steps to reproduce the behavior:
./vcpkg install raylib:x64-mingw-dynamic
Failure logs
Additional context
It appears that the portfile for raylib is trying to use 'asan' and 'ubsan' which aren't available in MinGW, editing the port file to set '-DENABLE_ASAN' (line 44) to OFF and the same with '-DENABLE_UBSAN' (line 45) allows raylib to build.
The text was updated successfully, but these errors were encountered: