diehard2

Results 22 issues of diehard2

Having issues with paths and static libs. The following fixes it ``` if (ENABLE_CURVE) add_executable(curve_keygen tools/curve_keygen.cpp) target_include_directories(curve_keygen PUBLIC $) if(BUILD_STATIC) target_link_libraries(curve_keygen libzmq-static) else() target_link_libraries(curve_keygen libzmq) endif() install(TARGETS curve_keygen RUNTIME DESTINATION...

When attempting to interrupt a blocking concurrent queue that is waiting on a time out, I'm experiencing a hang (until the timeout) in this line ``` do { #ifdef MOODYCAMEL_LIGHTWEIGHTSEMAPHORE_MONOTONIC...