您的位置:首页 > 产品设计 > UI/UE

【buildroot-2011.11】You may have to install 'g++' on your build machine

2014-11-09 19:50 453 查看
buildroot - 2011.11 交叉编译器***时,提示如下错误:

“You may have to install 'g++' on your build machine”

还提示:toolchain/dependencies/dependencies.sh 121 Error

打开toolchain/dependencies/dependencies.sh,有如下一段脚本

# check for host CXX
CXXCOMPILER=$(which $HOSTCXX 2> /dev/null)
if [ -z "$CXXCOMPILER" ] ; then
    CXXCOMPILER=$(which c++ 2> /dev/null)
fi
if [ -z "$CXXCOMPILER" ] ; then
    /bin/echo -e "\nYou may have to install 'g++' on your build machine\n"
    #exit 1
fi
if [ ! -z "$CXXCOMPILER" ] ; then
    CXXCOMPILER_VERSION=$($CXXCOMPILER -v 2>&1 | sed -n '/^gcc version/p' |
        sed -e 's/^gcc version \([0-9\.]\)/\1/g' -e 's/[-\ ].*//g' -e '1q')
    
    if [ -z "$CXXCOMPILER_VERSION" ] ; then
        /bin/echo -e "\nYou may have to install 'g++' on your build machine\n"
    fi

    CXXCOMPILER_MAJOR=$(echo $CXXCOMPILER_VERSION | sed -e "s/\..*//g")
    CXXCOMPILER_MINOR=$(echo $CXXCOMPILER_VERSION | sed -e "s/^$CXXCOMPILER_MAJOR\.//g" -e "s/\..*//g")
    if [ $CXXCOMPILER_MAJOR -lt 3 -o $CXXCOMPILER_MAJOR -eq 2 -a $CXXCOMPILER_MINOR -lt 95 ] ; then
        /bin/echo -e "\nYou have g++ '$CXXCOMPILER_VERSION' installed.  g++ >= 2.95 is required\n"
        exit 1
    fi
fi
有两个地方会打印“You may have to install 'g++' on your build machine”,在这两个地方分别加入调试标记,发现是这里出问题了。

# check for host CXX

CXXCOMPILER=$(which $HOSTCXX 2> /dev/null)

if [ -z "$CXXCOMPILER" ] ; then

CXXCOMPILER=$(which c++ 2> /dev/null)

fi

if [ -z "$CXXCOMPILER" ] ; then

/bin/echo -e "\nYou may have to install 'g++' on your build machine\n"

#exit 1

fi

if [ ! -z "$CXXCOMPILER" ] ; then

CXXCOMPILER_VERSION=$($CXXCOMPILER -v 2>&1 | sed -n '/^gcc version/p' |

sed -e 's/^gcc version \([0-9\.]\)/\1/g' -e 's/[-\ ].*//g' -e '1q')



if [ -z "$CXXCOMPILER_VERSION" ] ; then

/bin/echo -e "\nYou may have to install 'g++' on your build machine\n"

fi

CXXCOMPILER_MAJOR=$(echo $CXXCOMPILER_VERSION | sed -e "s/\..*//g")

CXXCOMPILER_MINOR=$(echo $CXXCOMPILER_VERSION | sed -e "s/^$CXXCOMPILER_MAJOR\.//g" -e "s/\..*//g")

if [ $CXXCOMPILER_MAJOR -lt 3 -o $CXXCOMPILER_MAJOR -eq 2 -a $CXXCOMPILER_MINOR -lt 95 ] ; then

/bin/echo -e "\nYou have g++ '$CXXCOMPILER_VERSION' installed. g++ >= 2.95 is required\n"

exit 1

fi

fi

原来他没有检查出来,CXXCOMPILER_VERSION为空。方便起见,我直接输入命令:

c++ -v 2>&1 | sed -n '/^gcc version/p' | sed -e 's/^gcc version \([0-9\.]\)/\1/g' -e 's/[-\ ].*//g' -e '1q'

得到C++的版本为:4.4.6

我就直接在CXXCOMPILER_VERSION的判断上面加一句:CXXCOMPILER_VERSION=4.4.6

然后make,直接通过。

OK,问题解决到此结束!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐