Git Product home page Git Product logo

Comments (8)

freeekanayaka avatar freeekanayaka commented on July 18, 2024 1

You probably compiled the raft library using ./configure --enable-sanitize, which is not supported when using Go, and should only be used for development of raft itself. Please use just ./configure, or ./configure --enable-debug.

from go-dqlite.

179416326 avatar 179416326 commented on July 18, 2024

zz@zz-virtual-machine:~/go/src/github.com/canonical/go-dqlite$ go env
GOARCH="amd64"
GOBIN="/usr/lib/go-1.6/bin"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/zz/go:/home/zz/go/src/github.com/canonical/go-dqlite"
GORACE=""
GOROOT="/usr/lib/go-1.6"
GOTOOLDIR="/usr/lib/go-1.6/pkg/tool/linux_amd64"
GO15VENDOREXPERIMENT="1"
CC="gcc"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0"
CXX="g++"
CGO_ENABLED="1"

from go-dqlite.

179416326 avatar 179416326 commented on July 18, 2024

After install go1.13, the "Cannot find package "context"" problem solved, but came new problems:

zz@zz-virtual-machine:~/go/src/github.com/canonical/go-dqlite$ go install -tags libsqlite3 ./cmd/dqlite-demo
import cycle not allowed
package github.com/canonical/go-dqlite/cmd/dqlite-demo
imports context
imports errors
imports internal/reflectlite
imports runtime
imports internal/bytealg
imports internal/cpu
imports runtime

from go-dqlite.

freeekanayaka avatar freeekanayaka commented on July 18, 2024

Please try to create a file called ~/main.go in your home directory, with this content:

package main

import (
	"context"
	"fmt"
)

func main() {
	fmt.Println(context.Background())
}

and then run go run main.go from your home directory.

If it fails in the same way, it probably means that you have mixed up your Go 1.6 and Go 1.13 installations.

from go-dqlite.

179416326 avatar 179416326 commented on July 18, 2024

dqlite-demo binary is installed, but something wrong when start :

root@zz-virtual-machine:/home/zz/go/src/github.com/canonical/go-dqlite# dqlite-demo start 1
dqlite-demo: symbol lookup error: /usr/local/lib/libraft.so.0: undefined symbol: __asan_option_detect_stack_use_after_return

from go-dqlite.

179416326 avatar 179416326 commented on July 18, 2024

Thanks a lot, now running dqlite-demo well.

from go-dqlite.

179416326 avatar 179416326 commented on July 18, 2024

Consumed a lot of time on GO, if CLIENT written in C will be perfect!

from go-dqlite.

freeekanayaka avatar freeekanayaka commented on July 18, 2024

C client would be nice indeed, but at the moment I don't have the time to write it.

from go-dqlite.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.