gcc configure,设置默认值?

时间:2012-05-09 04:08:45

标签: gcc makefile environment-variables configure

当我运行gcc configure时,例如

./configure

我这样做

./configure \
    --host=x86_64-w64-mingw32 \
    --prefix=/usr/x86_64-w64-mingw/sys-root/mingw

对于configure的所有调用,有没有办法将这些设置设为默认值?也许是一个环境变量?

1 个答案:

答案 0 :(得分:1)

对于使用Autoconf生成的configure脚本,确实存在使用environment variable CONFIG_SITE的工具。

使用export CONFIG_SITE=/path/to/my.config.site,其中该文件的内容是

行的脚本
test -z "$host_alias" && host_alias=x86_64-w64-mingw32
test "$prefix" = NONE && prefix=/usr/x86_64-w64-mingw/sys-root/mingw