Closed fabiancrx closed 3 years ago
Well followed the issue to the go-sqlite3 repo and found this issue. The problems seems to be originated from a missing environment varaible and modifying the linux make file to:
.PHONY: run
run:
go run ./main.go
build:
mkdir -p bin
CGO_CFLAGS="-g -O2 -Wno-return-local-addr" go build -o bin/focalboard-app
solved the issue for me.
This is not a bug, actually, this compiles the app, the noticed messages are a warning from SQLite and the proposed solution is to disable that kind of warnings. I think I prefer to keep the warnings enable just in case we include other libraries that have the same issue (I prefer to keep the messages there). I going to close this.
Summary: After following the instructions in the readme and installing the required dependencies when running
make linux-app
the process errors (see log).Steps to reproduce the behavior:
make linux-app
Expected behavior: It compiles the app
Platform: Linux Pop_OS! 20.10 x86_64
If the information I provided is incomplete to triage the problem do ask for more, as I'm eager to try focalboard after #123 got closed.