Open
Description
Toying with w64devkit
to see if it creates plugin DLL's that work with a 3rd party app that appears to have been compiled with VC++ 2010/11. The following trivial experiment indicates it will avoid these types of problems, but do you recommend something else when using w64devkit
other than spec file tweaks to force a CRT link with msvcr{80,90,100,110,120}
if truly needed?
Haven't tried UCRT
with w64devkit
but this and what I see in <INSTALL>/x86_64-w64-mingw32/lib
looks promising.
OT...like your blog, this one was great.
$ gcc --version | head -1 && gcc -dumpspecs | grep -C 1 msvc
gcc (GCC) 11.1.0
*libgcc:
%{mthreads:-lmingwthrd} -lmingw32 -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32
$ cat msvcr100.spec
*libgcc:
%{mthreads:-lmingwthrd} -lmingw32 -lgcc -lmoldname -lmingwex -lmsvcr100 -lkernel32
$ gcc -Wall -Wextra -O2 -s -specs=msvcr100.spec -o min.exe min.c
min.c: In function 'main':
min.c:3:14: warning: unused parameter 'argc' [-Wunused-parameter]
3 | int main(int argc, char *argv[])
| ~~~~^~~~
min.c:3:26: warning: unused parameter 'argv' [-Wunused-parameter]
3 | int main(int argc, char *argv[])
| ~~~~~~^~~~~~
$ ./min.exe
Hello min!
$ objdump -x min.exe | grep -i 'dll name'
DLL Name: KERNEL32.dll
DLL Name: msvcr100.dll
Metadata
Metadata
Assignees
Labels
No labels