metaonly module ti.sysbios.Build
Configuration settings sourced in ti/sysbios/Build.xdc
 
config Build.buildROM  // module-wide

Setting this to true causes the ROM to be built

Configuration settings
Build.buildROM = Bool false;
 
 
config Build.buildROMApp  // module-wide

Setting this to true tells the Build system that the user wants their application linked with the ROM image

Configuration settings
Build.buildROMApp = Bool false;
 
 
config Build.ccArgs  // module-wide

Array of strings added to the compile line used to build the custom RTOS library

Configuration settings
Build.ccArgs = String[] undefined;
 
DETAILS
To add to this array, use the following syntax: Build.ccArgs.$add("-DMY_MACRO=1");
 
config Build.includePaths  // module-wide

Array of header file include search paths used to build the custom RTOS library

Configuration settings
Build.includePaths = String[] undefined;
 
DETAILS
To add to this array, use the following syntax: Build.includePaths.$add("/path/to/my/include/files/");
 
Build.buildLibs()  // module-wide
Configuration settings
Build.buildLibs(Any objList, Any relList, Any filter, Any xdcArgs) returns Any
 
 
Build.getAsmFiles()  // module-wide

Get the library Asm source files

Configuration settings
Build.getAsmFiles(String target) returns Any
 
 
Build.getCFiles()  // module-wide

Get the library C source files

Configuration settings
Build.getCFiles(String target) returns String
 
 
Build.getCcArgs()  // module-wide

Get the compiler commpand line args

Configuration settings
Build.getCcArgs() returns String
 
 
Build.getDefaultCustomCCOpts()  // module-wide
Configuration settings
Build.getDefaultCustomCCOpts() returns String
 
 
Build.getDefs()  // module-wide

Get the compiler -D options necessary to build

Configuration settings
Build.getDefs() returns String
 
 
Build.getIncludePaths()  // module-wide

Get the set of -I strings to insert into the makefile

Configuration settings
Build.getIncludePaths() returns String
 
 
Build.getLibs()  // module-wide

Common getLibs() for all sysbios packages

Configuration settings
Build.getLibs(Any pkg) returns Any
 
generated on Fri, 10 Jun 2016 23:28:45 GMT