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
If you open up container_node_sizes.hpp, you'll notice that it includes container_node_sizes_impl.hpp. Looking at the foonathan memory repo, it appears this header is generated and might be machine specific. This header is needed to use any of the custom containers, and our build currently does not generate it. We should figure out how to get our Gradle build to generate this header.
The text was updated successfully, but these errors were encountered:
That works for cmake, but we'll need to replicate the logic (or work around it, e.g. with ifdefs for our specific supported platforms) for other build systems (bazel, Gradle).
If you open up
container_node_sizes.hpp
, you'll notice that it includescontainer_node_sizes_impl.hpp
. Looking at the foonathan memory repo, it appears this header is generated and might be machine specific. This header is needed to use any of the custom containers, and our build currently does not generate it. We should figure out how to get our Gradle build to generate this header.The text was updated successfully, but these errors were encountered: