diff options
Diffstat (limited to 'Modules/Internal')
9 files changed, 9 insertions, 9 deletions
diff --git a/Modules/Internal/CMakeASMLinkerInformation.cmake b/Modules/Internal/CMakeASMLinkerInformation.cmake index 5f81b1f..2d547dc 100644 --- a/Modules/Internal/CMakeASMLinkerInformation.cmake +++ b/Modules/Internal/CMakeASMLinkerInformation.cmake @@ -29,7 +29,7 @@ endif() # We specify the platform linker information in the system file. if (NOT _INCLUDED_FILE) - include(Platform/Linker/${CMAKE_SYSTEM_NAME}-ASM${ASM_DIALECT} OPTIONAL) + include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-ASM${ASM_DIALECT} OPTIONAL) endif () set(CMAKE_ASM${ASM_DIALECT}_LINKER_INFORMATION_LOADED 1) diff --git a/Modules/Internal/CMakeCLinkerInformation.cmake b/Modules/Internal/CMakeCLinkerInformation.cmake index d918f84..ddc9827 100644 --- a/Modules/Internal/CMakeCLinkerInformation.cmake +++ b/Modules/Internal/CMakeCLinkerInformation.cmake @@ -31,7 +31,7 @@ endif() # We specify the platform linker information in the system file. if (NOT _INCLUDED_FILE) - include(Platform/Linker/${CMAKE_SYSTEM_NAME}-C OPTIONAL) + include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-C OPTIONAL) endif () _cmake_common_linker_platform_flags(C) diff --git a/Modules/Internal/CMakeCUDALinkerInformation.cmake b/Modules/Internal/CMakeCUDALinkerInformation.cmake index 4081e50..1d375f2 100644 --- a/Modules/Internal/CMakeCUDALinkerInformation.cmake +++ b/Modules/Internal/CMakeCUDALinkerInformation.cmake @@ -31,7 +31,7 @@ endif() # We specify the platform linker information in the system file. if (NOT _INCLUDED_FILE) - include(Platform/Linker/${CMAKE_SYSTEM_NAME}-CUDA OPTIONAL) + include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-CUDA OPTIONAL) endif () _cmake_common_linker_platform_flags(CUDA) diff --git a/Modules/Internal/CMakeCXXLinkerInformation.cmake b/Modules/Internal/CMakeCXXLinkerInformation.cmake index 3929bbb..2398b50 100644 --- a/Modules/Internal/CMakeCXXLinkerInformation.cmake +++ b/Modules/Internal/CMakeCXXLinkerInformation.cmake @@ -31,7 +31,7 @@ endif() # We specify the platform linker information in the system file. if (NOT _INCLUDED_FILE) - include(Platform/Linker/${CMAKE_SYSTEM_NAME}-CXX OPTIONAL) + include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-CXX OPTIONAL) endif () _cmake_common_linker_platform_flags(CXX) diff --git a/Modules/Internal/CMakeFortranLinkerInformation.cmake b/Modules/Internal/CMakeFortranLinkerInformation.cmake index a39f3de..cddd0e9 100644 --- a/Modules/Internal/CMakeFortranLinkerInformation.cmake +++ b/Modules/Internal/CMakeFortranLinkerInformation.cmake @@ -31,7 +31,7 @@ endif() # We specify the platform linker information in the system file. if (NOT _INCLUDED_FILE) - include(Platform/Linker/${CMAKE_SYSTEM_NAME}-Fortran OPTIONAL) + include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-Fortran OPTIONAL) endif () _cmake_common_linker_platform_flags(Fortran) diff --git a/Modules/Internal/CMakeHIPLinkerInformation.cmake b/Modules/Internal/CMakeHIPLinkerInformation.cmake index d37d66d..e996889 100644 --- a/Modules/Internal/CMakeHIPLinkerInformation.cmake +++ b/Modules/Internal/CMakeHIPLinkerInformation.cmake @@ -31,7 +31,7 @@ endif() # We specify the platform linker information in the system file. if (NOT _INCLUDED_FILE) - include(Platform/Linker/${CMAKE_SYSTEM_NAME}-HIP OPTIONAL) + include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-HIP OPTIONAL) endif () _cmake_common_linker_platform_flags(HIP) diff --git a/Modules/Internal/CMakeOBJCLinkerInformation.cmake b/Modules/Internal/CMakeOBJCLinkerInformation.cmake index ea92880..a26fa42 100644 --- a/Modules/Internal/CMakeOBJCLinkerInformation.cmake +++ b/Modules/Internal/CMakeOBJCLinkerInformation.cmake @@ -31,7 +31,7 @@ endif() # We specify the platform linker information in the system file. if (NOT _INCLUDED_FILE) - include(Platform/Linker/${CMAKE_SYSTEM_NAME}-OBJC OPTIONAL) + include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-OBJC OPTIONAL) endif () _cmake_common_linker_platform_flags(OBJC) diff --git a/Modules/Internal/CMakeOBJCXXLinkerInformation.cmake b/Modules/Internal/CMakeOBJCXXLinkerInformation.cmake index 3b51ba7..d61dd1a 100644 --- a/Modules/Internal/CMakeOBJCXXLinkerInformation.cmake +++ b/Modules/Internal/CMakeOBJCXXLinkerInformation.cmake @@ -31,7 +31,7 @@ endif() # We specify the platform linker information in the system file. if (NOT _INCLUDED_FILE) - include(Platform/Linker/${CMAKE_SYSTEM_NAME}-OBJCXX OPTIONAL) + include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-OBJCXX OPTIONAL) endif () _cmake_common_linker_platform_flags(OBJCXX) diff --git a/Modules/Internal/CMakeSwiftLinkerInformation.cmake b/Modules/Internal/CMakeSwiftLinkerInformation.cmake index 6d1881f..f3a1d07 100644 --- a/Modules/Internal/CMakeSwiftLinkerInformation.cmake +++ b/Modules/Internal/CMakeSwiftLinkerInformation.cmake @@ -31,7 +31,7 @@ endif() # We specify the platform linker information in the system file. if (NOT _INCLUDED_FILE) - include(Platform/Linker/${CMAKE_SYSTEM_NAME}-Swift OPTIONAL) + include(Platform/Linker/${CMAKE_EFFECTIVE_SYSTEM_NAME}-Swift OPTIONAL) endif () _cmake_common_linker_platform_flags(Swift) |