0

I check in questions database and find this: link but problem doesn't solve.

My pc have windows 10 and eclipse Neon.3 Release (4.6.3), goclipse is installed, my set for Go are:

  • Go installation: C:\Go
  • Eclipse GOPATH: C:\Go\workspace

tools path are:

  • gocode: C:\Go\bin\bin\gocode.exe
  • guru: C:\Go\bin\bin\guru.exe
  • godef: C:\Go\bin\bin\godef.exe

but I think tools work.

I search for this by 3 days. thank for your help.

Community
  • 1
  • 1
mx88
  • 27
  • 1
  • 1
  • 7

1 Answers1

0

You should write the code inside folder which present inside src folder, ie the src folder shouldn't contain any *.go files it can contain folder which contains go files.

Here is an example,

> New_Project/
├── bin
│   └── test.exe
├── pkg
│   └── windows_amd64
└── src
    ├── strlocal
    │   └── file1.go
    └── test
        └── main.go
Renju Ashokan
  • 428
  • 6
  • 18