13

我在使用交叉编译器链接到很多库时遇到问题。每次生成文件时是否可以将文件 conftest.c 转储到安全位置?

我试图取消注释这些行

rm -f conftest

从配置脚本,但它继续就像它没有任何意义。

4

2 回答 2

10

检查 config.log,它包含失败的程序,例如:

...
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "libogg"
| #define VERSION "1.2.2"
| /* end confdefs.h.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
...
于 2013-08-26T10:04:44.520 回答
1

对我来说,它会在失败时打印代码,但为了强制它,我创建了一个包装脚本:

#!/bin/sh

for i in "$@"; do
  if echo "$i" | grep -q '\.c$'; then
     echo printing $i
     cat "$i"
  fi
done

exec cc "$@"

然后运行

$ CC=$PWD/cc.sh ./configure
于 2018-07-21T11:50:18.743 回答