Build fails on macOS
r3ggi opened this issue · 3 comments
r3ggi commented
During build on macOS cmake raises the following error:
/path/Jackalope/fuzzer.cpp:30:10: fatal error: 'mersenne.h' file not found
I changed:
Line 30 in b22c8dc
to:
#include "third_party/Mersenne/mersenne.h"
and now it works. :-)
ifratric commented
Hmm, not sure why this would fail considering the following line: https://github.com/googleprojectzero/Jackalope/blob/main/CMakeLists.txt#L22
r3ggi commented
Hmm, maybe because the
Line 22 in b22c8dc
includes mersenne
directory, but the directory is Mersenne
.
ifratric commented
Ah, good point! Should be fixed now!