We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75023d1 commit cd5d140Copy full SHA for cd5d140
releases.json
@@ -2016,6 +2016,7 @@
2016
"libffi"
2017
],
2018
"versions": [
2019
+ "3.5.2-2",
2020
"3.5.2-1",
2021
"3.5.1-2",
2022
"3.5.1-1",
subprojects/packagefiles/libffi/src/meson.build
@@ -27,6 +27,9 @@ if is_msvc
27
# MSVC, cannot compile assembly files directly. They need to be preprocessed
28
# with the C compiler first, then compiled with MASM.
29
if meson.version().version_compare('>=0.64.0')
30
+ if meson.version().version_compare('<1.9.2') and host_cpu_family == 'aarch64'
31
+ error('Windows aarch64 requires Meson >= 1.9.2')
32
+ endif
33
ffi_asm_sources = cc.preprocess(
34
ffi_asm_sources,
35
output: '@[email protected]',
0 commit comments