diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-08-06 12:02:45 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-08-09 15:48:34 +0200 |
commit | 5e9f965369370b8e2eee5c62f71272ca7570d2dd (patch) | |
tree | 05f570176f37f1cf1f59cb130654658815184f42 /package/webrtc-audio-processing/webrtc-audio-processing.mk | |
parent | 3695759b91c548453107bfa9524149dba69f170f (diff) | |
download | buildroot-5e9f965369370b8e2eee5c62f71272ca7570d2dd.tar.gz buildroot-5e9f965369370b8e2eee5c62f71272ca7570d2dd.zip |
webrtc-audio-processing: fix build with musl
webrtc-audio-processing assumes that execinfo.h is available when
__UCLIBC__ is not defined, which is an incorrect assumption, and
specifically not valid for musl.
This commit adds a patch that moves to autoconf based checks for
cxxabi.h and execinfo.h, which solves the problem.
Fixes:
http://autobuild.buildroot.net/results/480f529a53b321344e499f958be8e5d1d0f58646/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/webrtc-audio-processing/webrtc-audio-processing.mk')
-rw-r--r-- | package/webrtc-audio-processing/webrtc-audio-processing.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/webrtc-audio-processing/webrtc-audio-processing.mk b/package/webrtc-audio-processing/webrtc-audio-processing.mk index 5a5d1ce29b..75e3c88374 100644 --- a/package/webrtc-audio-processing/webrtc-audio-processing.mk +++ b/package/webrtc-audio-processing/webrtc-audio-processing.mk @@ -11,6 +11,7 @@ WEBRTC_AUDIO_PROCESSING_INSTALL_STAGING = YES WEBRTC_AUDIO_PROCESSING_LICENSE = BSD-3c WEBRTC_AUDIO_PROCESSING_LICENSE_FILES = COPYING # 0001-configure.ac-fix-architecture-detection.patch +# 0002-Proper-detection-of-cxxabi.h-and-execinfo.h.patch WEBRTC_AUDIO_PROCESSING_AUTORECONF = YES ifeq ($(BR2_SOFT_FLOAT),y) |