当前位置: 技术问答>linux和unix
[求助]Debian在哪设置CFLAGS?
来源: 互联网 发布时间:2016-08-12
本文导语: 我的系统环境是Debian 5.04 现在因为要编译一个python2.6软件包,找到的文章说要设置CFLAGS,原文片段如下: debian/rules Edit the debian/rules file. This is a Makefile used to build the package. You’ll need to add some fine-tuning...
我的系统环境是Debian 5.04
现在因为要编译一个python2.6软件包,找到的文章说要设置CFLAGS,原文片段如下:
debian/rules
Edit the debian/rules file. This is a Makefile used to build the package. You’ll need to add some fine-tuning to the install target.
On top after the CFLAGS add:
ROOT = $(CURDIR)/debian/python2.6/usr
但是我以前没接触过gcc编译,也不知道这句ROOT要添加到哪去,请大侠指点,感激不尽!
现在因为要编译一个python2.6软件包,找到的文章说要设置CFLAGS,原文片段如下:
debian/rules
Edit the debian/rules file. This is a Makefile used to build the package. You’ll need to add some fine-tuning to the install target.
On top after the CFLAGS add:
ROOT = $(CURDIR)/debian/python2.6/usr
但是我以前没接触过gcc编译,也不知道这句ROOT要添加到哪去,请大侠指点,感激不尽!
|
要是只使用一次的话 在命令行执行一次就行了
要是一直用 就追加到/etc/profile这个文件里
|
export ROOT = $(CURDIR)/debian/python2.6/usr
|
/etc/profile