diff options
author | Brad King <brad.king@kitware.com> | 2012-08-24 19:15:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-08-24 19:15:14 (GMT) |
commit | e5fee8a7c2873531c8e8e8ee991e8d0697f9bf73 (patch) | |
tree | f63ad4fd1723340740d3b08abb800a3ce016563f /Modules/CMakeFortranCompiler.cmake.in | |
parent | 3df81b49126cf6dc3e4e9a8fa8c368f33886db54 (diff) | |
download | CMake-e5fee8a7c2873531c8e8e8ee991e8d0697f9bf73.zip CMake-e5fee8a7c2873531c8e8e8ee991e8d0697f9bf73.tar.gz CMake-e5fee8a7c2873531c8e8e8ee991e8d0697f9bf73.tar.bz2 |
Store ABI detection results in compiler information files
Drop use of cache entry CMAKE_DETERMINE_<LANG>_ABI_COMPILED and replace
it with variable CMAKE_<LANG>_ABI_COMPILED. Since the grandparent
commit this test result is specific to the version of CMake. Store it
in the version-specific compiler information files instead of
CMakeCache.txt so testing can be re-done to meet the requirements of the
current version of CMake even if another version of CMake was already
used to configure the build tree.
Diffstat (limited to 'Modules/CMakeFortranCompiler.cmake.in')
-rw-r--r-- | Modules/CMakeFortranCompiler.cmake.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/CMakeFortranCompiler.cmake.in b/Modules/CMakeFortranCompiler.cmake.in index 9ed3aac..55f8277 100644 --- a/Modules/CMakeFortranCompiler.cmake.in +++ b/Modules/CMakeFortranCompiler.cmake.in @@ -8,6 +8,7 @@ set(CMAKE_RANLIB "@CMAKE_RANLIB@") set(CMAKE_COMPILER_IS_GNUG77 @CMAKE_COMPILER_IS_GNUG77@) set(CMAKE_Fortran_COMPILER_LOADED 1) set(CMAKE_Fortran_COMPILER_WORKS @CMAKE_Fortran_COMPILER_WORKS@) +set(CMAKE_Fortran_ABI_COMPILED @CMAKE_Fortran_ABI_COMPILED@) set(CMAKE_COMPILER_IS_MINGW @CMAKE_COMPILER_IS_MINGW@) set(CMAKE_COMPILER_IS_CYGWIN @CMAKE_COMPILER_IS_CYGWIN@) if(CMAKE_COMPILER_IS_CYGWIN) |