From 64cb48a49c7ce8e5ab103cbe04023534271b8fe4 Mon Sep 17 00:00:00 2001 From: Peter Sanford Date: Fri, 1 Dec 2023 11:21:24 -0800 Subject: [PATCH] Remove unsupported linker flag This flag isn't supported by zig and now errors with zig 0.11.0. The original comment said we needed this for builds with gcc, but that no longer seems to be the case. So lets try just removing it. Fixes #11 --- sqlite3vfs_normal.go | 1 - 1 file changed, 1 deletion(-) diff --git a/sqlite3vfs_normal.go b/sqlite3vfs_normal.go index 5f822ce..607d1b7 100644 --- a/sqlite3vfs_normal.go +++ b/sqlite3vfs_normal.go @@ -1,7 +1,6 @@ package sqlite3vfs /* - #cgo linux LDFLAGS: -Wl,--unresolved-symbols=ignore-in-object-files #cgo darwin LDFLAGS: -Wl,-undefined,dynamic_lookup */ import "C"