关于linux下Asio脱离Boost的独立编译
其实这句话本身就有问题,因为我在Asio1.12.1解压后看到有makefile.in和makefile.am,就下意识的去生成makefile,然后make,却总是失败提示
Makefile:366: recipe for target 'all-recursive' failed
不明所以,网上又不太好找什么原因。
最后,终于在Stackover的一篇帖子中找到了答案。。。链接如下,不过打开的太慢,我截了图。
https://*.com/questions/18136738/compiling-asio-library-without-boost
它编译的应该是压缩包里的例子,运行
make -k
去看例子里边所有的编译结果,发现只有C++17的没有生成可执行程序,说明错误可能是编译器不支持C++17,具体的就不深究了先。附一篇转载的关于makefile.in、makefile.am、makefile的帖子。
文章出处:http://blog.mcuol.com/User/wangguangdong/Article/17384_1.htm
Makefile.am, Makefile.in, Makefile之间关系以及aclocal, automake, autoconf等命令作用的探究
aclocal #产生 aclocal.m4
libtoolize --force
automake --add-missing #根据Makefile.am生成Makefile.in
autoconf #根据configure.in 生成configure
autoheader
为了弄清楚automake等一系列命令的作用,专门搜集并阅读了一些相关资料。并通过下面一个小例子,熟悉了一下这些GNU工具的使用:
例子:在/hello/目录下创建一个hello.c文件,并编译运行它:
#cd /hello/
(1) 编写源文件hello.c:
include
int main(int argc, char** argv)
{
printf("Hello, GNU!n");
return 0;
}
(2) #autoscan
->生成 configure.scan 和 autoscan.log
(3) 将configure.scan 修改为 configure.in:
# Process this file with autoconf to produce a configure script.
AC_INIT(hello.c)
AM_INIT_AUTOMAKE(hello, 1.0)
# Checks for programs.
AC_PROG_CC
# Checks for library functions.
AC_OUTPUT(Makefile)
(4) #aclocal
->生成 aclocal.m4 和 autom4te.cache (生成aclocal.m4的过程中涉及到configure.in)
(5) #autoconf
->生成 configure (根据 configure.in, 和 aclocal.m4)
(6) 编写Makefile.am:
AUTOMAKE_OPTIONS= foreign
bin_PROGRAMS= hello
hello_SOURCES= hello.c
(7) #automake --add-missing
->生成 Makefile.in, depcomp, install-sh, 和 missing (根据 Makefile.am, 和 aclocal.m4)
(8) #./configure
->生成 Makefile, config.log, 和 config.status