-
-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The lib names from msvc_sdk are being mismatched #1635
Comments
I have updated the python script and the built in links. See if it works better. |
Most of the errors are gone, just had two now:
|
Where are those from? |
I can't find anything like that in my sources. |
I can find them in the generated msvc_sdk, but they are lowercase. I'm also trying to link with raylib, so this could be a specific dependency there. I'm on Linux host. |
The clang rt with asan seems to use those names. |
That explains it. I don't think we can predict what naming each lib will use, but we could put a note in the docs warning people about it, so they can rename it as needed, or rather create links for it. |
This looks good to me, we can close it in my opinion. |
I've updated the script so that we get both a copy MSVCRT and OLDNAMES.lib as well as the lower case versions. Try it out! |
Works out of the box now. Much appreciated! |
As mentioned in this issue , the names from the libs downloaded from the python script are being matched with case sensitive, which causes errors when trying to link against them.
For example:
Discussed solution would be to adjust the script to rename the libs to the format expected by the compiler.
The text was updated successfully, but these errors were encountered: