[Bug 1033] i686 + static link + not calling any stdio functions = segfault

bugzilla at busybox.net bugzilla at busybox.net
Wed Feb 3 20:05:40 UTC 2010


https://bugs.busybox.net/show_bug.cgi?id=1033





--- Comment #2 from Bernhard Reutner-Fischer <aldot at uclibc.org>  2010-02-03 20:05:40 UTC ---
trivial testcase:

#include <unistd.h>
#include <stdio.h>

int main(void)
{
        write(1, "write\n", 6);
#ifdef USE_STDIO
        puts("stdio");
#endif
        return 0;
}


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


More information about the uClibc-cvs mailing list