I recently installed 64bit build of v.20.03, bundled with mingw (on Window7 64bit).
Building a simple console app it builds it to 64bit without problems.
When I have a look at the project's build options
Compiler Settings/ Compiler Flags / General
there are Targets 32 and 64 bit, both deselected.
But in the command line there is -m64. Why?
If I choose 32bit target in the compiler settings (-m32)
both -m32 and -m64 are used for the command line.
What is the effect by that?
Also the linker gives lots of errors then like
...ld.exe: cannot find -lstdc++
What do I have to do additionally to build 32bit apps?
Simple questions, but maybe may be answered in short
and of help not only for me but for other new users.