I create some fortran programs with gfortran under MinGW and MSYS on my Windows 7. But when I run them on other computers on which MinGW and MSYS are not installed, the system always asks for some DLLs such as libgfortran-3.dll or libgcc_s_dw2-1 .dll.
I want to ask if there is a way to create programs that run without the additional MinGW and MSYS libraries. I heard that there is an opportunity for cygwin users, namly '-mno-cygwin', which makes programs without cygwin1.dll. Is there a similar option for MinGW and MSYS?
source
share