configure配置的参数 交叉编译 host,build target的含义
交叉编译profix,host,build,target的含义:
--profix :指定安装路径
--build:就是你正在使用的机器,
--host:就是你编译好的程序可以运行的平台,
--target:就是你编译的程序可以处理的平台.
这个 build和host比较好理解,但是target就不好办了,到底什么意思呢?
一般来说,我们平时所说的交差编译用不到他target的,
比如. /configure --build=i386-linux,--host=arm-linux就可以了,在386的平台上编译可以运行在arm板的程序.