Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-18 | Don't clobber original library symbols | Hein-Pieter van Braam-Stewart | |
It appears that we can get a fun circle dependency on a shared object on some system configurations causing issues with our 'fake' function pointer names. This can lead to a crash. The new wrapper generator renames all the symbols so this can't happen anymore. See https://github.com/hpvb/dynload-wrapper/commit/704135e This closes #46140 | |||
2021-02-16 | Dynamically load libpulse.so.0 and libasound.so.1 on Linux | Hein-Pieter van Braam-Stewart | |
By generating stubs using https://github.com/hpvb/dynload-wrapper we can dynamically load libpulse and libasound on systems where it is available. Both are still a build-time requirement but no longer a run-time dependency. For maintenance purposes the wrappers should not need to be re-generated unless we want to bump pulse or asound to an incompatible version. It is unlikely we will want to do this any time soon. This closes #20978 |