From: James Zern Date: Fri, 3 May 2013 21:34:13 +0000 (-0700) Subject: configure: use .cc as c++ extension X-Git-Tag: v1.3.0~1106^2~66 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3fa5b39d6f521291cd24d684f1f1a15edc154989;p=libvpx configure: use .cc as c++ extension clang++ will warn causing flag check failures when using -Werror Change-Id: Ib7157140a7af2cf5bc41f86ea9ff8d9527f30414 --- diff --git a/build/make/configure.sh b/build/make/configure.sh index ac86d50d0..c50ef58ad 100755 --- a/build/make/configure.sh +++ b/build/make/configure.sh @@ -265,12 +265,13 @@ else fi TMP_H="${TMPDIRx}/vpx-conf-$$-${RANDOM}.h" TMP_C="${TMPDIRx}/vpx-conf-$$-${RANDOM}.c" +TMP_CC="${TMPDIRx}/vpx-conf-$$-${RANDOM}.cc" TMP_O="${TMPDIRx}/vpx-conf-$$-${RANDOM}.o" TMP_X="${TMPDIRx}/vpx-conf-$$-${RANDOM}.x" TMP_ASM="${TMPDIRx}/vpx-conf-$$-${RANDOM}.asm" clean_temp_files() { - rm -f ${TMP_C} ${TMP_H} ${TMP_O} ${TMP_X} ${TMP_ASM} + rm -f ${TMP_C} ${TMP_CC} ${TMP_H} ${TMP_O} ${TMP_X} ${TMP_ASM} } # @@ -291,9 +292,9 @@ check_cc() { check_cxx() { log check_cxx "$@" - cat >${TMP_C} - log_file ${TMP_C} - check_cmd ${CXX} ${CXXFLAGS} "$@" -c -o ${TMP_O} ${TMP_C} + cat >${TMP_CC} + log_file ${TMP_CC} + check_cmd ${CXX} ${CXXFLAGS} "$@" -c -o ${TMP_O} ${TMP_CC} } check_cpp() {