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 78f8ac3 commit 8f3e580Copy full SHA for 8f3e580
meson.build
@@ -17,9 +17,10 @@ os = host_machine.system()
17
# Compiler flags
18
if fc.get_id() == 'gcc'
19
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
+ # This flag makes cibw break with manylinux_2_8
+ # if fc.version().version_compare('>=14') and os != 'windows'
+ # add_project_arguments('-ftrampoline-impl=heap', language: ['c', 'fortran'])
23
+ # endif
24
else
25
warning('Compiler is @0@. If the build fails, try using the GCC compiler.'.format(cc.get_id()))
26
endif
0 commit comments