crosstool-ng的安装

crosstool-ng用于制作交叉编译器,其本身作为Linux下的一个软件,也需要进行编译安装。下面简要记录下安装过程。

开发环境:
Ubuntu 16.04 64bit
gcc v5.3.1
make v4.1

下载

在crosstool-ng的首页crosstool-ng.org上可以下载到其源代码,目前最新版本是crosstool-ng-1.22.0

配置

解压下载到的tar包,切换到crosstool-ng文件夹中执行

1
./configure

这一步的目的是生成Makefile文件,使用configure的默认配置即可。

在Ubuntu环境下,因为安装的开发工具不全,可能会提示缺少一些工具,这时候用apt-get安装缺少的工具即可。不过有几个提示不是那么直接:

错误提示:

1
configure: error: missing required tool: makeinfo

解决方法:

1
apt-get install texinfo

错误提示:

1
configure: error: could not find GNU awk

解决方法:

1
apt-get install gawk

错误提示:

1
configure: error: could not find GNU libtool >= 1.5.26

解决方法:

1
apt-get install libtool libtool-bin

这里仅安装libtool是不够的,还需要安装libtool-bin


错误提示:

1
configure: error: could not find curses header, required for the kconfig frontends

解决方法:

1
apt-get install libncurses5-dev

这里缺少的是ncurses这个库,对应的Ubuntu下的包是libncurses5-dev

编译

配置完生成Makefile后直接用make进行编译即可,这一步在我使用的开发环境下没有发生任何错误。可能出现的错误及解决方法可参考这里的说明

安装

编译完后使用make install安装即可,默认安装在/usr/local/bin/usr/local/lib等目录下,如需更改安装目录,可在./configure配置时进行设置,具体可使用./configure -h命令查看帮助文档中的说明。一般来说,/usr/local/bin目录已经在环境变量PATH中了,故不需要再手动添加。

安装完成后使用ct-ng version命令进行测试,如果能正确输出如下版本信息说明安装正确:

1
2
3
4
5
6
This is crosstool-NG version crosstool-ng-1.22.0

Copyright (C) 2008 Yann E. MORIN <yann.morin.1998@free.fr>
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
文章目录
  1. 1. 下载
  2. 2. 配置
  3. 3. 编译
  4. 4. 安装