CMakeForceCompiler.cmake 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. #.rst:
  2. # CMakeForceCompiler
  3. # ------------------
  4. #
  5. # Deprecated. Do not use.
  6. #
  7. # The macros provided by this module were once intended for use by
  8. # cross-compiling toolchain files when CMake was not able to automatically
  9. # detect the compiler identification. Since the introduction of this module,
  10. # CMake's compiler identification capabilities have improved and can now be
  11. # taught to recognize any compiler. Furthermore, the suite of information
  12. # CMake detects from a compiler is now too extensive to be provided by
  13. # toolchain files using these macros.
  14. #
  15. # One common use case for this module was to skip CMake's checks for a
  16. # working compiler when using a cross-compiler that cannot link binaries
  17. # without special flags or custom linker scripts. This case is now supported
  18. # by setting the :variable:`CMAKE_TRY_COMPILE_TARGET_TYPE` variable in the
  19. # toolchain file instead.
  20. #
  21. # -------------------------------------------------------------------------
  22. #
  23. # Macro CMAKE_FORCE_C_COMPILER has the following signature:
  24. #
  25. # ::
  26. #
  27. # CMAKE_FORCE_C_COMPILER(<compiler> <compiler-id>)
  28. #
  29. # It sets CMAKE_C_COMPILER to the given compiler and the cmake internal
  30. # variable CMAKE_C_COMPILER_ID to the given compiler-id. It also
  31. # bypasses the check for working compiler and basic compiler information
  32. # tests.
  33. #
  34. # Macro CMAKE_FORCE_CXX_COMPILER has the following signature:
  35. #
  36. # ::
  37. #
  38. # CMAKE_FORCE_CXX_COMPILER(<compiler> <compiler-id>)
  39. #
  40. # It sets CMAKE_CXX_COMPILER to the given compiler and the cmake
  41. # internal variable CMAKE_CXX_COMPILER_ID to the given compiler-id. It
  42. # also bypasses the check for working compiler and basic compiler
  43. # information tests.
  44. #
  45. # Macro CMAKE_FORCE_Fortran_COMPILER has the following signature:
  46. #
  47. # ::
  48. #
  49. # CMAKE_FORCE_Fortran_COMPILER(<compiler> <compiler-id>)
  50. #
  51. # It sets CMAKE_Fortran_COMPILER to the given compiler and the cmake
  52. # internal variable CMAKE_Fortran_COMPILER_ID to the given compiler-id.
  53. # It also bypasses the check for working compiler and basic compiler
  54. # information tests.
  55. #
  56. # So a simple toolchain file could look like this:
  57. #
  58. # ::
  59. #
  60. # include (CMakeForceCompiler)
  61. # set(CMAKE_SYSTEM_NAME Generic)
  62. # CMAKE_FORCE_C_COMPILER (chc12 MetrowerksHicross)
  63. # CMAKE_FORCE_CXX_COMPILER (chc12 MetrowerksHicross)
  64. #=============================================================================
  65. # Copyright 2007-2009 Kitware, Inc.
  66. #
  67. # Distributed under the OSI-approved BSD License (the "License");
  68. # see accompanying file Copyright.txt for details.
  69. #
  70. # This software is distributed WITHOUT ANY WARRANTY; without even the
  71. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  72. # See the License for more information.
  73. #=============================================================================
  74. # (To distribute this file outside of CMake, substitute the full
  75. # License text for the above reference.)
  76. macro(CMAKE_FORCE_C_COMPILER compiler id)
  77. message(DEPRECATION "The CMAKE_FORCE_C_COMPILER macro is deprecated. "
  78. "Instead just set CMAKE_C_COMPILER and allow CMake to identify the compiler.")
  79. set(CMAKE_C_COMPILER "${compiler}")
  80. set(CMAKE_C_COMPILER_ID_RUN TRUE)
  81. set(CMAKE_C_COMPILER_ID ${id})
  82. set(CMAKE_C_COMPILER_FORCED TRUE)
  83. # Set old compiler id variables.
  84. if(CMAKE_C_COMPILER_ID MATCHES "GNU")
  85. set(CMAKE_COMPILER_IS_GNUCC 1)
  86. endif()
  87. endmacro()
  88. macro(CMAKE_FORCE_CXX_COMPILER compiler id)
  89. message(DEPRECATION "The CMAKE_FORCE_CXX_COMPILER macro is deprecated. "
  90. "Instead just set CMAKE_CXX_COMPILER and allow CMake to identify the compiler.")
  91. set(CMAKE_CXX_COMPILER "${compiler}")
  92. set(CMAKE_CXX_COMPILER_ID_RUN TRUE)
  93. set(CMAKE_CXX_COMPILER_ID ${id})
  94. set(CMAKE_CXX_COMPILER_FORCED TRUE)
  95. # Set old compiler id variables.
  96. if("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU")
  97. set(CMAKE_COMPILER_IS_GNUCXX 1)
  98. endif()
  99. endmacro()
  100. macro(CMAKE_FORCE_Fortran_COMPILER compiler id)
  101. message(DEPRECATION "The CMAKE_FORCE_Fortran_COMPILER macro is deprecated. "
  102. "Instead just set CMAKE_Fortran_COMPILER and allow CMake to identify the compiler.")
  103. set(CMAKE_Fortran_COMPILER "${compiler}")
  104. set(CMAKE_Fortran_COMPILER_ID_RUN TRUE)
  105. set(CMAKE_Fortran_COMPILER_ID ${id})
  106. set(CMAKE_Fortran_COMPILER_FORCED TRUE)
  107. # Set old compiler id variables.
  108. if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU")
  109. set(CMAKE_COMPILER_IS_GNUG77 1)
  110. endif()
  111. endmacro()