This is the mail archive of the ecos-discuss@sourceware.org mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Re: How to tell if a file is being compiled as part of eCos?


On Thu, Jul 31, 2008 at 04:19:26PM +0000, Grant Edwards wrote:
> On 2008-07-31, Jay Foster <jay@systech.com> wrote:
> 
> > I've seen many eCos packages use "__ECOS" (or sometimes
> > "__ECOS__") for this purpose.  __ECOS is usually defined by
> > the associated package CDL file in a ...CFLAGS_ADD option.
> 
> I guess that's what I'll do.  I thought maybe eCos provided
> something in the default CFLAGS so that it didn't have to be
> done at the package level.

The place exists where CFLAGS definition starts, there is CFLAGS :=
$(subst -finit-priority,,$(CFLAGS)) in packages/pkgconf/rules.mak. So,
it seems for me that build the same as the below can be used as well

ecosconfig new <target>
ecosconfig tree
make CFLAGS=-D__ECOS__

But, it seems, you are right, it is better to fix main definitions in
the rules.mak.

Sergei

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]