How do I compile my CPP file into a 32 bit DLL file under Windows with MinGW? Well I researched for a while now of how to compile CPP file into a 32 bit DLL file but all I found was converting 32 Bit DLL into a 64 bit which does not answer my question
Asked
Active
Viewed 187 times
1 Answers
-1
Try to use the option --enable-lib32
when compiling according to MinGW's document.
-
That flag can be used when compiling MinGW itself, not when compiling something using it. – HolyBlackCat Jan 08 '22 at 08:38