我是靠谱客的博主 要减肥日记本,最近开发中收集的这篇文章主要介绍ubuntu-16.04-x64中安装GDB-8.2时报错 ,checking for python2.7... no,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ubuntu-16.04-x64中安装GDB-8.2时,由于配置时要使用--with-python,而在make的过程中出错。配置和编译命令如下:

        #./configure --prefix=/usr/gdbserver --with-python

       #make

出现错误如下:

       checking whether to use python... yes
       checking for python... /usr/bin/python
       checking for python2.7... no
       configure: error: python is missing or unusable
       Makefile:9096: recipe for target 'configure-gdb' failed
       make[1]: *** [configure-gdb] Error 1
       make[1]: Leaving directory '/home/junhai/QT_ubuntu/gdb-8.2'
       Makefile:849: recipe for target 'all' failed
       make: *** [all] Error 2

在路径/usr/bin下能找到python2.7并且能运行python,……查了很久,最后在网站https://stackoverflow.com/questions/10792844/python-missing-or-unusable-error-while-cross-compiling-gdb找到类似的答案。

 

我的解决方法:

       #apt-get install python2.7-dev

再次,

       #./configure --prefix=/usr/gdbserver --with-python

       #make

通过,问题解决。

 

  

 

 

最后

以上就是要减肥日记本为你收集整理的ubuntu-16.04-x64中安装GDB-8.2时报错 ,checking for python2.7... no的全部内容,希望文章能够帮你解决ubuntu-16.04-x64中安装GDB-8.2时报错 ,checking for python2.7... no所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部