Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Windows/MinGW] Only export extension init symbol | Fabio Alessandrelli | 2023-12-22 | 2 | -15/+0 |
| | | | | | | When building for Windows using MinGW GCC we need to apply the same workaround we use on Linux to only export the necessary symbols so we can safely statically link libstdc++ | ||||
* | [Linux] Only export extension init symbol | Fabio Alessandrelli | 2023-12-22 | 2 | -0/+15 |
Since we link with static libstdc++ we need to tell gcc to only export the necessary symbols. Using "-fvisibility=hidden" will not work, since libstdc++ explicitly exports its symbols. |