toxeus / go-secp256k1

Go wrapper for secp256k1
MIT License
34 stars 12 forks source link

I could not Build #2

Closed samnet closed 8 years ago

samnet commented 8 years ago

Hello, everything works fine for me until the very last command of the build:

dyn905-164:go-secp256k1 samzan$ go install .
# github.com/samzan/go-secp256k1
clang: error: no such file or directory: '../../../github.com/toxeus/go-secp256k1/c-secp256k1/.libs/libsecp256k1.a'

I looked around and understand the pb might not be specific to this project, yet I thought perhaps someone ran into the same difficulty and found a solution to it?

Cheers (I m a 1st yr CS student)

toxeus commented 8 years ago

Looking at your output I can see that the project is not in the correct path # github.com/samzan/go-secp256k1. Go is very picky about paths and therefore you need to put this project into $GOPATH/src/github.com/toxeus/go-secp256k1. Basically, that's what go get -d github.com/toxeus/go-secp256k1 will do for you.

toxeus commented 8 years ago

Please reopen this issue if there are still problems in building the project.

aminNazarii commented 4 years ago

anybody solve this problem. i still get this error however this project right in this path: $GOPATH/src/github.com/toxeus/go-secp256k1

toxeus commented 4 years ago

Hi @aminNazarii. I need more details about your problem. If you cannot describe how to reproduce it then I cannot fix it.