Mercurial > mplayer.hg
changeset 12929:e31bab90b91c
Preliminary Support for building MPlayer with Intel C++ compiler.
Still needs some work to use the proper optimization parameters.
I haven't yet fixed the loader/dmo/dshow code so compile those dirs using
make -C loader CC=gcc [...] for the meantime.
To try use CC=icc ./configure with ICC 8.0 or later.
author | atmos4 |
---|---|
date | Mon, 02 Aug 2004 04:24:36 +0000 |
parents | bc760f3f129e |
children | b200b94ebc4b |
files | configure |
diffstat | 1 files changed, 29 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Mon Aug 02 03:35:50 2004 +0000 +++ b/configure Mon Aug 02 04:24:36 2004 +0000 @@ -511,8 +511,34 @@ # Checking CC version... if test "$_skip_cc_check" != yes ; then - for _cc in "$_cc" gcc gcc-3.3 gcc-3.2 gcc-3.1 gcc3 gcc-3.0 cc ; do + # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure) + if test "`basename $_cc`" = "icc" || test "`basename $_cc`" = "ecc"; then echocheck "$_cc version" + cc_vendor=intel + cc_name=`( $_cc -V ) 2>&1 | head -1 | cut -d ',' -f 1` + cc_version=`( $_cc -V ) 2>&1 | head -1 | cut -d ',' -f 2 | cut -d ' ' -f 3` + _cc_major=`echo $cc_version | cut -d '.' -f 1` + _cc_minor=`echo $cc_version | cut -d '.' -f 2` + # TODO verify older icc/ecc compatibility + case $cc_version in + '') + cc_version="v. ?.??, bad" + cc_verc_fail=yes + ;; + 8.0) + cc_version="$cc_version, ok" + cc_verc_fail=no + ;; + *) + cc_version="$cc_version, bad" + cc_verc_fail=yes + ;; + esac + echores "$cc_version" + else + for _cc in "$_cc" gcc gcc-3.4 gcc-3.3 gcc-3.2 gcc-3.1 gcc3 gcc-3.0 cc ; do + echocheck "$_cc version" + cc_vendor=gnu cc_name=`( $_cc -v ) 2>&1 | tail -1 | cut -d ' ' -f 1` cc_version=`( $_cc -dumpversion ) 2>&1` if test "$?" -gt 0; then @@ -541,6 +567,7 @@ echores "$cc_version" (test "$cc_verc_fail" = "no") && break done + fi # icc if test "$cc_verc_fail" = yes ; then cat <<EOF @@ -742,7 +769,7 @@ # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead - if [ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ]) ; then + if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then cpuopt=-mtune else cpuopt=-mcpu