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
This fix did not work for me on Windows 11 for a 32 bit project. I was not able to compile at all using gcc and had to switch to vcc to get it working, I simply had to add {.link: r"C:\Program Files (x86)\Windows Kits\10\Lib\10.0.19041.0\um\x86\windowscodecs.lib".} to the top of my file and compile using vcc for everything to compile on windows. It also renders the newer windows elements as opposed to the old windows xp style some were reporting.
My environment:
Windows 7 SP1
Nim Compiler Version 1.4.2 [Windows: i386]
gcc version 8.1.0 (i686-posix-dwarf-rev0, Built by MinGW-W64 project)
Link error:
...\nimbledeps\pkgs\ui-0.9.4\res\resources.o: file not recognized: File format not recognized
So I delete line
{.link: r"..\res\resources.o".}
from ui/rawui.nimui/ui/rawui.nim
Line 56 in 9b363b9
And get error:
Then I add a line
{.passL: r"-lstdc++".}
into ui/rawui.nim, build successed.But when I execute the .exe file,there has an error messagebox: Unable to find an entry point named 'TaskDialog' in DLL 'Comctl32.dll'.
The text was updated successfully, but these errors were encountered: