47 lines
977 B
Bash
Executable file
47 lines
977 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/FFTW/fftw3.git"
|
|
SCRIPT_COMMIT="0842f00ae6b6e1f3aade155bc0edd17a7313fa6a"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" fftw3
|
|
cd fftw3
|
|
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--enable-maintainer-mode
|
|
--disable-shared
|
|
--enable-static
|
|
--disable-fortran
|
|
--disable-doc
|
|
--with-our-malloc
|
|
--enable-threads
|
|
--with-combined-threads
|
|
--with-incoming-stack-boundary=2
|
|
)
|
|
|
|
if [[ $TARGET != *arm64 ]]; then
|
|
myconf+=(
|
|
--enable-sse2
|
|
--enable-avx
|
|
--enable-avx2
|
|
)
|
|
fi
|
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
|
myconf+=(
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
)
|
|
else
|
|
echo "Unknown target"
|
|
return -1
|
|
fi
|
|
|
|
./bootstrap.sh "${myconf[@]}"
|
|
make -j$(nproc)
|
|
make install
|
|
}
|