get_profile_compiler Function

public function get_profile_compiler(self) result(compiler)

Get compiler name

Type Bound

profile_config_t

Arguments

Type IntentOptional Attributes Name
class(profile_config_t), intent(in) :: self

Return Value character(len=:), allocatable


Source Code

      function get_profile_compiler(self) result(compiler)
        class(profile_config_t), intent(in) :: self
        character(len=:), allocatable :: compiler
        compiler = compiler_id_name(self%profile_feature%platform%compiler)
      end function get_profile_compiler