Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2e0e074

Browse files
committedJan 9, 2025
meson: fix compilation with Visual Studio
The Visual Studio compiler defaults to C89 unless explicitly asked to use a different version of the C standard. We don't specify any C standard at all though in our Meson build, and consequently compiling Git fails: ...\git\git-compat-util.h(14): fatal error C1189: #error: "Required C99 support is in a test phase. Please see git-compat-util.h for more details." Fix the issue by specifying the project's C standard. Funny enough, specifying C99 does not work because apparently, `__STDC_VERSION__` is not getting defined in that version at all. Instead, we have to specify C11 as the project's C standard, which is also done in our CMake build instructions. We don't want to generally enforce C11 though, as our requiremets only state that a C99 compiler is required. In fact, we don't even require plain C99, but rather the GNU variant thereof. Meson allows us to handle this case rather easily by specifying "gnu99,c11", which will cause it to fall back to C11 in case GNU C99 is unsupported. This feature has only been introduced with Meson 1.3.0 though, and we support 0.61.0 and newer. In case we use such an oldish version though we fall back to requiring GNU99 unconditionally. This means that Windows essentially requires Meson 1.3.0 and newer when using Visual Studio, but I doubt that this is ever going to be a real problem. Signed-off-by: Patrick Steinhardt <ps@pks.im>
1 parent ca5e344 commit 2e0e074

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎meson.build

+8
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,14 @@
171171
project('git', 'c',
172172
meson_version: '>=0.61.0',
173173
version: files('GIT-VERSION'),
174+
default_options: [
175+
# Git requires C99 with GNU extensions, which of course isn't supported by
176+
# MSVC. Funny enough, C99 doesn't work with MSVC either, as it has only
177+
# learned to define __STDC_VERSION__ with C11 and later. We thus require
178+
# GNU C99 and fall back to C11. Meson only learned to handle the fallback
179+
# with version 1.3.0, so on older versions we use GNU C99 unconditionally.
180+
'c_std=' + (meson.version().version_compare('>=1.3.0') ? 'gnu99,c11' : 'gnu99'),
181+
]
174182
)
175183

176184
fs = import('fs')

0 commit comments

Comments
 (0)
Please sign in to comment.