由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 求教:Linux下的一个编译配置问题
相关主题
QT for embedded linux的安装最近谁编译过gcc?
奇怪的C Programming on Linux问题哪位大牛简单说说compiler里的bootstrap是干啥用的?
Autoconf Archive 里怎么没有BOOST Math的宏呢isinf 问题
问个autoconf的问题在 linux下有没有可能得到完全的fully static binary
eclipse的autotools插件不工作【讨论】Linux启动时执行配置文件的顺序 (转载)
有偿 求 configure (Autoconf) scriptINIT_WORK从Linux kernel 2.6.20后改了?
Ryan DL的心声...一些初级问题
g++编译了不该过的C++代码请问如何查看一个程序所需的library
相关话题的讨论汇总
话题: linux话题: automake话题: aclocal话题: 编译话题: autoconf
进入Programming版参与讨论
1 (共1页)
c********l
发帖数: 8138
1
在Linux下需要编译一个比较旧的project
该project需要在编译之前运行
aclocal && autoconf && automake -a
但是在运行aclocal时,提示:需要将configure.in改名为configure.ac
于是照做
但在automake -a时,又提示“需要Makefiles.am,但是找不到”
于是将Makefiles.in改名为Makefiles.am,显然,格式不对
这个问题怎么解决?
t****t
发帖数: 6806
2
一般不都是直接运行configure的吗?

【在 c********l 的大作中提到】
: 在Linux下需要编译一个比较旧的project
: 该project需要在编译之前运行
: aclocal && autoconf && automake -a
: 但是在运行aclocal时,提示:需要将configure.in改名为configure.ac
: 于是照做
: 但在automake -a时,又提示“需要Makefiles.am,但是找不到”
: 于是将Makefiles.in改名为Makefiles.am,显然,格式不对
: 这个问题怎么解决?

c********l
发帖数: 8138
3
不是,
./configure是后面的一步,我说的问题是前面几卡
附:instruction上写的顺序是:
5) aclocal
6) autoconf
7) automake -a
8) ./configure
9) make & make install

【在 t****t 的大作中提到】
: 一般不都是直接运行configure的吗?
n*****n
发帖数: 5277
4
you need to write your own makefile.am
basic idea is to list name of program and source file
like:
bin_PROGRAMS = hello
hello_SOURCES = hello.h hello.cc main.cc
this article may help you
http://jianlee.ylinux.org/Computer/C%E5%92%8CGNU%E5%BC%80%E5%8F
l*********s
发帖数: 5409
5
谢谢推书,抱走 ^__^

【在 n*****n 的大作中提到】
: you need to write your own makefile.am
: basic idea is to list name of program and source file
: like:
: bin_PROGRAMS = hello
: hello_SOURCES = hello.h hello.cc main.cc
: this article may help you
: http://jianlee.ylinux.org/Computer/C%E5%92%8CGNU%E5%BC%80%E5%8F

b*******s
发帖数: 5216
6
autoconf automake网上找个教程做做试验就是了
很简单的

【在 l*********s 的大作中提到】
: 谢谢推书,抱走 ^__^
y****e
发帖数: 23939
7
用CMake吧,简单好多
1 (共1页)
进入Programming版参与讨论
相关主题
请问如何查看一个程序所需的libraryeclipse的autotools插件不工作
同样的C++程序,Linux下比Windows下慢很多有偿 求 configure (Autoconf) script
求救Ryan DL的心声...
如何run spark scala 代码,不用jar 的情况下?g++编译了不该过的C++代码
QT for embedded linux的安装最近谁编译过gcc?
奇怪的C Programming on Linux问题哪位大牛简单说说compiler里的bootstrap是干啥用的?
Autoconf Archive 里怎么没有BOOST Math的宏呢isinf 问题
问个autoconf的问题在 linux下有没有可能得到完全的fully static binary
相关话题的讨论汇总
话题: linux话题: automake话题: aclocal话题: 编译话题: autoconf