redis-rb / redis-client

Simple low level client for Redis 6+
MIT License
124 stars 60 forks source link

Fix building of hiredis C extension on FreeBSD #72

Closed stanhu closed 1 year ago

stanhu commented 1 year ago

FreeBSD uses a version of clang that does not support the Darwin-specific -Wl,-exported_symbols_list linker flags. We can fix this by using the standard GCC flags (`-Wl,--version-script).

Closes #71

byroot commented 1 year ago

Thank you! 🙇