File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ set(FLANG_DEFAULT_LINKER "" CACHE STRING
301
301
"Default linker to use (linker name or absolute path, empty for platform default)" )
302
302
303
303
set (FLANG_DEFAULT_RTLIB "" CACHE STRING
304
- "Default Fortran runtime library to use (\" libflang_rt\" ), leave empty for platform default." )
304
+ "Default Fortran runtime library to use (\" libflang_rt.runtime \" ), leave empty for platform default." )
305
305
306
306
if (NOT (FLANG_DEFAULT_RTLIB STREQUAL "" ))
307
307
message (WARNING "Resetting Flang's default runtime library to use platform default." )
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ enable_omp_offload_compilation("${supported_files}")
247
247
if (NOT TARGET flang_rt.quadmath )
248
248
# If flang_rt.quadmath is not defined, then we are not building
249
249
# standalone flang_rt.quadmath library. Instead, include
250
- # the relevant sources into flang_rt itself.
250
+ # the relevant sources into flang_rt.runtime itself.
251
251
# The information is provided via FortranFloat128MathILib
252
252
# interface library.
253
253
get_target_property (f128_sources
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ set(LLVM_LINK_COMPONENTS
5
5
)
6
6
7
7
# Define the list of Fortran module files that need to be compiled
8
- # to produce an object file for inclusion into the flang_rt
8
+ # to produce an object file for inclusion into the flang_rt.runtime
9
9
# library.
10
10
set (MODULES_WITH_IMPLEMENTATION
11
11
"iso_fortran_env_impl"
@@ -105,7 +105,7 @@ if (NOT CMAKE_CROSSCOMPILING)
105
105
endif ()
106
106
107
107
# Some modules have an implementation part that needs to be added to the
108
- # flang_rt library.
108
+ # flang_rt.runtime library.
109
109
set (compile_with "-fsyntax-only" )
110
110
set (object_output "" )
111
111
set (include_in_link FALSE )
@@ -127,14 +127,14 @@ if (NOT CMAKE_CROSSCOMPILING)
127
127
install (FILES ${base} .mod DESTINATION "${CMAKE_INSTALL_INCLUDEDIR} /flang" )
128
128
129
129
# If a module has been compiled into an object file, add the file to
130
- # the link line for the flang_rt library.
130
+ # the link line for the flang_rt.runtime library.
131
131
if (include_in_link )
132
132
list (APPEND module_objects ${object_output} )
133
133
endif ()
134
134
endforeach ()
135
135
136
136
# Set a CACHE variable that is visible to the CMakeLists.txt in runtime/, so that
137
- # the compiled Fortran modules can be added to the link line of the flang_rt
137
+ # the compiled Fortran modules can be added to the link line of the flang_rt.runtime
138
138
# library.
139
139
set (FORTRAN_MODULE_OBJECTS ${module_objects} CACHE INTERNAL "" FORCE )
140
140
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ include(AddFlangOffloadRuntime)
2
2
3
3
if (FLANG_EXPERIMENTAL_CUDA_RUNTIME )
4
4
# If Fortran runtime is built as CUDA library, the linking
5
- # of targets that link flang_rt must be done
5
+ # of targets that link flang_rt.runtime must be done
6
6
# with CUDA_RESOLVE_DEVICE_SYMBOLS.
7
7
# CUDA language must be enabled for CUDA_RESOLVE_DEVICE_SYMBOLS
8
8
# to take effect.
You can’t perform that action at this time.
0 commit comments