Instalando o godag no ubuntu

0

No Ubuntu / Linux, fiz isso:

hg clone https://godag.googlecode.com/hg/ godag

e depois disso:

go run mk.go install

e isso me dá esse erro:

up 2 date: utilz/stringbuffer 
up 2 date: utilz/walker 
up 2 date: utilz/stringset 
up 2 date: utilz/global 
up 2 date: utilz/handy
up 2 date: utilz/say
up 2 date: utilz/timer
up 2 date: parse/gopt
up 2 date: cmplr/dag
up 2 date: cmplr/gdmake
up 2 date: cmplr/compiler
up 2 date: start/main
linking  : /usr/lib/go/bin/gd
cannot create /usr/lib/go/bin/gd: No such file or directory
2014/10/05 11:05:40 [ERROR] exit status 1
exit status 1

Tentei sudo go run mk.go -B=gcc install , mas recebo o mesmo erro. Pesquisei o problema e tentei todas as combinações possíveis, mas ainda sem sorte.

    
por LuniX 05.10.2014 / 20:57

1 resposta

0

O erro pode ser porque o diretório /usr/lib/go/bin/ não existe:

$ sudo go run mk.go install
compiling: utilz/stringbuffer
# ...
compiling: start/main
linking  : /usr/lib/go/bin/gd
cannot create /usr/lib/go/bin/gd: No such file or directory
2014/10/02 19:14:51 [ERROR] exit status 1
exit status 1
$ ls /usr/lib/go/
doc/         favicon.ico  lib/         pkg/         src/         
$ sudo mkdir /usr/lib/go/bin
$ sudo go run mk.go install
up 2 date: utilz/stringbuffer
# ...
up 2 date: start/main
linking  : /usr/lib/go/bin/gd

Basta criar o diretório usando sudo mkdir /usr/lib/go/bin e você deve estar bem.

    
por muru 05.10.2014 / 22:50