Questions tagged [goclipse]

GoClipse is an Eclipse plugin that adds IDE functionality to the Eclipse platform for the Go programming language. The purpose of GoClipse is to create an environment in which development of Go is easy for a beginner to intermediate user.

GoClipse is an Eclipse plugin that adds IDE functionality to the Eclipse platform for the Go programming language. The purpose of GoClipse is to create an environment in which development of Go is easy for a beginner to intermediate user.

More Details

45 questions
16
votes
3 answers

How to run a GO project in eclipse with goclipse installed

I have installed goclipse in my eclipse and created a new go project. Now this is what I have: And I have hello.go looks like this: package main import "fmt" func main() { fmt.Println("Hello") } Then I press run button, or right click the…
Tiina
  • 4,285
  • 7
  • 44
  • 73
10
votes
1 answer

Error with autocomplete in Eclipse

I am running Eclipse 4.6.3 with GoClipse and NodeClipse installed. I have configured Go in Preferences -> Go. I want autocomplete to work for Go. However, it is giving me the error: writing to process input broken pipe See screenshots below for…
user6758349
5
votes
5 answers

go tool: no such tool "compile"

I recently started trying go to program some web based applications. At first, everything went fine, until I wanted to cross compile a binary for a different platform. I'm running MacOS and I wanted to compile a binary for linux, so I changed GOOS…
Benjamin Scharbau
  • 2,028
  • 1
  • 16
  • 33
4
votes
2 answers

How to debug Go programs using GoClipse?

Am using Go (go1.3 darwin/amd6) and GoClipse 0.8 on OS X Mavericks... Was having trouble running the Debugger (after setting breakpoints) so I scoured Stack Overflow and also the rest of the Internet and discovered that I needed to install…
PacificNW_Lover
  • 4,746
  • 31
  • 90
  • 144
3
votes
3 answers

How to enable autocomplete in GoClipse?

The instructions how to install GoClipse have been followed. I'm not getting any autocomplete stuff happening at all, either for local packages that I write, for built in stuff, or for GAE stuff (I have downloaded Go src to the SDK folder as the…
Curyous
  • 8,716
  • 15
  • 58
  • 83
3
votes
2 answers

Unable to install GoClipse

I am trying to install Goclipse to use my STS for building go Projects . I am trying to install the plugin from eclipse marketplace but getting this error Cannot complete the install because one or more required items could not be found. Software…
Ankur Garg
  • 2,553
  • 8
  • 30
  • 41
3
votes
1 answer

How to cross-reference in GoClipse?

I have installed Eclipse (Mars) with Goclipse plugin on my Macbook yesterday. They initially work perfectly. But today I found I cannot do cross reference (that means cmd+click on a keyword cannot jump the definition). And the console…
TieDad
  • 9,143
  • 5
  • 32
  • 58
3
votes
2 answers

Can GoClipse v0.91 open definition?

I have installed golang1.4 and GoClipse v0.91, but I want to open fmt.Printf() definition,it displays "Cannot run program oracle". I google this and know that oracle is a plugin for GoClipse, but I cannot find the gooracle.exe or something other…
karllo
  • 341
  • 3
  • 10
2
votes
1 answer

How to setup Go in GoClipse

I installed goclipse in my eclipse, and setup the preferences as follows : Preferences->Go->Tools ProjectExplorer Now when I create a new GoFile (HelloWorld.src), the file is saved in D:/GO/TestProject/src. But when I build the same file, the bin…
Shreya Srivastava
  • 41
  • 1
  • 4
  • 11
2
votes
1 answer

import existing Go project into eclipse

I've installed and configured GOClipse v0.16.1 on eclipse Neon (obviously, I've installed GO and tested it from command line). To test the plugin, I created a GO project with a command and a package, formatted, built and ran the command. All…
Amir Keibi
  • 1,991
  • 28
  • 45
2
votes
3 answers

How to set up GoCode for GoClipse?

After reading the guide on https://github.com/nsf/gocode, I tried the command go get -u -ldflags -H=windowsgui github.com/nsf/gocode. I don't get any response after this command. I also found that there is a place in GoClipse that can let me input…
Casper
  • 4,435
  • 10
  • 41
  • 72
2
votes
1 answer

Issue running golang Hello World in eclipse

Alright, so just a disclaimer I suspect this question will be a duplicate of another question however I'm not even sure what to search for. I have never used Eclipse or Golang before and am attempting to get a basic hello world application to…
Adrian773
  • 473
  • 11
  • 22
2
votes
1 answer

How to get call hierarchy/call graph/caller graph in eclipse for golang (go language)?

I tried goclipse but that didn't work. I know eclipse can do that for languages like Java. Why doesn't it work for go language?
Zheng Shao
  • 121
  • 6
1
vote
1 answer

How to get autocomplete (GoCode) to work with all my imports?

After installing the GoCode autocompletion daemon in GoClipse, it works for the more general imports (fmt and such), but not for more specific ones. I do believe my GoClipse is properly set up, since it works with some imports already. The specific…
Paul
  • 11
  • 4
1
vote
4 answers

How to import a golang own package?

I have problems with importing a package. I want to import the "golang.org/x/tools/cmd/oracle" and the "golang.org/x/tools/oracle" package. Which is the correct way to import these packages? This the way I try to import the packages: package…
haapoo
  • 109
  • 2
  • 9
1
2 3