Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Actually bundle libstdc++ statically
Turns out our static usearch library still depended on the cpp runtime library libstdc++ dynamically. This usually did not cause issues since postgres commonly links libstdc++ dynamically so c++ symbols in our .so would be resolved dynamically, when loaded. This did cause issues for when postgres was not linked with libstdc++. I do not know when exactly this happens but it seems this at least happens when building postgres from source under certain circumstances This commit makes sure we actually bindule libstdc++ statically
- Loading branch information