Earlier quoted context omitted.
You can't even call a non-Go library without switching to cgo, which contradictorily basically everyone says not to use. Leaving aside the GC, until Go has a real FFI it's hard to to imagine it being a really great fit for systems programming when the systems are all not written in Go.
You can use the same FFI as K&R C, write a couple of Assembly helpers.
Possibly related, building against foreign objects and manually setting up the FFI call: https://words.filippo.io/rustgo/.