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
so it might just be that I'm too stupid to use CMake correctly. Sorry, I'm a noob.
I've added this line set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DMANY_VERTICES")
into the CMakeLists.txt
and build flagser as described in the readme.
Now the binaries of flagser and flagser-memory are not even generated cause of compile time errors and flagser-count, while compiling, crashes at runtime (again, something with HDF5).
My questions are:
Should, by design, flagser support having HDF5 support and MANY_VERTICES enabled at the same time? Or was that never a goal? I've studied the code extensively, but skipped everything regarding HDF5.
If so, am I just compiling it wrong? :(
Or is it a proper bug?
Best,
Florian
The text was updated successfully, but these errors were encountered:
Looking at the issue, when enabling MANY_VERTICES I get the same issue as you, it's because an hard coded type was in the code here, if you change int by index_t it compiles fine on my side. About the output, I don't have anything to check if it breaks something.
About enabling MANY_VERTICES in file CMakeLists.txt I would update like this (line 48):
Hi,
so it might just be that I'm too stupid to use CMake correctly. Sorry, I'm a noob.
I've added this line
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DMANY_VERTICES")
into the CMakeLists.txt
and build
flagser
as described in the readme.Now the binaries of
flagser
andflagser-memory
are not even generated cause of compile time errors andflagser-count
, while compiling, crashes at runtime (again, something with HDF5).My questions are:
flagser
support having HDF5 support and MANY_VERTICES enabled at the same time? Or was that never a goal? I've studied the code extensively, but skipped everything regarding HDF5.Best,
Florian
The text was updated successfully, but these errors were encountered: