46 lines
937 B
Bash
Executable file
46 lines
937 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/FFTW/fftw3.git"
|
|
SCRIPT_COMMIT="69f6c1a6ebd7ac5af33e7074134fb79fbc729c3d"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
cd "$FFBUILD_DLDIR/$SELF"
|
|
|
|
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
|
|
}
|