Questions tagged [gccgo]

gccgo is a compiler for the Go language.

gccgo is a compiler for the Go language.

See http://golang.org/doc/install/gccgo

62 questions
-3
votes
1 answer

How reach peak flops

I'm an experienced C++ programmer, used to low level optimization an I'm trying to get performances out of Go. So far, I'm interested in GFlop/s. I wrote the following go code: package main import ( "fmt" "time" "runtime" …
Regis Portalez
  • 4,675
  • 1
  • 29
  • 41
-3
votes
2 answers

How can I reduce the virtual memory required by gccgo compiled executable?

When I compile this simple hello world example using gccgo, the resulting executable uses over 800 MiB of VmData. I would like to know why, and if there is anything I can do to lower that. The sleep is just to give me time to observe the memory…
Aaron Wright
  • 328
  • 2
  • 11
1 2 3 4
5