summaryrefslogtreecommitdiff
path: root/Modules/Platform/Windows-GNU-Fortran.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Fortran: Detect pointer size in gfortran on MinGWBrad King2011-12-051-0/+3
| | | | | | Use __SIZEOF_POINTER__ which the GNU Fortran compiler defines at least on 64-bit MinGW. Assume default size 4 on MinGW if gfortran does not define the size.
* MinGW: Support long object file listsBrad King2010-09-171-1/+0
| | | | | | | Use a combination of response files and the archiver to support long object file lists that do not fit in the Windows command-line length limit. This can work only with GCC >= 4 because the MinGW GCC 3.x front-ends do not support response-file syntax.
* Use response file for objects on MinGW and MSYSBrad King2010-03-111-0/+1
| | | | | | | Windows command lines are limited to about 32K so we need to use response files for linking very large lists of object files. See issue #10401.
* Modernize GNU compiler info on WindowsBrad King2009-12-021-0/+2
This moves GNU compiler info on Windows into new-style modules Platform/Windows-GNU-<lang>.cmake using language-independent helper module Platform/Windows-GNU.cmake to define macros consolidating the information.