From: James Hilliard Date: Thu, 27 Dec 2018 01:16:20 +0000 (+0800) Subject: meson: use cross compilation compatible c++ check X-Git-Tag: v241-rc1~146 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=46e63a2a3ed46ce97430ce38e4cc0798c57900eb;p=thirdparty%2Fsystemd.git meson: use cross compilation compatible c++ check --- diff --git a/meson.build b/meson.build index b338886c389..1964b1aa87b 100644 --- a/meson.build +++ b/meson.build @@ -287,10 +287,8 @@ want_tests = get_option('tests') slow_tests = want_tests != 'false' and get_option('slow-tests') install_tests = get_option('install-tests') -cxx = find_program('c++', required : fuzzer_build) -if cxx.found() +if add_languages('cpp', required : fuzzer_build) # Used only for tests - add_languages('cpp') cxx_cmd = ' '.join(meson.get_compiler('cpp').cmd_array()) else cxx_cmd = '' diff --git a/src/systemd/meson.build b/src/systemd/meson.build index e0c967efc57..75c48b07a51 100644 --- a/src/systemd/meson.build +++ b/src/systemd/meson.build @@ -52,8 +52,7 @@ if cc.has_argument('-std=iso9899:2017') opts += [['c', '-std=iso9899:2017']] endif -cxx = find_program('c++', required : false) -if cxx.found() +if add_languages('cpp', required : false) opts += [['c++'], ['c++', '-std=c++98'], ['c++', '-std=c++11']] diff --git a/src/test/meson.build b/src/test/meson.build index ea049a6fbad..d9d87e02c56 100644 --- a/src/test/meson.build +++ b/src/test/meson.build @@ -957,7 +957,7 @@ tests += [ ] -if cxx.found() +if cxx_cmd != '' tests += [ [['src/libsystemd/sd-bus/test-bus-vtable-cc.cc'], [],