我正在与SunCC合作开发Solaris。 Autoconf的Array
(
[0] => variables
[1] => constant
[2] => define
[3] => two dimensional
[4] => three dimensional
)
和AC_COMPILE_IFELSE
是错误检测编译器功能。即使编译器使用 AC_LINK_IFELSE
等消息拒绝它们,Autoconf也会提供报告功能。
illegal option
我想尝试解决错误检测,但我需要知道编译器才能做到这一点。 Autoconf有一些提供canonicalized names for CPU, Vendor and OS的宏,但它们似乎不包括编译器或其供应商。
我们如何在Autoconf中检测或确定编译器名称或供应商?
添加以下内容并不是很有用,因为它无法识别编译器。
$ echo 'int main(int argc, char* argv[]) {}' > test.C
$ /opt/solarisstudio12.4/bin/CC test.C
$ /opt/solarisstudio12.4/bin/CC -msse4.2 -msha test.C
CC: Warning: Option -msse4.2 passed to ld, if ld is invoked, ignored otherwise
CC: Warning: Option -msha passed to ld, if ld is invoked, ignored otherwise
ld: fatal: option '-h a' is incompatible with building a dynamic executable
$ /opt/solarisstudio12.4/bin/CC -xarch=sha test.C
CC: Warning: illegal use of -xarch option, illegal value ignored: sha
然后:
AC_MSG_NOTICE(["Build: $build"])
AC_MSG_NOTICE(["Compiler: $compiler"])
答案 0 :(得分:2)
我认为没有一种标准方法可以做到这一点。
我们根据predef.sourceforge.net手动检查是否存在编译器宏,可能还有更多来源,如cc --version
,cc' s命令名,操作系统名称......)。 / p>
即。你编译一个程序,并检查定义。 如果它不存在/程序#errors out - >不是SunCC。
它看起来很乱,但这是一个直接来自Score-P源(vendor / common / build-config / m4 / ax_compiler_vendor.m4)的示例。也许你可以从中获得灵感:
AC_DEFUN([AX_COMPILER_VENDOR],
[AC_CACHE_CHECK([for _AC_LANG compiler vendor], ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor,
dnl Please add if possible support to ax_compiler_version.m4
[# note: don't check for gcc first since some other compilers define __GNUC__
vendors="intel: __ICC,__ECC,__INTEL_COMPILER
ibm: __xlc__,__xlC__,__IBMC__,__IBMCPP__
pathscale: __PATHCC__,__PATHSCALE__
clang: __clang__
cray: _CRAYC
fujitsu: __FUJITSU
gnu: __GNUC__
sun: __SUNPRO_C,__SUNPRO_CC
hp: __HP_cc,__HP_aCC
dec: __DECC,__DECCXX,__DECC_VER,__DECCXX_VER
borland: __BORLANDC__,__CODEGEARC__,__TURBOC__
comeau: __COMO__
kai: __KCC
lcc: __LCC__
sgi: __sgi,sgi
microsoft: _MSC_VER
metrowerks: __MWERKS__
watcom: __WATCOMC__
portland: __PGI
tcc: __TINYC__
unknown: UNKNOWN"
for ventest in $vendors; do
case $ventest in
*:) vendor=$ventest; continue ;;
*) vencpp="defined("`echo $ventest | sed 's/,/) || defined(/g'`")" ;;
esac
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[
#if !($vencpp)
thisisanerror;
#endif
])], [break])
done
ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor=`echo $vendor | cut -d: -f1`
])
])
答案 1 :(得分:1)
正如@Ronny所说,似乎没有一种标准的方法来确定编译器供应商。在配置任务时,检测供应商非常重要,例如在错误检测期间解决Autoconf错误:CC: Warning: illegal use of -xarch option, illegal value ignored: sha
。
@Ronny展示了如何使用预处理器宏来完成它。我们避免这种情况,因为编译器伪装成GCC的方式。 Clang和英特尔的编译器都定义了__GNUC__
,其他人也可以这样做。
以下是如何使用configure.ac
中的版本字符串:
## Determine the compiler's vendor.
COMPILER_VERSION=`"$CXX" --version 2>/dev/null`
## IBM xlC test if COMPILER_VERSION is empty
if test x"$COMPILER_VERSION" = "x"; then
COMPILER_VERSION=`"$CXX" -qversion 2>/dev/null`
fi
## SunCC test if COMPILER_VERSION is empty
if test x"$COMPILER_VERSION" = "x"; then
COMPILER_VERSION=`"$CXX" -V 2>&1`
fi
然后,供应商可以像:
一样使用IS_SUN_COMPILER=`echo $COMPILER_VERSION | $EGREP -i -c -E 'Sun C\+\+'`
echo "IS_SUN_COMPILER: $IS_SUN_COMPILER"
...
## This block handles SunCC.
if test "$IS_SUN_COMPILER" -ne "0"; then
...
fi