ldd /usr/local/go/bin/golibc
$ ldd /usr/local/go/bin/go
linux-vdso.so.1 (0x00007fff2c9bd000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007fe5ebc6d000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fe5eba83000)
/lib64/ld-linux-x86-64.so.2 (0x00007fe5ebccb000)
It is strange to me as I understand that since version 1.5, Golang has been bootstrapped. That means you can build Golang without a C compiler. And Go compiler in most cases builds binaries that are not dynamically linked.
gcc
Anyone has idea on it?