Changes between Initial Version and Version 1 of PerTaskCflags
- Timestamp:
- Sep 7, 2006, 10:00:43 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PerTaskCflags
v1 v1 1 You may define some flags to be passed to tasks at compile time. 2 They will be added to compile line as `-DKEY=value` on every source file for a given task 3 4 == Warning == 5 6 Defined values when compiling a C file are unpredictable if 7 * This C file is '''shared between tasks''' 8 * The task corresponding to the C-file is '''instanciated more than once''' with '''different''' defines 9 10 If the only purpose is to pass up a numeric value, you should use `consts`.