mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
jack: upgrade 1.19.19 -> 1.19.20
* Patch to fix simdtests.cpp was merged * guess who initially wrote simdtests.cpp :) Changes * Add waf autooption --example-tools to allow optional build of executables, libraries and man pages provided by jack-example-tools (the files are built by default). * Building and installing the additional files can be disabled by using --example-tools=no or --no-example-tools. * Fix 32-bit support in ALSA driver * Fix incomplete ASIO support on Windows * Fix metadata usage with multiple users * Fix netsource tool missing on Windows * Fix semaphore usage on macOS * Official FreeBSD support Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
-37
@@ -1,37 +0,0 @@
|
|||||||
From f8cb818ca96fc2a45a04448a51f25a277ec183db Mon Sep 17 00:00:00 2001
|
|
||||||
From: Khem Raj <raj.khem@gmail.com>
|
|
||||||
Date: Wed, 15 Jan 2020 20:21:58 -0800
|
|
||||||
Subject: [PATCH] example-clients: Use c++ compiler for jack_simdtests
|
|
||||||
|
|
||||||
It uses c++ sources and runtime therefore its best to use c++ compiler
|
|
||||||
to build it so it can find the correct runtime, cross compiling with
|
|
||||||
clang fails
|
|
||||||
|
|
||||||
x86_64-yoe-linux-ld: example-clients/simdtests.cpp.28.o: undefined reference to symbol '__cxa_call_unexpected@@CXXABI_1.3'
|
|
||||||
|
|
||||||
Upstream-Status: Submitted [https://github.com/jackaudio/jack2/pull/536]
|
|
||||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
||||||
---
|
|
||||||
example-clients/wscript | 9 +++++++--
|
|
||||||
1 file changed, 7 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
--- a/example-clients/wscript
|
|
||||||
+++ b/example-clients/wscript
|
|
||||||
@@ -49,10 +49,15 @@ def build(bld):
|
|
||||||
else:
|
|
||||||
use = ['clientlib']
|
|
||||||
|
|
||||||
+ if example_program == 'jack_simdtests':
|
|
||||||
+ ftrs = 'cxx cxxprogram'
|
|
||||||
+ else:
|
|
||||||
+ ftrs = 'c cprogram'
|
|
||||||
+
|
|
||||||
if bld.env['IS_MACOSX']:
|
|
||||||
- prog = bld(features='c cprogram', framework = ['Foundation'])
|
|
||||||
+ prog = bld(features = ftrs, framework = ['Foundation'])
|
|
||||||
else:
|
|
||||||
- prog = bld(features='c cprogram')
|
|
||||||
+ prog = bld(features = ftrs)
|
|
||||||
prog.includes = os_incdir + ['../common/jack', '../common']
|
|
||||||
prog.source = example_program_source
|
|
||||||
prog.use = use
|
|
||||||
+2
-4
@@ -14,10 +14,8 @@ LIC_FILES_CHKSUM = " \
|
|||||||
|
|
||||||
DEPENDS = "libsamplerate0 libsndfile1 readline"
|
DEPENDS = "libsamplerate0 libsndfile1 readline"
|
||||||
|
|
||||||
SRC_URI = "git://github.com/jackaudio/jack2.git;branch=master;protocol=https \
|
SRC_URI = "git://github.com/jackaudio/jack2.git;branch=master;protocol=https"
|
||||||
file://0001-example-clients-Use-c-compiler-for-jack_simdtests.patch \
|
SRCREV = "a2fe7ec2fdbd315f112c8035282d94a429451178"
|
||||||
"
|
|
||||||
SRCREV = "3e6ca6b734b69e2f5dfb85935068e15006fb5acf"
|
|
||||||
|
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
Reference in New Issue
Block a user