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
Hi @cement-head , thanks for reporting this issue!
I think this problem will be fixed in the upcoming release, since we removed the spdlog dependency in a711fca . Is it ok if I ask you to verify once the release is out?
There's a misplaced set of quotes in format.h file that prevents CUDA integration into RAVEN (error2 build fail).:
This showed up when I was trying to compile RAVEN for CUDA in </raven/build/_deps/genomeworks-src/3rdparty/spdlog/include/spdlog/fmt/bundled/format.h>
Pulled solution from here: https://www.gitmemory.com/issue/yuzu-emu/yuzu/2597/507715224
Changed Line 3475 from:
FMT_CONSTEXPR internal::udl_formatter<Char, CHARS...> operator""_format() {
To (remove quotes):
FMT_CONSTEXPR internal::udl_formatter<Char, CHARS...> operator_format() {
The text was updated successfully, but these errors were encountered: