| configure.ac (5b4e3b0f) | configure.ac (4691efef) |
|---|---|
| 1dnl * ************************************************************* 2dnl * 3dnl * Licensed to the Apache Software Foundation (ASF) under one 4dnl * or more contributor license agreements. See the NOTICE file 5dnl * distributed with this work for additional information 6dnl * regarding copyright ownership. The ASF licenses this file 7dnl * to you under the Apache License, Version 2.0 (the 8dnl * "License"); you may not use this file except in compliance --- 2220 unchanged lines hidden (view full) --- 2229 AC_MSG_ERROR([gcc too old]); 2230 fi 2231 ;; 2232 CLANG) 2233 CCVER=`${CC} --version 2>&1 | head -n1 | sed -e"s/.*version //" -e"s/ .*//"`; 2234 CCNUMVER=`echo ${CCVER} | $AWK -v num=true -f ${_solenv}/bin/getcompver.awk`; 2235 # The version in tg_compv.mk for darwin does not look correct 2236 # CCNUMVER = `echo ${CCVER} | sed -e"s/\.//"; | 1dnl * ************************************************************* 2dnl * 3dnl * Licensed to the Apache Software Foundation (ASF) under one 4dnl * or more contributor license agreements. See the NOTICE file 5dnl * distributed with this work for additional information 6dnl * regarding copyright ownership. The ASF licenses this file 7dnl * to you under the Apache License, Version 2.0 (the 8dnl * "License"); you may not use this file except in compliance --- 2220 unchanged lines hidden (view full) --- 2229 AC_MSG_ERROR([gcc too old]); 2230 fi 2231 ;; 2232 CLANG) 2233 CCVER=`${CC} --version 2>&1 | head -n1 | sed -e"s/.*version //" -e"s/ .*//"`; 2234 CCNUMVER=`echo ${CCVER} | $AWK -v num=true -f ${_solenv}/bin/getcompver.awk`; 2235 # The version in tg_compv.mk for darwin does not look correct 2236 # CCNUMVER = `echo ${CCVER} | sed -e"s/\.//"; |
| 2237 case "$build_os" in 2238 darwin*) # Mac OS X 2239 COMID="s5abi"; 2240 COMNAME="s5abi"; 2241 ;; 2242 *) 2243 COMID="gcc3"; 2244 COMNAME="gcc3"; 2245 ;; 2246 esac | 2237 COMID="gcc3"; 2238 COMNAME="gcc3"; |
| 2247 ;; 2248 MSC) 2249 CCVER=`${CC} 2>&1 | $AWK -f ${_solenv}/bin/getcompver.awk`; 2250 CCNUMVER=`${CC} 2>&1 | $AWK -v num=true -f ${_solenv}/bin/getcompver.awk`; 2251 if test "${CCNUMVER}" -ge 001200000000; then 2252 COMID="MSC"; 2253 case "$build_cpu" in 2254 i?86) --- 5225 unchanged lines hidden --- | 2239 ;; 2240 MSC) 2241 CCVER=`${CC} 2>&1 | $AWK -f ${_solenv}/bin/getcompver.awk`; 2242 CCNUMVER=`${CC} 2>&1 | $AWK -v num=true -f ${_solenv}/bin/getcompver.awk`; 2243 if test "${CCNUMVER}" -ge 001200000000; then 2244 COMID="MSC"; 2245 case "$build_cpu" in 2246 i?86) --- 5225 unchanged lines hidden --- |