Announcement

Collapse
No announcement yet.

A Big Golang Update Lands In GCC 8.0

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #11
    Originally posted by boxie View Post

    That and GCC has a lot more possible compiler options / knobs to twiddle. could get some decent performance / binary size differences
    I'm not familiar with the inner working of GCC. Does the mere existence of knobs/options mean they automatically work for Go?

    Comment


    • #12
      Originally posted by bug77 View Post

      I'm not familiar with the inner working of GCC. Does the mere existence of knobs/options mean they automatically work for Go?
      I have no idea tbh - My thought process was that gccgo is a front end, so it takes the golang and turns it into an IR. from there the IR is turned into code that runs on the CPU - so lots of optimisations could happen along the way, the main one for go would be dead code elimination

      Comment

      Working...
      X