pelles-c

Link to a DLL in Pelles C

扶醉桌前 提交于 2019-12-11 06:09:17
问题 I have a 218KB .dll and a 596KB .so file, both with identical names. I want to link to the .dll to avoid the "unresolved external symbol" error that the linker returns, but I can't find a way to link to the DLL file. According to this Pelles C forum topic, I need to use the .def file to create a .lib ... but I don't have a .def file. This forum topic shows how to use polink to create a .lib from the command line, so I ran polink /? to get some more options. I noticed a /MAKEDEF option, but