rofl0r

Results 904 comments of rofl0r

maybe, but we probably should do some benchmarking first to see if the "better" impl is really faster (for that we would need to do 2 runs which each find...

update: there's a busybox-man pkg now which installs busybox.1 i'm looking for a way that it creates subpages for cp, ls, etc so that you can call man ls from...

apparently we have to code it ourselves. actually i dont think that making an own pod2man in C is a big project. it seems upstreams busybox may be interested in...

the busybox manpages are actually utterly useless, it's just a copy of each program's --help output. it seems the right approach is to make busybox pkg call a script that...

seems @GregorR already created a tool to generate a local config https://github.com/GregorR/autoconf-lean/tree/master/config-site-generator

hmm maybe try adding -fPIC to the CFLAGS used by stage0_musl

can you post the build log somewhere ? pastebin oslt

the error is possibly due to a parrallel build issue see http://git.musl-libc.org/cgit/musl/commit/?id=d18cf76d73df8f9cc751d4b4ba5a635c70c0c645 as an easy fix you could change the line `make -j$MAKE_THREADS` to `make -j1`

yes, you can use musl-cross to "crosscompile" stage1 like its described in the readme. then you can use enter-chroot as usual to build stuff in the chroot.

(note that your problem is quite weird; build-stage0 builds gcc3.4.6 and then compiles musl with it, so the result should be 100% reproducible. may it be that the binutils version...