Main Content

info

クラス: coder.make.BuildTool
名前空間: coder.make

ビルド ツールのプロパティおよび値の表示

構文

h.info

説明

h.infocoder.make.BuildTool オブジェクトの情報を返します。

入力引数

すべて展開する

coder.make.BuildToolオブジェクトのオブジェクト ハンドル。変数で指定します。

例: tool

MATLAB® Coder™ ビルド プロセスへのカスタム ツールチェーンの追加の例から開始し、以下の行を入力します。

tc = intel_tc;
tool = tc.getBuildTool('C Compiler');
tool.info
##############################################
# Build Tool: Intel C Compiler
##############################################

Language              : 'C'
OptionsRegistry       : {'C Compiler','CFLAGS'}
InputFileExtensions   : {'Source'}
OutputFileExtensions  : {'Object'}
DerivedFileExtensions : {'|>OBJ_EXT<|'}
SupportedOutputs      : {'*'}
CommandPattern        : '|>TOOL<| |>TOOL_OPTIONS<| |>OUTPUT_FLAG<||>OUTPUT<|'

# ---------
# Command
# ---------
CC = icl
CC_PATH  = 

# ------------
# Directives
# ------------
Debug              = -Zi
Include            = 
IncludeSearchPath  = -I
OutputFlag         = -Fo
PreprocessorDefine = -D

# -----------------
# File Extensions
# -----------------
Header = .h
Object = .obj
Source = .c

バージョン履歴

R2013a で導入