Skip to content

Commit f4e4b8e

Browse files
committed
remove unneeded params
1 parent 0afe973 commit f4e4b8e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project('Fortran_c_cxx_interface', 'c', 'cpp', 'fortran',
22
version : '1.3.0',
33
meson_version: '>= 0.55.0',
4-
default_options : ['cpp_std=c++11', 'c_std=c99'])
4+
default_options : ['cpp_std=c++11'])
55

66
cpp = meson.get_compiler('cpp')
77
cstdlib = cpp.find_library('stdc++', required : true)

src/meson.build

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ should_fail: true)
6060
c_fortran_submod = executable('c_fortran_submodule',
6161
sources: files('c/submodule_main.c'),
6262
link_with: submodule_fortran,
63-
link_language: 'fortran',
64-
c_args: '-D_USE_MATH_DEFINES'
63+
link_language: 'fortran'
6564
)
6665
test('C Fortran Submodule', c_fortran_submod, timeout: 5)
6766

0 commit comments

Comments
 (0)