You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CMake Error in tests/CMakeLists.txt:
Found relative path while evaluating include directories of "clusterclient_reconnect_async":
"LIBEVENT_INCLUDES-NOTFOUND"
I'm trying to use libevent library from /usr/lib64 and its already added to LD_LIBRARY_PATH.
I'm trying to fix another error. When I use the async apis for subscription, I'm taking crash. During publishing a message, the subscriber process giving a message like that redisProcessCallbacks: Assertion `(c->flags & 0x20 || c->flags & 0x40)' failed.
I assumed that the problem can be caused for this compilation error.
Thanks for answers :)
The text was updated successfully, but these errors were encountered:
To avoid the LIBEVENT_INCLUDES-NOTFOUND error you can use -DDISABLE_TESTS=ON as an argument to cmake, see build instructions. This will skip tests which require libevent.
If I understand correctly you have a specific hiredis downloaded which you want to use.
Would this example help? Its an example of building hiredis and hiredis-cluster separate using CMake.
By default hiredis-cluster will download and build hiredis v1.1.0 in a CMake build, unless you disable that with -DDOWNLOAD_HIREDIS=OFF, see build options.
The assert seems to indicate that your build uses an old, possibly system-installed, hiredis.
Hey everyone,
I'm taking an error when I try to compile hiredis-cluster with latest version of both hiredis and hircluster.
The compilation steps listed below;
mkdir build
cmake .. -Dhiredis_DIR:PATH=$HIREDISPATH
Then the error occurs like listed below;
CMake Error in tests/CMakeLists.txt:
Found relative path while evaluating include directories of "clusterclient_reconnect_async":
"LIBEVENT_INCLUDES-NOTFOUND"
I'm trying to use libevent library from /usr/lib64 and its already added to LD_LIBRARY_PATH.
I'm trying to fix another error. When I use the async apis for subscription, I'm taking crash. During publishing a message, the subscriber process giving a message like that redisProcessCallbacks: Assertion `(c->flags & 0x20 || c->flags & 0x40)' failed.
I assumed that the problem can be caused for this compilation error.
Thanks for answers :)
The text was updated successfully, but these errors were encountered: