We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using fmt in my project like so:
FetchContent_Declare(fmt GIT_REPOSITORY https://github.com/fmtlib/fmt.git GIT_TAG master ) FetchContent_MakeAvailable(fmt) [...] target_link_libraries(mytarget PRIVATE [...] fmt::fmt)
This works fine on Linux, however, if I try to compile this using mingw-w64 I get:
/workdir/buildwin/_deps/fmt-src/include/fmt/core.h:588:29: error: function ‘void fmt::v8::detail::error_handler::on_error(const char*)’ definition is marked dllimport 588 | FMT_NORETURN FMT_API void on_error(const char* message) {
Am I missing any compile definitions for WIN32?
The text was updated successfully, but these errors were encountered:
Should be fixed in 4f9311e. Thanks for reporting.
Sorry, something went wrong.
No branches or pull requests
I am using fmt in my project like so:
This works fine on Linux, however, if I try to compile this using mingw-w64 I get:
Am I missing any compile definitions for WIN32?
The text was updated successfully, but these errors were encountered: