From ab13d63ae7ac3bf4ace391fbbde6bfb12d7bdf2e Mon Sep 17 00:00:00 2001 From: Sam Jewell <2903904+samjewell@users.noreply.github.com> Date: Thu, 5 Dec 2024 01:38:50 +0000 Subject: [PATCH] Remove suggestion that CGO isn't always needed (#1290) Fixes #855 --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 1804a89..c0da33b 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,6 @@ This package can be installed with the `go get` command: _go-sqlite3_ is *cgo* package. If you want to build your app using go-sqlite3, you need gcc. -However, after you have built and installed _go-sqlite3_ with `go install github.com/mattn/go-sqlite3` (which requires gcc), you can build your app without relying on gcc in future. ***Important: because this is a `CGO` enabled package, you are required to set the environment variable `CGO_ENABLED=1` and have a `gcc` compiler present within your path.***