On x86, the stack protector was disabled by addinsg
`-fno-stack-protector` to CFLAGS. This was due to rust not passing
`-lssp_nonshared` to the linker, causing build errors while linking.
Rust has been patched to fix this issue, so now we can enable stack
protection again.
bat is a cat(1) clone that acts like standard cat when the output is not
a tty.
If the output *is* a tty, it provides syntax highlighting and integrated
paging on top of the typical cat(1) features.
Closes GH-8678