MATLAB ヘルプ センター
Remove undefine preprocessor macros from build information
Since R2024a
removeUndefines(buildinfo,undefs)
removeUndefines(buildinfo,undefs) removes undefine preprocessor macros from the build information.
buildinfo
undefs
example
collapse all
This example shows how to remove undefine preprocessor macros from a build information object.
Suppose you have two files, myFile.c and myInc.h, in your current working folder.
myFile.c
myInc.h
// myFile.c #include <stdio.h> int main(void) { #ifdef __STDC_VERSION__ printf("__STDC_VERSION__ is defined\n"); #else printf("__STDC_VERSION__ is not defined\n"); #endif #ifdef MY_MACRO printf("MY_MACRO is defined\n"); #else printf("MY_MACRO is not defined\n"); #endif } // myInc.h #ifndef MYINC_H #define MYINC_H #define MY_MACRO #endif
Create an RTW.BuildInfo object and specify source files, undefine macros, and preinclude files.
RTW.BuildInfo
buildInfo = RTW.BuildInfo; buildInfo.ComponentName = 'MyComponent'; buildInfo.addSourceFiles('myfile.c'); buildInfo.addUndefines('__STDC_VERSION__'); buildInfo.addPreincludeFiles('myinc.h');
Get the undefine preprocessor macros.
undefines=getUndefines(buildInfo)
undefines = 1×1 cell array {'__STDC_VERSION__'}
Remove the undefine preprocessor macro __STDC_VERSION__.
__STDC_VERSION__
removeUndefines(buildInfo, {'__STDC_VERSION__'});
Check that the undefine preprocessor macro is removed.
undefines = 0×0 empty cell array
Required. RTW.BuildInfo object that contains information for compiling and linking generated code.
Required. Specify the undefine preprocessor macros that you want to remove from the build information object.
Introduced in R2024a
addUndefines | getUndefines | addPreincludeFiles | getPreincludeFiles
addUndefines
getUndefines
addPreincludeFiles
getPreincludeFiles
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Web サイトの選択
Web サイトを選択すると、翻訳されたコンテンツにアクセスし、地域のイベントやサービスを確認できます。現在の位置情報に基づき、次のサイトの選択を推奨します:
また、以下のリストから Web サイトを選択することもできます。
最適なサイトパフォーマンスの取得方法
中国のサイト (中国語または英語) を選択することで、最適なサイトパフォーマンスが得られます。その他の国の MathWorks のサイトは、お客様の地域からのアクセスが最適化されていません。
南北アメリカ
ヨーロッパ
アジア太平洋地域
最寄りの営業オフィスへのお問い合わせ