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
Hello, i'm trying to connect OpenAL soft to my project, and i keep getting LNK2001 errors, despite having the .lib LINKED to my project! And yeah, i have the AL_LIBTYPE_STATIC define, same error, but with different export function name. (without, _imp, with _ (just underscore)
I don't get it, what could be wrong?
The text was updated successfully, but these errors were encountered:
Are you sure you're linking the static library? AL_LIBTYPE_STATIC doesn't make it static link, it should only be defined if you're linking to the static library. If you link to the dynamic import .lib it won't find the functions in the DLL that way.
Hello, i'm trying to connect OpenAL soft to my project, and i keep getting LNK2001 errors, despite having the .lib LINKED to my project! And yeah, i have the AL_LIBTYPE_STATIC define, same error, but with different export function name. (without, _imp, with _ (just underscore)
I don't get it, what could be wrong?
The text was updated successfully, but these errors were encountered: