aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-07-30 11:07:03 -0700
committerJussi Pakkanen <jpakkane@gmail.com>2021-09-25 00:18:22 +0300
commit64c267c49c785a204730ca28141f1fe34bc1827a (patch)
treeca841d7940372425d499f955c06519aa1216b6f0 /test cases
parentfee5cb697c77156f0dec4264ce846dd0d4f84fd5 (diff)
downloadmeson-64c267c49c785a204730ca28141f1fe34bc1827a.zip
meson-64c267c49c785a204730ca28141f1fe34bc1827a.tar.gz
meson-64c267c49c785a204730ca28141f1fe34bc1827a.tar.bz2
compilers: Add default search path stdlib_only_link_flags
This should be done in all cases of language_stdlib_only_link_flags, but I don't have access to all of the compilers to test it. This is required in cases where object files created by gfortran are linked using another compiler with a differen default search path, such as gfortran and clang together.
Diffstat (limited to 'test cases')
-rw-r--r--test cases/fortran/9 cpp/meson.build4
1 files changed, 0 insertions, 4 deletions
diff --git a/test cases/fortran/9 cpp/meson.build b/test cases/fortran/9 cpp/meson.build
index f96944b..270fae5 100644
--- a/test cases/fortran/9 cpp/meson.build
+++ b/test cases/fortran/9 cpp/meson.build
@@ -3,10 +3,6 @@ project('C, C++ and Fortran', 'c', 'cpp', 'fortran')
cpp = meson.get_compiler('cpp')
fc = meson.get_compiler('fortran')
-if cpp.get_id() == 'clang'
- error('MESON_SKIP_TEST Clang C++ does not find -lgfortran for some reason.')
-endif
-
if build_machine.system() == 'windows' and cpp.get_id() != fc.get_id()
error('MESON_SKIP_TEST mixing gfortran with non-GNU C++ does not work.')
endif