Difference between `gccgo13` and `gcc13` package?

May I ask what the difference between those two packages is? Both seem to provide the same programs.

greetings !

gcc13 is a GNU Compiler Collection, that mainly includes C/C++ compilers and other tools to deal with binaries eg objcopy objdump ranlib readelf size strings strip

gccgo13 is esentially same as gcc13 but with additionally enabled gccgo compiler

nix-build -A gccgo13
/nix/store/9pw9ih4kw4ac7142bbxdz64f2xw02790-gccgo-wrapper-13.1.0

[kirillvr@tsutenkaku:~/nixpkgs]$ ls result/bin/
addr2line  ar  as  c++  cc  c++filt  cpp  dwp  elfedit  g++  gcc  gccgo  go  gprof  ld  ld.bfd  ld.gold  nm  objcopy  objdump  ranlib  readelf  size  strings  strip

hopefully that clears up the confusion

hopefully that clears up the confusion

yes it does! Thank you :grin: