4

When i try to use cgo I get the error

exec gcc: exec: "gcc": executable file not found in %PATH%

I have Mingw installed. How do I tell Goclipse where gcc is? I could not find a way in preferences or properties to set this.

user782220
  • 10,677
  • 21
  • 72
  • 135

2 Answers2

2

Add the path to MinGW gcc to your Windows PATH environment variable.

Setting environment variables under Windows

peterSO
  • 158,998
  • 31
  • 281
  • 276
0

I had the same problem and just wanted to add that you specifically need to add the path to the bin directory of MinGW to your PATH environment variable. Something like:

C:\Program Files\mingw-w64\x86_64-7.1.0-posix-seh-rt_v5-rev0\mingw64\bin

Not enough reputation to make this a comment, so it's an answer.

very
  • 135
  • 1
  • 11