hi,
I am trying to find out what compile flags and environment variables were used when compiling the python package. Is there an easy way of figuring this out? perhaps a website which shows the RPM specs?
On 08/09/2013 12:54 PM, Rita wrote:
hi,
I am trying to find out what compile flags and environment variables were used when compiling the python package. Is there an easy way of figuring this out? perhaps a website which shows the RPM specs?
You can download and unpack src.rpm pf the python package and look at .spec file, it should be there.
----- Original Message ----- From: "Ljubomir Ljubojevic" centos@plnet.rs To: "CentOS mailing list" centos@centos.org Sent: Friday, 9 August, 2013 9:50:21 PM Subject: Re: [CentOS] compile paramaters
On 08/09/2013 12:54 PM, Rita wrote:
hi,
I am trying to find out what compile flags and environment variables were used when compiling the python package. Is there an easy way of figuring this out? perhaps a website which shows the RPM specs?
You can download and unpack src.rpm pf the python package and look at .spec file, it should be there.
Thanks Phillip. I want to build a shared version of python, 2.7.5 onto NFS so other users can use it so I want something the most compatable and without doing a lot of LD_LIBRARY_PATH :-)
It would be cool if I can install RPMs on NFS
On Sat, Aug 10, 2013 at 2:16 AM, Philip Manuel phil@zomojo.com wrote:
----- Original Message ----- From: "Ljubomir Ljubojevic" centos@plnet.rs To: "CentOS mailing list" centos@centos.org Sent: Friday, 9 August, 2013 9:50:21 PM Subject: Re: [CentOS] compile paramaters
On 08/09/2013 12:54 PM, Rita wrote:
hi,
I am trying to find out what compile flags and environment variables were used when compiling the python package. Is there an easy way of figuring this out? perhaps a website which shows the RPM specs?
You can download and unpack src.rpm pf the python package and look at .spec file, it should be there.
-- Ljubomir Ljubojevic (Love is in the Air) PL Computers Serbia, Europe
StarOS, Mikrotik and CentOS/RHEL/Linux consultant _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Hi
I used
export CPPFLAGS=-I/usr/lib64/libffi-3.0.5/include export CFLAGS=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv ./configure --prefix=/usr/local --includedir=/usr/include --enable-unicode=ucs4 --enable-shared --with-system-ffi --with-system-expat --with-valgrind
When compiling python 2.7 _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On 08/10/2013 02:22 PM, Rita wrote:
Thanks Phillip. I want to build a shared version of python, 2.7.5 onto NFS so other users can use it so I want something the most compatable and without doing a lot of LD_LIBRARY_PATH :-)
It would be cool if I can install RPMs on NFS
Please do not top-post, write below our texts.
IUS repository (http://iuscommunity.org/pages/Repos.html) has python27 packages that should be complementary to regular CetnOS 6.x python package (it is not replaced). You might want to check that.
Installing on NFS? You mean to install it on a server that runs NFS daemon? IUS package could be a solution is admins of the server agree.
On Sat, Aug 10, 2013 at 8:47 AM, Ljubomir Ljubojevic centos@plnet.rswrote:
On 08/10/2013 02:22 PM, Rita wrote:
Thanks Phillip. I want to build a shared version of python, 2.7.5 onto
NFS
so other users can use it so I want something the most compatable and without doing a lot of LD_LIBRARY_PATH :-)
It would be cool if I can install RPMs on NFS
Please do not top-post, write below our texts.
IUS repository (http://iuscommunity.org/pages/Repos.html) has python27 packages that should be complementary to regular CetnOS 6.x python package (it is not replaced). You might want to check that.
Installing on NFS? You mean to install it on a server that runs NFS daemon? IUS package could be a solution is admins of the server agree.
-- Ljubomir Ljubojevic (Love is in the Air) PL Computers Serbia, Europe
StarOS, Mikrotik and CentOS/RHEL/Linux consultant _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Sorry about top posting.
No, thats not what I meant.
Instead of installing the RPMs on 40+ servers and having to get the latest version of Numpy (usually we want to bleeding edge), I prefer to have a good version of Python in /nfs/mountpoint and have all my clients mount there.