trunk compilation broken
Denis Vlasenko
vda.linux at googlemail.com
Sat Dec 2 14:57:21 PST 2006
On Friday 01 December 2006 18:14, Bernhard Fischer wrote:
> Hi,
>
> Ever since the str_to_num (sp?) changes, trunk fails to build for me
> with the errors below.
Can you try replacing "extern inline" with
"extern inline attribute ((always_inline))" here:
include/xatonum.h:
extern inline
unsigned long bb_strtou(const char *arg, char **endp, int base)
{ return bb_strtoull(arg, endp, base); }
[several of them exist there]
If that doesn't work, try replacing with "static inline".
Although that will allow gcc to NOT inline those functions
if it so decides, but emit separate copy in each .o file.
Not good for code size.
--
vda
More information about the busybox
mailing list