[pulseaudio-commits] [Git][pulseaudio/pulseaudio][master] meson.build: fix build without C++

PulseAudio Marge Bot (@pulseaudio-merge-bot) gitlab at gitlab.freedesktop.org
Mon Aug 15 14:40:38 UTC 2022



PulseAudio Marge Bot pushed to branch master at PulseAudio / pulseaudio


Commits:
c789bc5f by Fabrice Fontaine at 2022-08-15T17:37:10+03:00
meson.build: fix build without C++

Fix the following build failure without C++:

../output-1/build/pulseaudio-16.1/meson.build:1:0: ERROR: Unknown compiler(s): [['/home/autobuild/autobuild/instance-1/output-1/per-package/pulseaudio/host/bin/powerpc64-buildroot-linux-gnu-g++']]
The following exception(s) were encountered:
Running "/home/autobuild/autobuild/instance-1/output-1/per-package/pulseaudio/host/bin/powerpc64-buildroot-linux-gnu-g++ --version" gave "[Errno 2] No such file or directory: '/home/autobuild/autobuild/instance-1/output-1/per-package/pulseaudio/host/bin/powerpc64-buildroot-linux-gnu-g++'"

Fixes:
 - http://autobuild.buildroot.org/results/6526a21bd4da3b8458188f27c1ec04c381e4b673

Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/737>

- - - - -


2 changed files:

- meson.build
- src/modules/echo-cancel/meson.build


Changes:

=====================================
meson.build
=====================================
@@ -1,4 +1,4 @@
-project('pulseaudio', 'c', 'cpp',
+project('pulseaudio', 'c',
         version : run_command(find_program('git-version-gen'), join_paths(meson.current_source_dir(), '.tarball-version'), check : false).stdout().strip(),
         meson_version : '>= 0.50.0',
         default_options : [ 'c_std=gnu11', 'cpp_std=c++11' ]
@@ -435,6 +435,7 @@ endif
 # Code coverage
 
 if get_option('gcov')
+  add_languages('cpp')
   add_project_arguments('--coverage', language: ['c', 'cpp'])
   add_project_link_arguments('--coverage', language: ['c', 'cpp'])
 endif


=====================================
src/modules/echo-cancel/meson.build
=====================================
@@ -6,6 +6,8 @@
 # '-Wl,--unresolved-symbols=ignore-in-object-files' otherwise it fails
 # at link time.
 
+add_languages('cpp')
+
 libwebrtc_util_sources = [
   'webrtc.cc'
 ]



View it on GitLab: https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/c789bc5fe37d45e0a16b1b062b262785d25d2dfc

-- 
View it on GitLab: https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/c789bc5fe37d45e0a16b1b062b262785d25d2dfc
You're receiving this email because of your account on gitlab.freedesktop.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/pulseaudio-commits/attachments/20220815/946baf12/attachment-0001.htm>


More information about the pulseaudio-commits mailing list