Do not remove MinGW libraries from Fortran default linker flags

2024-12-12 Thread Markus Mützel
Stripping `-lmingwex` from the Fortran default linker flags can lead to a situation where the first `-lmsvcrt` appears before the first `-lmingwex` for a library that consists of Fortran and C++ sources. That means that the linker picks some functions from the Windows CRT that should instead be pic

Re: Do not remove MinGW libraries from Fortran default linker flags

2025-01-05 Thread Markus Mützel
this library only on Windows-like systems. case $host_os in cygwin* | msys* | mingw* | windows*) ;; -- 2.44.0.windows.1 Am 12. Dezember 2024 um 13:42 schrieb "Markus Mützel": > Stripping `-lmingwex` from the Fortran default linker flags can lead to > a situatio