SQLite User Forum

sqlite dylib linker failures on macOS after 3.48
Login

sqlite dylib linker failures on macOS after 3.48

(1) By George King (gwking) on 2025-04-04 19:44:41 [source]

Hello, I understand that the build system recently changed to autosetup. I have been building sqlite (using the autoconf bundle) and python from source on macOS for many years. Building sqlite 3.49.1 using the configure script succeeds, but results in dynamic linking failures when subsequently building Python 3.13.2 from source.

As noted in this forum thread (https://sqlite.org/forum/forumpost/3a43b57427fddaedf6c4c21dcaf2317986f1168e104cf16d7d97acee4f78af2f) the linker needs to be given the full install path with the -install_name flag.

Using the default configuration, make invokes this: cc -o libsqlite3.dylib sqlite3.o -dynamiclib -rpath /usr/local/lib -lz -Wl,-compatibility_version,9.0.0 -Wl,-current_version,9.6.0

Adding the following argument fixes the problem: -Wl,-install_name,/usr/local/lib/libsqlite3.dylib

Working backwards into the makefile, it looks like the appropriate place for this is:

LDFLAGS.libsqlite3.os-specific = -Wl,-compatibility_version,9.0.0 -Wl,-current_version,9.6.0 -Wl,-install_name,"$(install-dir.lib)/$(libsqlite3.SO)"

In Makefile.in, this is defined as: LDFLAGS.libsqlite3.os-specific = @LDFLAGS_MAC_CVERSION@ @LDFLAGS_OUT_IMPLIB@

This in turn leads into the new autosetup stuff. With no prior experience, my best guess is that neither of these variables is an appropriate place to add this and that adding a new @LDFLAGS_MAC_INSTALL_NAME@ would be most appropriate.

I hope this is helpful. I am by no means an expert in macOS linker voodoo. I should note that the makefile install rule moves the dylib from the name "$(libsqlite3.SO)" to a more version-specific name and then symlinks from the generic name to the specific name. Given that it is the generic name/path that gets baked into the file, I wonder if perhaps the symlinking should go in the other direction. But for my purposes it does not seem to matter.

A final aside: I compared the pkgconfig/sqlite3.pc outputs between the two versions and noted that the "Libs.private" line has changed from "@LDFLAGS_MATH@ @LDFLAGS_ZLIB@ @LDFLAGS_ICU@" (3.48) to "-lz" (3.49.1). I don't know if this discrepancy might matter to others.

(2) By Stephan Beal (stephan) on 2025-04-04 20:33:59 in reply to 1 [link] [source]

I hope this is helpful.

Thank you very much for your detective work! That increases the odds of this getting fixed by about 99% :-D.

Stay tuned for a patch tonight or tomorrow.

A final aside: I compared the pkgconfig/sqlite3.pc outputs between the two versions and noted that the "Libs.private" line has changed from "@LDFLAGS_MATH@ @LDFLAGS_ZLIB@ @LDFLAGS_ICU@" (3.48) to "-lz" (3.49.1)

There "should" be no unexpanded @...@ refs in the resulting sqlite3.pc. IIRC, that problem was fixed in src:fe47154799bfefb1, but we've had several sqlite3.pc-related bugs/fixes, like src:63218898ed0a6d46 and src:af79d11e389b4772.

(3) By Stephan Beal (stephan) on 2025-04-04 20:53:37 in reply to 2 [link] [source]

Thank you very much for your detective work! That increases the odds of this getting fixed by about 99% :-D.

Or even to 100%.

That's now in the trunk and there is a snapshot build available at:

https://wasm-testing.sqlite.org/tmp/

which will be automatically deleted in 72 hours.

Please try that out and report whether that resolves the problem for you. i'm unable to test that specific change beyond ensuring that it expands properly into the makefile.

Thank you for the report!

(4) By George King (gwking) on 2025-04-04 22:29:10 in reply to 3 [link] [source]

It doesn't work, but I think we are close. It looks like you did exactly as I suggested:

sqlite-config.tcl:1525: define LDFLAGS_MAC_INSTALL_NAME {-Wl,-install_name,"$(install-dir.lib)/$(libsqlite3.SO)"}

I was working from the 3490100 amalgamation, specifically the Makefile.in rule "install-so-1".

In the snapshot it seems that this has all been refactored, so that variable is now undefined and the rule does not exist.

Instead I see "install-dll-darwin" uses $(libsqlite3.DLL). So I suppose that should be swapped in for $(libsqlite3.SO).

Does that make sense?

(5) By Stephan Beal (stephan) on 2025-04-04 23:02:27 in reply to 4 [link] [source]

Instead I see "install-dll-darwin" uses $(libsqlite3.DLL). So I suppose that should be swapped in for $(libsqlite3.SO).

That's absolutely correct - that var used to be called libsqlite3.SO.

That's now fixed in the trunk and 3.49 branch and a new snapshot is available at the same link posted up-thread (which will also self-destruct in 72 hours).

Please try that out and report back.

(6) By George King (gwking) on 2025-04-05 13:10:24 in reply to 5 [link] [source]

It worked!