Krystian
09/19/2023, 5:59 PMCloseWindow()
as windows libuser32
which gives the following error:
lld-link: error: duplicate symbol: CloseWindow
but that's fine. Easy way to fix it is by ensuring my library is called first, but as it's a static lib I'm unable to simply call it -lmylib
within linkerOpts
because it complains it doesn't exist? How can I somewhat force K/N to link my lib first?
I want to point out that I'm only using provided platform.windows
code provided by Jetbrains.-Wl,--allow-multiple-definition
would this be classified as safe thing to do? 🤔