当前位置: 技术问答>linux和unix
KDevelop 编译问题
来源: 互联网 发布时间:2016-03-23
本文导语: 本人开始学习KDevelop. 用KDevelop 新建HelloWorld工程,Run automake&friends 完成后,进行Run Configure,但是出错,如下 cd'/home/test/桌面/Hello/debug'&&CFLAGS="-0o-g3""/home/test/桌面/hello/Configure"--enable-debug=full /bin/sh: /home/test/桌面/Hello/co...
本人开始学习KDevelop.
用KDevelop 新建HelloWorld工程,Run automake&friends 完成后,进行Run Configure,但是出错,如下
cd'/home/test/桌面/Hello/debug'&&CFLAGS="-0o-g3""/home/test/桌面/hello/Configure"--enable-debug=full
/bin/sh: /home/test/桌面/Hello/configure:not found
不知道为什么?是不是config没有装。
如果要安装怎么安装?
用KDevelop 新建HelloWorld工程,Run automake&friends 完成后,进行Run Configure,但是出错,如下
cd'/home/test/桌面/Hello/debug'&&CFLAGS="-0o-g3""/home/test/桌面/hello/Configure"--enable-debug=full
/bin/sh: /home/test/桌面/Hello/configure:not found
不知道为什么?是不是config没有装。
如果要安装怎么安装?
|
解决方式:
首先查看pkg-config是否安装,如果安装,你可以使用一下方式编译你的程序.
逐个利用Linux开发工具aclocal, autoheader, autoconf, automake逐个产生configure, makefine.am, makefile.in, configure.in, makefile等文件,然后make , make install就可以测试你的程序.
或者你直接用gcc编译你的源文件.
首先查看pkg-config是否安装,如果安装,你可以使用一下方式编译你的程序.
逐个利用Linux开发工具aclocal, autoheader, autoconf, automake逐个产生configure, makefine.am, makefile.in, configure.in, makefile等文件,然后make , make install就可以测试你的程序.
或者你直接用gcc编译你的源文件.