Gavin Brown
Gavin Brown
Sorry, that was an 'unclean' env from my trying out the suggestions in https://github.com/mattn/go-sqlite3/issues/80#issuecomment-26681977 Here's the clean one: ``` [go-sqlite3]$ go env GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/Users/gav/Library/Caches/go-build" GOENV="/Users/gav/Library/Application Support/go/env" GOEXE="" GOFLAGS=""...
Sorry I don't follow; With the above go env here's the outputs I get: ``` [go-sqlite3]$ go build ``` No errors ``` [go-sqlite3]$ go build --tags "darwin" ``` No errors...
Sure: ``` [go-sqlite3]$ go build --tags "libsqlite3 darwin" -v -x WORK=/var/folders/wz/nf87bmg16rnf77tn3z6753r00000gn/T/go-build719395410 github.com/mattn/go-sqlite3 mkdir -p $WORK/b001/ cd /Users/gav/gocode/src/github.com/mattn/go-sqlite3 CGO_LDFLAGS='"-g" "-O2" "-L/usr/local/opt/sqlite/lib" "-lsqlite3"' /usr/local/Cellar/go/1.14.5/libexec/pkg/tool/darwin_amd64/cgo -objdir $WORK/b001/ -importpath github.com/mattn/go-sqlite3 -- -I $WORK/b001/ -g...
Awesome thanks, adding in the brew's version of sqllite's include files in the CGO_CFLAGS env let it compile! ``` CGO_CFLAGS="-I/usr/local/opt/sqlite3/include" go build --tags "libsqlite3 darwin" -v -x ``` I'll go...
This seems to be an issue between running under Python 2 and Python 3. Replace: `print "Failed:", result` With: `print ("Failed:", result)`
Ok I can confirm it is related to internet access. I came back to my machine today and when opening vscode fullscreen, I was presented with a [Little Snitch](https://www.obdev.at/products/littlesnitch/index.html) (a...
This seems to be an issue with pickle binaries between Python 2 and Python 3. See a potential fix here: https://stackoverflow.com/a/41366785, adding 'encoding='latin1' to the pickle.load line referenced above. From:...
Relates to: #1
I have created a new Pull Request here: https://github.com/cryptomator/cli/pull/56 This is a very quick hack to bump the underlaying versions of cryptofs (up to v2.6.5) and webdav-nio (up to v2.0.3)....
+1 for this Screenshot of the issue I'm seeing, buttons have no prefix in top summary and scrolling down show's blank names for each button bellow: ![Screenshot 2023-05-08 at 17...