summaryrefslogtreecommitdiff
path: root/Modules/CMakeFortranCompilerABI.F
Commit message (Collapse)AuthorAgeFilesLines
* Fortran: Improve pointer size detection in gfortran on MinGWBrad King2013-12-061-0/+4
| | | | | | | | In commit ecd84147 (Fortran: Detect pointer size in gfortran on MinGW, 2011-11-29) we started testing for __SIZEOF_POINTER__ but not all GNU Fortran compilers define this. Check also for __SIZEOF_SIZE_T__ which at least one version of gfortran defines without also defining __SIZEOF_POINTER__.
* Fortran: Detect pointer size in gfortran on MinGWBrad King2011-12-051-0/+5
| | | | | | 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.
* Detect Fortran ABI InformationBrad King2010-01-121-2/+32
| | | | | | | Implement Fortran 32/64-bit ABI detection on some platforms. We need to set CMAKE_SIZEOF_VOID_P correctly in Fortran-only projects so that the find_library() command knows whether to look for 64-bit binaries. We also detect ELF binaries to enable RPATH replacement. See issue #10119.
* ENH: Create Fortran ABI detection frameworkBrad King2009-07-131-0/+3
This invokes CMakeDetermineCompilerABI.cmake for Fortran at the same place it is already done for C and CXX.