I created a standalone executable using C++ and I want it to be usable by the largest number of people possible. In terms of compiler options what can I do to ensure this? I'm using MinGW with the linker option -static-libgcc -static-libstdc++
. My probable users will be using Windows 7.
EDIT: I already made my source code as portable as I can. This webpage mentions the argument ANSI (-A) "for maximum portability". What affect does making it ANSI compatible have?