Skip to content

Commit c43da35

Browse files
committed
Workaround an ICE when using modules with gcc 14.2 and earlier
1 parent 8303d14 commit c43da35

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ function(add_module_library name)
6969
target_compile_options(${name} PUBLIC -fmodules-ts)
7070
endif ()
7171

72-
target_compile_definitions(${name} PRIVATE FMT_MODULE)
73-
7472
if (FMT_USE_CMAKE_MODULES)
7573
target_sources(${name} PUBLIC FILE_SET fmt TYPE CXX_MODULES
7674
FILES ${sources})

include/fmt/base.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@
299299

300300
// Enable minimal optimizations for more compact code in debug mode.
301301
FMT_PRAGMA_GCC(push_options)
302-
#if !defined(__OPTIMIZE__) && !defined(__CUDACC__)
302+
#if !defined(__OPTIMIZE__) && !defined(__CUDACC__) && !defined(FMT_MODULE)
303303
FMT_PRAGMA_GCC(optimize("Og"))
304304
#endif
305305
FMT_PRAGMA_CLANG(diagnostic push)

src/fmt.cc

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
module;
22

3+
#define FMT_MODULE
4+
35
#ifdef _MSVC_LANG
46
# define FMT_CPLUSPLUS _MSVC_LANG
57
#else

0 commit comments

Comments
 (0)