The STINGER in-memory graph store and dynamic graph analysis platform. Millions to billions of vertices and edges at thousands to millions of updates per second.
stinger_alg does not need to link with stinger_net, but it does
include some headers from there. Commit b7b821a removed stinger_net
as a link dependency. An unintended consequence of this change
combined with how we generate headers and how CMake detects build
dependencies, it was possible that a parallel make would try to
build stinger_alg before generating headers for stinger_net.
This commit adds the link dependency back, which forces CMake to
generate headers for stinger_net before stinger_alg is built.
stinger_alg does not need to link with stinger_net, but it does include some headers from there. Commit b7b821a removed stinger_net as a link dependency. An unintended consequence of this change combined with how we generate headers and how CMake detects build dependencies, it was possible that a parallel make would try to build stinger_alg before generating headers for stinger_net.
This commit adds the link dependency back, which forces CMake to generate headers for stinger_net before stinger_alg is built.
Fixes #235.
This change is