-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
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
fmt/include\fmt/format-inl.h:1417:3: error: cannot use 'try' with exceptions disabled #4207
Comments
There is no |
As I wrote "it's likely been fixed" (it's unrelated to |
Bad kidding and unfriendly behavior again. "likely" must not be a reason of closing the issue until I confirm the fix. |
The issue persists on 'master':
|
I think @vitaut, the {fmt} author, should be aware of missing LLVM clang for Windows on Matt Godbolt' compiler explorer. The only option is MinGW clang that does not have {fmt} installed. |
Fixes fmtlib#4207. LLVM Clang on Windows does not define `__GNUC__`. The preprocessor falls to `#elif FMT_MSC_VERSION && !_HAS_EXCEPTIONS` with `_HAS_EXCEPTIONS 1` defined in vcruntime.h:104.
Fixes fmtlib#4207. LLVM Clang on Windows does not define `__GNUC__`. The preprocessor falls to `#elif FMT_MSC_VERSION && !_HAS_EXCEPTIONS` with `_HAS_EXCEPTIONS 1` defined in vcruntime.h:104.
Fixes fmtlib#4207. LLVM Clang on Windows does not define `__GNUC__`. The preprocessor falls to `#elif FMT_MSC_VERSION && !_HAS_EXCEPTIONS` with `_HAS_EXCEPTIONS 1` defined in vcruntime.h:104.
Fixes fmtlib#4207. LLVM Clang on Windows does not define `__GNUC__`. The preprocessor falls to `#elif FMT_MSC_VERSION && !_HAS_EXCEPTIONS` with `_HAS_EXCEPTIONS 1` defined in vcruntime.h:104.
Getting this error while compiling with LLVM clang++.exe on Windows, the exceptions are disabled
-fno-exceptions
and-fms-compatibility
is not used:Looks like relevant to #70 that does not seem to be properly/completely fixed.
The {fmt} version is 11.0.2.
The text was updated successfully, but these errors were encountered: