Main Content
info
Class: coder.make.BuildTool
Namespace: coder.make
Display build tool properties and values
Syntax
h.info
Description
returns information about the h
.infocoder.make.BuildTool
object.
Input Arguments
Examples
Starting from the Add Custom Toolchains to MATLAB® Coder™ Build Process example, enter the following lines:
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
Version History
Introduced in R2013a