Main Content

removeIntrinsicMacros

Class: coder.make.ToolchainInfo
Namespace: coder.make

Remove intrinsic macro

Syntax

h.removeIntrinsicMacros(intrnsc_macronames)

Description

h.removeIntrinsicMacros(intrnsc_macronames) removes the named intrinsic macro from Macros.

Input Arguments

expand all

A coder.make.ToolchainInfo object, specified using an object handle, such as h. To create h, enter h = coder.make.ToolchainInfo in a MATLAB® Command Window.

Intrinsic macro name or names, specified as a character vector, cell array of character vectors, string, or string array.

Examples

h.addIntrinsicMacros('GCCROOT')
h.getMacro('GCCROOT')
ans  = 

     []

h.removeIntrinsicMacros('GCCROOT')
h.getMacro('GCCROOT')

Version History

Introduced in R2013a