博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu14.04 下安装 glib-2.44.1 的过程记录
阅读量:5111 次
发布时间:2019-06-13

本文共 2353 字,大约阅读时间需要 7 分钟。

安装glib-2.44.1

先说清楚,这是一篇纠结文,正确答案

纠结开始了:

下载

参考

要用到autoconf生成配置脚本

先使用apt-get install autoconf安装autoconf,这个稍微有点慢。

 然后在glib-master目录下运行

autoconf configure.ac

报错了

configure.ac:66: error: possibly undefined macro: AM_INIT_AUTOMAKE

If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.

这个问题还没解决,又遇到一个新的问题,就是我把glib-master在虚拟机的共享文件夹中解压然后拷贝到ubuntu的根目录下之后,

glib-master下会自动出现一个configure文件,我按照安装文档说的运行./configure又提示bash: ./configure: No such file or directory

然后我用ls -l 列出目录和文件的详细信息,却发现列表中根本没有configure这个文件

真实诡异啊!!!!

即便是我要删除这个文件,也会提示no such file or directory,但是这个文件依然赤裸裸的在我的文件列表中。

先不管这个,网上有人说试试安装libtool

apt-get install libtool

网速是硬伤....

终于装好了,然后autoconf,这回没有报错。

然后ls -l能看到configure这个文件了

继续 ./configure

又报错

./configure: line 2607: syntax error near unexpected token `1.11'

./configure: line 2607: `AM_INIT_AUTOMAKE(1.11 -Wno-portability no-define no-dist-gzip dist-xz tar-ustar)'

试试 autoreconf -i

又报错

Makefile.am: error: required file './README' not found

parallel-tests: installing './test-driver'
automake: error: cannot open < gtk-doc.make: No such file or directory
autoreconf: automake failed with exit status: 1

忽略这个错误,再试试

autoreconf -fi

依然报错

Makefile.am: error: required file './README' not found

automake: error: cannot open < gtk-doc.make: No such file or directory
autoreconf: automake failed with exit status: 1

继续装作没看见,运行

./configure

报错如下:

checking for LIBFFI... no

configure: error: Package requirements (libffi >= 3.0.0) were not met:

No package 'libffi' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you

installed software in a non-standard prefix.

Alternatively, you may set the environment variables LIBFFI_CFLAGS

and LIBFFI_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

装个libffi先

wget ftp://sourceware.org/pub/libffi/libffi-3.0.11.tar.gz

tar zxvf libffi-3.0.11.tar.gz

cd libffi-3.0.11/

./configure

make

make install

然后再重新回到glib-master目录运行

./configure

对了,我自己建了一个空的文件README,不知道有啥影响,先放着。

这次输出好长,给我造成了一种大功告成的错觉,可是最后还是有一行错误

error: cannot find input file: `Makefile.in'

想继续发扬装没看见的优良传统,直接

make

不料压根找不到make文件,算了,从头来过

我估计是安装包有问题,从这里下载新的安装包

这次不放根目录了,放在usr目录下

然后tar xvJf glib-2.44.1.tar.xz解压

然后

cd glib-2.44.1

./configure

我了个大去,竟然没有报错,我之前都干了神马!!!

赶紧的

make

然后

make install

看着一行行的输出,真的好爽,最后来张图

转载于:https://www.cnblogs.com/chansonzhang/p/4532934.html

你可能感兴趣的文章
入手腾龙SP AF90mm MACRO
查看>>
Window7上搭建symfony开发环境(PEAR)
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
一些方便系统诊断的bash函数
查看>>
jquery中ajax返回值无法传递到上层函数
查看>>
css3之transform-origin
查看>>
[转]JavaScript快速检测浏览器对CSS3特性的支持
查看>>
Master选举原理
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
小别离
查看>>
微信小程序-发起 HTTPS 请求
查看>>
WPF动画设置1(转)
查看>>
基于node/mongo的App Docker化测试环境搭建
查看>>
秒杀9种排序算法(JavaScript版)
查看>>
struts.convention.classes.reload配置为true,tomcat启动报错
查看>>
MySQL的并行复制多线程复制MTS(Multi-Threaded Slaves)
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
PyQt5--EventSender
查看>>