https://github.com/cran/Rcpp
Revision b24f02e54192e5ddc2fcd90d626fd92ddf24b172 authored by Dirk Eddelbuettel on 12 February 2010, 00:00:00 UTC, committed by Gabor Csardi on 12 February 2010, 00:00:00 UTC
1 parent 8c941f7
Raw File
Tip revision: b24f02e54192e5ddc2fcd90d626fd92ddf24b172 authored by Dirk Eddelbuettel on 12 February 2010, 00:00:00 UTC
version 0.7.6
Tip revision: b24f02e
configure.win
# simple check

gxx_version=`g++ -v 2>&1 | grep "^g.*version" | sed -e 's/^.*g.. version *//'`
echo "Seeing g++ version ${gxx_version}"

case ${gxx_version} in
    4.3.*|4.4.*|4.5.*)
           echo "You can enable support for the C++0x draft by setting the"
           echo "'RCPP_CXX0X' environment variable to 'yes' "
    ;;
esac
back to top