While debugging, I noticed that sysdeps/akaros/vfprintf.c isn't always used. Both sysdeps/akaros/vfprintf.c *and* stdio-common/vfprintf.c are compiled. This is because some of the other printf C files in stdio-common #include vfprintf.c directly, and those get the old version.
Keeping two versions will lead to even more insanity, so we'll just modify the non-sysdep version. Rebuild glibc and cross your fingers. Signed-off-by: Barret Rhoden <[email protected]> --- .../glibc-2.19-akaros/{sysdeps/akaros => stdio-common}/vfprintf.c | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tools/compilers/gcc-glibc/glibc-2.19-akaros/{sysdeps/akaros => stdio-common}/vfprintf.c (100%) diff --git a/tools/compilers/gcc-glibc/glibc-2.19-akaros/sysdeps/akaros/vfprintf.c b/tools/compilers/gcc-glibc/glibc-2.19-akaros/stdio-common/vfprintf.c similarity index 100% rename from tools/compilers/gcc-glibc/glibc-2.19-akaros/sysdeps/akaros/vfprintf.c rename to tools/compilers/gcc-glibc/glibc-2.19-akaros/stdio-common/vfprintf.c -- 2.8.0.rc3.226.g39d4020 -- You received this message because you are subscribed to the Google Groups "Akaros" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. For more options, visit https://groups.google.com/d/optout.
