Vitalts / golangide

Automatically exported from code.google.com/p/golangide
0 stars 0 forks source link

In "GettingStarted" instructions for Win32, there should be written to set PATH #8

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Follow instructions from the "GettingStarted" wiki page 
(http://code.google.com/p/golangide/wiki/GettingStarted), section "install 
windows", but when you have Go installed not in C:\go, but e.g. in 
C:\foobar\go, and change GOROOT appropriately

What is the expected output? What do you see instead?
I expect proper compilation. Instead, I see an error message.

What version of the product are you using? On what operating system?
0.1.8, on Windows

Please provide any additional information below.
A solution is to add in GettingStarted page an additional line for cmd:
 set PATH=%PATH%;%GOROOT%\bin

Original issue reported on code.google.com by czapko...@gmail.com on 29 Jan 2011 at 12:54

GoogleCodeExporter commented 9 years ago
I add new 
# load liteide on liteide.bat
@echo off
set GOROOT=c:\dev\go
set PATH=%PATH%;%GOROOT%\bin
start liteide.exe

Original comment by Visua...@gmail.com on 30 Jan 2011 at 6:41