This commit is contained in:
2025-07-12 12:17:44 +03:00
parent c759f60ff7
commit 792e1b937a
3507 changed files with 492613 additions and 0 deletions

26
fftw-3.3.10/bootstrap.sh Executable file
View File

@@ -0,0 +1,26 @@
#! /bin/sh
############################################################################
#
# NOTE: If you just want to build FFTW, do not use this file. Just use
# the ordinary ./configure && make commmands as described in the installation
# section of the manual.
#
# This file is only for users that want to generate their own codelets,
# as described in the "generating your own code" section of the manual.
#
############################################################################
touch ChangeLog
echo "PLEASE IGNORE WARNINGS AND ERRORS"
rm -rf autom4te.cache
autoreconf --verbose --install --symlink --force
rm -f config.cache
# --enable-maintainer-mode enables build of genfft and automatic
# rebuild of codelets whenever genfft changes
(
./configure --disable-shared --enable-maintainer-mode --enable-threads $*
)