tech-pkg archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: Problem to build audio/rplay (SSP check)
Hi,
The reason deleting optimization works is GCC disables some optimization
passes that SSP needs. so it disables SSP *and* optimization. It is
easier to just disable SSP.
I'm told this is screwed up because of the order in which macros are
expanded.
It has definitions like
#define SIZE(a,b) a,b
#define SNPRINTF snprintf
and SSP adds
#defined snprintf(a,b,..) __snprintf_chk(a,b,...)
SIZE being expanded after SNPRINTF and snprintf (?) means it looks like an
extra argument to __snprintf_chk.
Home |
Main Index |
Thread Index |
Old Index