Say we have a package named CYGPKG_FOO, which has a cdl_option "CYGPKG_FOO_FEATURE_A_ENABLE". I want a specific gcc flags (e.g. "-DFEATURE_A=1") added to the CFLAGS of this package when this cdl_option was enabled.
But "The eCos Component Writer's Guide" said:
http://ecos.sourceware.org/docs-3.0/cdl-guide/build.make.html#BUILD.FLAGS
From the link above, it looks like we can't add/remove CFLAGS based on cdl_option selections...
So my question here is: can I do what was described in first paragraph, and if yes, how?
Thanks!
-DFEATURE_A=1
is just the same as writing#define FEATURE_A 1
in a source or header file.When
CYGPKG_FOO_FEATURE_A_ENABLE
is set, by this causes some preprocessor symbols to be set in the autogenerated include files. Check out theinstall/include/pkgconf/
directory after runningecosconfig
. You can add furtherdefine
lines to your CDL to cause further symbols to be defined, if the defaults are not to your liking.If you want to precisely control what values those symbols take, you may be able to do so with a further
cdl_option
, perhaps with alegal_values
or acalculated
directive; if not, you can add suitable defines in a header file inside your package which switch on the presence or absence of a preprocessor symbol.