linux make: *** No targets specified and no makefile found. Stop.
[root@localhost Python-3.4.]# ./configure
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for --enable-universalsdk... no
checking for --with-universal-archs... no
checking MACHDEP... linux
checking for --without-gcc... no
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/home/lpf/Python-3.4.':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details
[root@localhost Python-3.4.]# make
make: *** No targets specified and no makefile found. Stop.
# yum install gcc gcc-c++ autoconf automake
安装成功以后就可以用传统的./configure和make,sudo make install安装了
linux make: *** No targets specified and no makefile found. Stop.的更多相关文章
- make 命令出现:"make:*** No targets specified and no makefile found.Stop."
		我们在Linux 安装包的时候,使用make 命令出现:"make:*** No targets specified and no makefile found.Stop."这样的 ... 
- centos7下安装iperf时出现 make: *** No targets specified and no makefile found. Stop.的解决方案
		我们在Linux 安装包的时候,使用make 命令出现:"make:*** No targets specified and no makefile found.Stop."这样的 ... 
- make: *** No targets specified and no makefile found.  Stop.错误
		# make make: *** No targets specified and no makefile found. Stop. # yum install gcc gcc-c++ gcc-g77 ... 
- linux下使用automake工具自动生成makefile文件
		linux环境下,当项目工程很大的时候,编译的过程很复杂,所以需要使用make工具,自动进行编译安装,但是手写makefile文件比较复杂,所幸在GNU的计划中,设计出了一种叫做Autoconf/Au ... 
- 【Linux学习】 写一个简单的Makefile编译源码获取当前系统时间
		打算学习一下Linux,这两天先看了一下gcc的简单用法以及makefile的写法,今天是周末,天气闷热超市,早晨突然发现住处的冰箱可以用了,于是先出去吃了点东西,然后去超市买了一坨冰棍,老冰棍居多, ... 
- linux内核代码的编写初步以及makefile的配置
		在linux内核代码开发中,头文件不能包含标准C头文件,只能采用GNC标准 而且内核开发中没有main函数,只有init 和 exit ,这是每个内核模块中必须要包含的函数模块. 在GNU C标准中, ... 
- linux与Windows使用编译区别及makefile文件编写
		一.Windows与:Linux嵌入式开发区别 Windows下编辑.编译.执行 编辑: sourceInsight:ADS: 编译:指定链接地址,指定链接顺序,编译 执行:烧写到单板再启动 Linu ... 
- linux驱动编写(Kconfig文件和Makefile文件)
		在Linux编写驱动的过程中,有两个文件是我们必须要了解和知晓的.这其中,一个是Kconfig文件,另外一个是Makefile文件.如果大家比较熟悉的话,那么肯定对内核编译需要的.config文件不陌 ... 
- Linux工具入门:make工具与Makefile文件
		1. make工具 利用make工具可以自动完成编译工作,这些工作包括: 如果修改了某几个源文件,则只重新编译这几个源文件 如果某个头文件被修改了,则重新编译所有包含该头文件的源文件 利用这种自动编译 ... 
随机推荐
- C#高级编程(32章)ADO.net
			32.2高效地使用连接 sqlConnection类是针对sql的,而OleDbConnection 是针对其他比如access的,另外还有odbcConnection是针对odbc的,sql的访问优 ... 
- 【leetcode】1032. Stream of Characters
			题目如下: Implement the StreamChecker class as follows: StreamChecker(words): Constructor, init the data ... 
- 四轴PID思路整理
			参考资料: https://blog.csdn.net/nemol1990/article/details/45131603 https://blog.csdn.net/qq_27114397/art ... 
- StrictMode 严格模式
			StrictMode: 帮助程序员避免在主线程上执行耗时操作: 启动级别: 1. 启动线程级别: setThreadPolicy() 2. 启动应用级别 : setVmPolicy() —— 对 ... 
- window 2008/2012计划任务配置
			很多人在问我: 1.Windows Server 2008 计划任务在哪里配置? 2.Windows Server 2008 可以配置每分钟或是每小时执行我的任务吗? 答案是:可以! 首先Window ... 
- Python游戏
			要想实现键盘控制作用,就需要给游戏键盘监听事件利用pygame模块的key.get_pressed()方法,来检测按键是否按下 key_press =pygame.key.get_pressed() ... 
- Gym-100676E Time Limit Exceeded?
			原题链接 https://odzkskevi.qnssl.com/1110bec98ca57b5ce6aec79b210d2849?v=1491063604 ********************* ... 
- Checking out pull requests locally
			https://help.github.com/en/articles/checking-out-pull-requests-locally https://github.com/betaflight ... 
- Django中执行原生SQL语句【新编辑】
			参考我的个人博客 这部分迁移到了个人博客中:Django中执行原生SQL语句 这里需要补充一下,还有一个extra方法: ret = models.Student.objects.all().extr ... 
- webpack 4.+版本需要注意的地方
			在webpack打包的时候需要npm下载webpack-cli,而且打包JS的命令从以前的webpack .\src\main.js .\dist\boundle.js 要编程 webpack .\ ... 
