MSVC linker Export of characters from an executable file without a .exp file

29 views Asked by At

I want to export characters from an executable file without its .exp file using /FORCE:UNRESOLVED

I tried to use even delayed loading together with /FORCE:UNRESOLVED, but it doesn't help, I probably need to use some analogue of the ld64 -undefined dynamic_lookupcommand here, but I don't know its name for the MSVC linker

Specifies how undefined symbols are to be treated. Options are: error, warning, suppress, or dynamic_lookup. The default is error.

I also used /EXPORT for symbol from executable and /INCLUDE flags for dll

0

There are 0 answers