Changes between Version 2 and Version 3 of BuildSystemDev


Ignore:
Timestamp:
Mar 21, 2010, 2:04:22 AM (14 years ago)
Author:
becoulet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildSystemDev

    v2 v3  
    137137 * It ensures initialization function invocations do not get badly reordered to satisfy a new constraint, while ignoring an older one.
    138138
    139 A C source file will be generated with given initialization code respecting ordering constraints and current configuration.
     139Initialization tokens can be declared for that purpose, each specifying a different stage in the MutekH initialization process.
     140These tokens live in a separate token name space from configuration tokens are are not exported in configuration output.
     141
     142A C source file will be automatically generated with initialization code from active tokens, respecting ordering constraints and current configuration.
    140143An error will be emitted if constraints can not be satisfied.
    141144
     
    158161Initialization constraints example:
    159162{{{
     163%init INIT_LIBRARIES
     164  after INIT_SCHEDULER
     165  before INIT_APPLICATION
     166%init end
     167}}}
     168{{{
    160169%init INIT_FEATURE
    161170  parent CONFIG_FEATURE