Skip to content

Commit 8f3e580

Browse files
authored
deactivate "-ftrampoline-impl=heap" as it breaks cibw-manylinux
1 parent 78f8ac3 commit 8f3e580

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

meson.build

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ os = host_machine.system()
1717
# Compiler flags
1818
if fc.get_id() == 'gcc'
1919
add_project_arguments('-Wno-compare-reals', '-Wno-unused-dummy-argument', language: ['fortran'])
20-
if fc.version().version_compare('>=14') and os != 'windows'
21-
add_project_arguments('-ftrampoline-impl=heap', language: ['c', 'fortran'])
22-
endif
20+
# This flag makes cibw break with manylinux_2_8
21+
# if fc.version().version_compare('>=14') and os != 'windows'
22+
# add_project_arguments('-ftrampoline-impl=heap', language: ['c', 'fortran'])
23+
# endif
2324
else
2425
warning('Compiler is @0@. If the build fails, try using the GCC compiler.'.format(cc.get_id()))
2526
endif

0 commit comments

Comments
 (0)