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
Just a heads up, I inadvertently learned that bdsg is failing to build on Ubuntu 24
#22 37.53 /hapestry/sv_merge/external/bdsg/src/project_bdsg/bdsg/deps/libhandlegraph/src/include/handlegraph/serializable.hpp:43:13: error: 'uint32_t' does not name a type
#22 37.53 43 | virtual uint32_t get_magic_number() const = 0;
#22 37.53 | ^~~~~~~~
#22 37.53 /hapestry/sv_merge/external/bdsg/src/project_bdsg/bdsg/deps/libhandlegraph/src/include/handlegraph/serializable.hpp:9:1: note: 'uint32_t' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'?
#22 37.53 8 | #include <iostream>
#22 37.53 +++ |+#include <cstdint>
#22 37.53 9 |
Not sure if reproducible, since it is part of my CMake build:
# Download or update library as an external project
ExternalProject_Add(project_bdsg
GIT_REPOSITORY https://github.com/vgteam/libbdsg.git
PREFIX ${CMAKE_SOURCE_DIR}/external/bdsg/
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${CMAKE_SOURCE_DIR}/external/bdsg/ -DRUN_DOXYGEN=OFF -DBUILD_PYTHON_BINDINGS=OFF
BUILD_IN_SOURCE True
INSTALL_DIR ${CMAKE_SOURCE_DIR}/external/bdsg/
INSTALL_COMMAND make install
)
The text was updated successfully, but these errors were encountered:
Just a heads up, I inadvertently learned that bdsg is failing to build on Ubuntu 24
Not sure if reproducible, since it is part of my CMake build:
The text was updated successfully, but these errors were encountered: