Changes between Version 2 and Version 3 of BuildSystemDev
- Timestamp:
- Mar 21, 2010, 2:04:22 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildSystemDev
v2 v3 137 137 * It ensures initialization function invocations do not get badly reordered to satisfy a new constraint, while ignoring an older one. 138 138 139 A C source file will be generated with given initialization code respecting ordering constraints and current configuration. 139 Initialization tokens can be declared for that purpose, each specifying a different stage in the MutekH initialization process. 140 These tokens live in a separate token name space from configuration tokens are are not exported in configuration output. 141 142 A C source file will be automatically generated with initialization code from active tokens, respecting ordering constraints and current configuration. 140 143 An error will be emitted if constraints can not be satisfied. 141 144 … … 158 161 Initialization constraints example: 159 162 {{{ 163 %init INIT_LIBRARIES 164 after INIT_SCHEDULER 165 before INIT_APPLICATION 166 %init end 167 }}} 168 {{{ 160 169 %init INIT_FEATURE 161 170 parent CONFIG_FEATURE