Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 70 lines (48 sloc) 1.14 KB
#!/usr/bin/env beesh
# BEE_VERSION fftw-3.3.10-0
# origin: ftp://ftp.fftw.org/pub/fftw/fftw-3.3.10.tar.gz
SRCURL[0]="https://beehive.molgen.mpg.de/8ccbf6a5ea78a16dbc3e1306e234cc5c/fftw-3.3.10.tar.gz"
mee_configure() {
:
}
# this gives the standard flags in DEFCONFIG
BEE_BUILDTYPE=autotools
mee_build() {
cd ${S}
# fix cflags
local MEE_CFLAGS="-O3 -fPIC"
sed -i "s|-mtune=native|$MEE_CFLAGS|" configure
SIMD='--enable-sse2 --enable-avx'
BUILD='--enable-threads --enable-openmp'
./configure \
$DEFCONFIG \
$BUILD \
$SIMD
make -j $(nproc)
make install DESTDIR=${D}
make clean
./configure \
$DEFCONFIG \
$BUILD \
$SIMD \
--enable-single
make -j $(nproc)
make install DESTDIR=${D}
make clean
./configure \
$DEFCONFIG \
$BUILD \
--enable-long-double
make -j $(nproc)
make install DESTDIR=${D}
make clean
./configure \
$DEFCONFIG \
$BUILD \
--enable-quad-precision
make -j $(nproc)
make install DESTDIR=${D}
}
mee_install() {
:
}