mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
d93c096519
* now when sysroot conflicts are fatal we really don't want to build
multiple fftw providers in the same sysroot
ERROR: The recipe fftwl is trying to install files into a shared area
when those files already exist. Those files and their manifest
location are:
/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemuarm/usr/include/fftw3.f
Matched in
manifest-qemuarm-fftw.populate_sysroot
manifest-qemuarm-fftwf.populate_sysroot
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
26 lines
593 B
PHP
26 lines
593 B
PHP
DESCRIPTION = "FFTW"
|
|
SECTION = "libs"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
|
|
|
|
PROVIDES = "virtual/fftw"
|
|
|
|
RPROVIDES_${PN} += "libfftw3"
|
|
|
|
SRC_URI = "http://www.fftw.org/fftw-${PV}.tar.gz"
|
|
|
|
S = "${WORKDIR}/fftw-${PV}"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = "--disable-fortran --enable-shared --enable-threads"
|
|
|
|
do_configure_prepend() {
|
|
echo 'AM_PROG_AS' >> ${S}/configure.ac
|
|
}
|
|
|
|
PACKAGES =+ "lib${PN}"
|
|
FILES_lib${PN} = "${libdir}/lib*.so.*"
|
|
|
|
# rename binary in /bin and use u-a tpo choose between different precision implementations?
|