-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
attempting to compile keybase go-crypto on #19
Comments
I don't think this fork depends on Go 1.6, but it does depend on the standard |
I believe there is a dependency on Go 1.5 stdlib at least (though probably nothing specifically from Go 1.6). I would recommend that you try compiling Go 1.6 (or 1.5) from source, using your installed version to bootstrap. Follow the instructions here and set |
Mr. Haven, The go version was stated as being a redhat gcc-go version 4.9 I'll try compiling go 1.5 with the gcc-go on fedora 21. I can't update On 03/14/2016 04:41 PM, Jacob H. Haven wrote:
|
Hi there, I am attempting to compile on a different cpu:
Loongson-3B1500. Here is the last-core's cpuinfo:
processor : 5
cpu model : ICT Loongson-3 V0.7 FPU V0.1
model name : ICT Loongson-3B R2 (Loongson-3B1500) @ 1199MHz
BogoMIPS : 956.04
wait instruction : no
microsecond timers : yes
tlb_entries : 64
extra interrupt vector : no
hardware watchpoint : yes, count: 0, address/irw mask: []
isa : mips1 mips2 mips3 mips4 mips5 mips32r1 mips64r1
ASEs implemented :
shadow register sets : 1
kscratch registers : 0
package : 0
core : 7
VCED exceptions : not available
VCEI exceptions : not available
It's currently on a fedora 21 distro. I tried to compile golang 1.6 on it, but unsuccessful. I am using a fc21 gcc-go
go version
go version xgcc (GCC) 4.9.3 20150626 (Red Hat 4.9.3-3) linux/mipsn64
[root@sunhaiyong bcrypt]# uname -a
Linux sunhaiyong 4.1.19-1.fc21.loongson.1.mips64el #1 SMP PREEMPT Tue Mar 8 07:47:34 UTC 2016 mips64 mips64 mips64 GNU/Linux
LANG=en_US.UTF-8
GOPATH=/root/Code
GOROOT=/root/loongson-golang
MACHTYPE=mips64el-redhat-linux-gnu
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/root/loongson-golang/bin:/root/Code/bin:/root/bin:/usr/local/sbin:/usr/local/bin:/root/bin
[root@sunhaiyong ~]# cd Code/src/github.com/omac777/
[root@sunhaiyong omac777]# go build hello.go
[root@sunhaiyong omac777]# ./hello
Hello, 世界
mkdir -p /root/Code/src/golang.org/x
these are the go1.6 sources that I was unable to compile entirely. I am just copying the crypto component to see if I can get away with just that and compile it. The answer seems to be no.
cp -Rf /root/go/src/crypto/ .
go get github.com/keybase/go-crypto
cd ~/Code/src/golang.org/x/crypto#
cp -rf ../../../github.com/keybase/go-crypto/* .
cd ~/Code/src/github.com/keybase/go-crypto/tea
cd ~/Code/src/github.com/keybase/go-crypto/twofish
cd ~/Code/src/github.com/keybase/go-crypto/xtea
cd ~/Code/src/github.com/keybase/go-crypto/xts
cd ~/Code/src/github.com/keybase/go-crypto/sha3
cd ~/Code/src/github.com/keybase/go-crypto/salsa20/salsa
~/Code/src/golang.org/x/crypto/salsa20# go build
~/Code/src/golang.org/x/crypto/salsa20# go install
root@sunhaiyong:
/Code/src/github.com/keybase/go-crypto/scrypt# cd/Code/src/golang.org/x/crypto/pbkdf2# go build/Code/src/golang.org/x/crypto//Code/src/golang.org/x/crypto# cp -Rfroot@sunhaiyong:
/Code/src/github.com/keybase/go-crypto/pbkdf2/ ./Code/src/golang.org/x/crypto# cd pbkdf2/root@sunhaiyong:
root@sunhaiyong:
root@sunhaiyong:~/Code/src/golang.org/x/crypto/pbkdf2# go install
root@sunhaiyong:~/Code/src/github.com/keybase/go-crypto/rsa# go build
github.com/keybase/go-crypto/rsa
./rsa.go:97:63: error: reference to undefined identifier ‘crypto.SignerOpts’
func (priv *PrivateKey) Sign(rand io.Reader, msg []byte, opts crypto.SignerOpts) ([]byte, error) {
^
./rsa.go:108:73: error: reference to undefined identifier ‘crypto.DecrypterOpts’
func (priv *PrivateKey) Decrypt(rand io.Reader, ciphertext []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) {
root@sunhaiyong:~/Code/src/github.com/keybase/go-crypto/ssh# go build
github.com/keybase/go-crypto/ssh
./keys.go:556:7: error: reference to undefined identifier ‘crypto.Signer’
case crypto.Signer:
^
./keys.go:566:9: error: reference to undefined identifier ‘crypto.Signer’
signer crypto.Signer
^
./keys.go:573:33: error: reference to undefined identifier ‘crypto.Signer’
func NewSignerFromSigner(signer crypto.Signer) (Signer, error) {
^
./keys.go:579:9: error: incompatible type for return value 1 (type has no methods)
return &wrappedSigner{signer, pubKey}, nil
^
root@sunhaiyong:~/Code/src/github.com/keybase/go-crypto/pkcs12# go build
github.com/keybase/go-crypto/pkcs12
./crypto.go:75:72: error: reference to undefined field or method ‘String’
return nil, 0, NotImplementedError("algorithm " + algorithm.Algorithm.String() + " is not supported")
^
./mac.go:32:92: error: reference to undefined field or method ‘String’
return NotImplementedError("unknown digest algorithm: " + macData.Mac.Algorithm.Algorithm.String())
^
./pkcs12.go:165:82: error: reference to undefined field or method ‘String’
return nil, errors.New("don't know how to convert a safe bag of type " + bag.Id.String())
^
./pkcs12.go:184:81: error: reference to undefined field or method ‘String’
return "", "", errors.New("pkcs12: unknown attribute with OID " + attribute.Id.String())
^
root@sunhaiyong:~/Code/src/github.com/keybase/go-crypto/openpgp# go build
github.com/keybase/go-crypto/rsa
../rsa/rsa.go:97:63: error: reference to undefined identifier ‘crypto.SignerOpts’
func (priv *PrivateKey) Sign(rand io.Reader, msg []byte, opts crypto.SignerOpts) ([]byte, error) {
^
../rsa/rsa.go:108:73: error: reference to undefined identifier ‘crypto.DecrypterOpts’
func (priv *PrivateKey) Decrypt(rand io.Reader, ciphertext []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) {
^
root@sunhaiyong:~/Code/src/github.com/keybase/go-crypto/ocsp# go build
github.com/keybase/go-crypto/ocsp
./ocsp.go:199:17: error: reference to undefined identifier ‘elliptic.P224’
case elliptic.P224(), elliptic.P256():
^
./ocsp.go:574:86: error: reference to undefined identifier ‘crypto.Signer’
func CreateResponse(issuer, responderCert *x509.Certificate, template Response, priv crypto.Signer) ([]byte, error) {
Judging by the compile errors, I believe I certainly don't have the right environment setup yet to build keybase/go-crypto. I also believe I am not going through the correct steps to compile it correctly.
The hints are I really do need go1.6 installed since crypto.Signer and elliptic.P224 are part of go1.6.
The text was updated successfully, but these errors were encountered: