Add jemalloc support
This commit is contained in:
parent
cd3e07efa7
commit
1fc1f2431a
|
@ -0,0 +1,4 @@
|
||||||
|
build/
|
||||||
|
downloads/
|
||||||
|
sstate-cache/
|
||||||
|
.vscode/
|
|
@ -0,0 +1,25 @@
|
||||||
|
SUMMARY = "jemalloc memory allocator"
|
||||||
|
DESCRIPTION = "jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support."
|
||||||
|
HOMEPAGE = "http://jemalloc.net/"
|
||||||
|
DEPENDS = ""
|
||||||
|
LICENSE = "GPLv2"
|
||||||
|
|
||||||
|
inherit workonsrc
|
||||||
|
WORKONSRC = "${TOPDIR}/../src/apps/jemalloc"
|
||||||
|
|
||||||
|
COMPATIBLE_HOST = "aarch64-poky-linux"
|
||||||
|
|
||||||
|
do_install() {
|
||||||
|
install -d ${D}${libdir}
|
||||||
|
install -d ${D}${libdir}/pkgconfig
|
||||||
|
install -d ${D}${includedir}/jemalloc
|
||||||
|
|
||||||
|
#jemalloc
|
||||||
|
install -m 755 ${S}/lib64/libjemalloc.so ${D}${libdir}
|
||||||
|
install -m 755 ${S}/lib64/pkgconfig/jemalloc.pc ${D}${libdir}/pkgconfig
|
||||||
|
install -m 755 ${S}/include/jemalloc/jemalloc.h ${D}${includedir}/jemalloc
|
||||||
|
}
|
||||||
|
|
||||||
|
FILES_${PN} += "${includedir} ${libdir}"
|
||||||
|
INSANE_SKIP_${PN} += "already-stripped ldflags"
|
||||||
|
FILES_${PN}-dev = "${libdir} ${includedir}"
|
|
@ -0,0 +1,20 @@
|
||||||
|
SUMMARY = "jemalloc memory allocator"
|
||||||
|
DESCRIPTION = "jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support."
|
||||||
|
HOMEPAGE = "http://jemalloc.net/"
|
||||||
|
DEPENDS = ""
|
||||||
|
LICENSE = "GPLv2"
|
||||||
|
|
||||||
|
inherit workonsrc
|
||||||
|
WORKONSRC = "${TOPDIR}/../src/apps/jemalloc"
|
||||||
|
|
||||||
|
|
||||||
|
do_install() {
|
||||||
|
install -d ${D}/usr/lib64
|
||||||
|
install -d ${D}/usr/lib64/pkgconfig
|
||||||
|
install -d ${D}/usr/include/jemalloc
|
||||||
|
|
||||||
|
#jemalloc
|
||||||
|
install -m 755 ${S}/lib64/libjemalloc.so ${D}/usr/lib64
|
||||||
|
install -m 755 ${S}/lib64/pkgconfig/jemalloc.pc ${D}/usr/lib64/pkgconfig
|
||||||
|
install -m 755 ${S}/include/jemalloc/jemalloc.h ${D}/usr/include/jemalloc
|
||||||
|
}
|
|
@ -60,10 +60,10 @@ IMAGE_INSTALL_append = " \
|
||||||
cjson \
|
cjson \
|
||||||
smtcn-mw \
|
smtcn-mw \
|
||||||
dibbler-client \
|
dibbler-client \
|
||||||
libevent \
|
|
||||||
c-ares \
|
c-ares \
|
||||||
cunit \
|
cunit \
|
||||||
nghttp2 \
|
nghttp2 \
|
||||||
|
jemalloc \
|
||||||
"
|
"
|
||||||
|
|
||||||
install_proc() {
|
install_proc() {
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,107 @@
|
||||||
|
#ifndef PA_LINUX_ALSA_H
|
||||||
|
#define PA_LINUX_ALSA_H
|
||||||
|
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
* PortAudio Portable Real-Time Audio Library
|
||||||
|
* ALSA-specific extensions
|
||||||
|
*
|
||||||
|
* Copyright (c) 1999-2000 Ross Bencina and Phil Burk
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
* a copy of this software and associated documentation files
|
||||||
|
* (the "Software"), to deal in the Software without restriction,
|
||||||
|
* including without limitation the rights to use, copy, modify, merge,
|
||||||
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
||||||
|
* and to permit persons to whom the Software is furnished to do so,
|
||||||
|
* subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
||||||
|
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
||||||
|
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The text above constitutes the entire PortAudio license; however,
|
||||||
|
* the PortAudio community also makes the following non-binding requests:
|
||||||
|
*
|
||||||
|
* Any person wishing to distribute modifications to the Software is
|
||||||
|
* requested to send the modifications to the original developer so that
|
||||||
|
* they can be incorporated into the canonical version. It is also
|
||||||
|
* requested that these non-binding requests be included along with the
|
||||||
|
* license above.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @file
|
||||||
|
* @ingroup public_header
|
||||||
|
* @brief ALSA-specific PortAudio API extension header file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "portaudio.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef struct PaAlsaStreamInfo
|
||||||
|
{
|
||||||
|
unsigned long size;
|
||||||
|
PaHostApiTypeId hostApiType;
|
||||||
|
unsigned long version;
|
||||||
|
|
||||||
|
const char *deviceString;
|
||||||
|
}
|
||||||
|
PaAlsaStreamInfo;
|
||||||
|
|
||||||
|
/** Initialize host API specific structure, call this before setting relevant attributes. */
|
||||||
|
void PaAlsa_InitializeStreamInfo( PaAlsaStreamInfo *info );
|
||||||
|
|
||||||
|
/** Instruct whether to enable real-time priority when starting the audio thread.
|
||||||
|
*
|
||||||
|
* If this is turned on by the stream is started, the audio callback thread will be created
|
||||||
|
* with the FIFO scheduling policy, which is suitable for realtime operation.
|
||||||
|
**/
|
||||||
|
void PaAlsa_EnableRealtimeScheduling( PaStream *s, int enable );
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
void PaAlsa_EnableWatchdog( PaStream *s, int enable );
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** Get the ALSA-lib card index of this stream's input device. */
|
||||||
|
PaError PaAlsa_GetStreamInputCard( PaStream *s, int *card );
|
||||||
|
|
||||||
|
/** Get the ALSA-lib card index of this stream's output device. */
|
||||||
|
PaError PaAlsa_GetStreamOutputCard( PaStream *s, int *card );
|
||||||
|
|
||||||
|
/** Set the number of periods (buffer fragments) to configure devices with.
|
||||||
|
*
|
||||||
|
* By default the number of periods is 4, this is the lowest number of periods that works well on
|
||||||
|
* the author's soundcard.
|
||||||
|
* @param numPeriods The number of periods.
|
||||||
|
*/
|
||||||
|
PaError PaAlsa_SetNumPeriods( int numPeriods );
|
||||||
|
|
||||||
|
/** Set the maximum number of times to retry opening busy device (sleeping for a
|
||||||
|
* short interval inbetween).
|
||||||
|
*/
|
||||||
|
PaError PaAlsa_SetRetriesBusy( int retries );
|
||||||
|
|
||||||
|
/** Set the path and name of ALSA library file if PortAudio is configured to load it dynamically (see
|
||||||
|
* PA_ALSA_DYNAMIC). This setting will overwrite the default name set by PA_ALSA_PATHNAME define.
|
||||||
|
* @param pathName Full path with filename. Only filename can be used, but dlopen() will lookup default
|
||||||
|
* searchable directories (/usr/lib;/usr/local/lib) then.
|
||||||
|
*/
|
||||||
|
void PaAlsa_SetLibraryPathName( const char *pathName );
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
@ -0,0 +1,12 @@
|
||||||
|
prefix=/usr
|
||||||
|
exec_prefix=${prefix}
|
||||||
|
libdir=/usr/lib64
|
||||||
|
includedir=${prefix}/include
|
||||||
|
|
||||||
|
Name: PortAudio
|
||||||
|
Description: Portable audio I/O
|
||||||
|
Requires:
|
||||||
|
Version: 19
|
||||||
|
|
||||||
|
Libs: -L${libdir} -lportaudio -lasound -lm -lpthread
|
||||||
|
Cflags: -I${includedir} -pthread
|
Loading…
Reference in New Issue