Thanks a lot for your reply.
Yes, I've played around with the Debian userspace before but was
looking for something "lighter".
The option of cross-compiling 5g/l sounds interesting; I've tried this
without success though. In my Ubuntu 11.10-x86 I've tried to compile
Go using both:
1) arm-linux-gnueabi-gcc (from sudo apt-get install gcc-arm-linux-
gnueabi); and
2) arm-linux-androideabi-gcc (from Android NDK R6b with a standalone
toolchain)
A simple Hello World in C runs fine with option (2) but not (1).
After changing make.bash (only) by replacing#CC=${CC:-gcc}withCC=$HOME/
pkg/android-mytoolchain/bin/arm-linux-androideabi-gccThe compilation
of Go (./all.bash) stops with the following message:
%%%% making lib9 %%%%make: Entering directory `/home/dorival/pkg/
go_arm/src/lib9'quietgcc -I"/home/dorival/pkg/go_arm/include" -ggdb -
O2 -c "/home/dorival/pkg/go_arm/src/lib9/_p9dir.c"...quietgcc -I"/home/
dorival/pkg/go_arm/include" -ggdb -O2 -c "/home/dorival/pkg/go_arm/src/
lib9/dup.c"cc1: warnings being treated as errors/home/dorival/pkg/
go_arm/src/lib9/dirfwstat.c:75: error: implicit declaration of
function 'futimes'
Any hints are highly appreciated.