I tried to install go1.1.2 on my system, without success.
I encountered the following problems:
1. There is no binary release
2. Compilation fails due to warnings:
warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE
I solved by removing the `-Werror` option
3. The linker reported the error
ld: -r and -pie may not be used together
I solved by renaming the `-Wl,r` option with `-r`
The last error is
cannot load DWARF output from $WORK/net/_obj//_cgo_.o: decoding dwarf section info at offset 0x4: unsupported version 0
Any idea?
Thanks
Manlio