From LFS6.6 chapter5.7.1:
进入源码目录,可以执行“./configure && make && make install”进行软件编译与安装。但是如果你想添加自己的编译参数,比如需要给CFLAGS变量补充“-march=i486 -mtune=native”参数,可以将其写入一个特殊文件configparms,“./configure”命令将会解析该文件。
比如在编译glibc的时候,由于它不再支持i386,所以需要改成i486:
# cd glibc-2.11.1
# echo "CFLAGS += -march=i486 -mtune=native" > configparms
# ./configure xxxxxxxxxxxxxxxxx……
# make
# make install
阅读(2434) | 评论(0) | 转发(0) |