如何修复 M2.1.5 MacBook Air 上 FFTW-1 的配置错误?

How to fix configure error for FFTW-2.1.5 on an M1 MacBook Air?

提问人:TensorRatCar1546 提问时间:11/17/2023 更新时间:11/17/2023 访问量:12

问:

我正在尝试安装 fftw-2.1.5 以运行GADGET2。在我的 M1 MacBook Air 上,它在配置步骤中崩溃。

我已经尝试了这个溢出帖子的建议,但由于我是 Linux 的新手,我在第 2 步和第 4 步中遇到了困难。

这是我正在尝试和配置的内容:

./configure

这是我收到的错误:

configure: error: /bin/sh ./config.sub -apple-darwin23.1.0 failed

当尝试使用 Debian 上的文件修补文件时,我可以创建并运行补丁文件,但我不知道该把什么作为修补的位置?

我正在从 Debian 运行这个补丁文件:

Author: Paul Brossier
Last-Update: 2008-05-14 11:23:40 +0200
Description: Workaround gcc-4.1 bug

--- fftw-2.1.3.orig/tests/test_main.c
+++ fftw-2.1.3/tests/test_main.c
@@ -548,7 +548,7 @@
 void test_timer(void)
 {
      double times[32], acc, min_time = 10000.00;
-     unsigned long iters, iter;
+     unsigned long iters = 0, iter;
      fftw_time begin, end, start;
      double t, tmax, tmin;
      int last = 0, i, repeat;
@@ -559,7 +559,8 @@
      start = fftw_get_time();
 
      for (i = 0; i < 32; i++) {
-     iters = 1 << i;
+     //iters = 1 << i; /* workaround gcc-4.1 bug */
+     if (i) iters <<= 1; else iters = 1;
      tmin = 1.0E10;
      tmax = -1.0E10;

然后我跑,

% patch < Patch_1.sh
can't find file to patch at input line 7
Perhaps you should have used the -p or --strip option?
The text leading up to this was:
--------------------------
|Author: Paul Brossier
|Last-Update: 2008-05-14 11:23:40 +0200
|Description: Workaround gcc-4.1 bug
|
|--- fftw-2.1.3.orig/tests/test_main.c
|+++ fftw-2.1.3/tests/test_main.c
--------------------------
File to patch: 

我不确定如何继续。

此外,在尝试原始帖子中的第 4 步时,我运行了这个,

% autoupdate

并收到此错误,

zsh: command not found: autoupdate

我也不确定我在这里做错了什么。

Linux macOS Apple-M1 FFTW

评论


答: 暂无答案