summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorStephen Herbein <stephen272@gmail.com>2016-08-15 16:30:00 -0700
committerStephen Herbein <stephen272@gmail.com>2016-08-18 11:32:19 -0700
commit3445a781ebb8205a44e629568f660e9a5d1d0309 (patch)
tree2bade735a697d2ca34cab931a08ca7d4b191e25a /var
parent7f57405eac19fd2f28d32e7c69348112653ad6e8 (diff)
downloadspack-3445a781ebb8205a44e629568f660e9a5d1d0309.tar.gz
spack-3445a781ebb8205a44e629568f660e9a5d1d0309.tar.bz2
spack-3445a781ebb8205a44e629568f660e9a5d1d0309.tar.xz
spack-3445a781ebb8205a44e629568f660e9a5d1d0309.zip
py-cffi: set LDSHARED env so that rpath is set
py-cffi's .so was being built without the rpath being set. distutils looks at the LDSHARED for which compiler to use to build the final .so. Since it was not set, distutils fell back to the system provided compiler. Setting it forces the shared library to be compiled with the spack compiler (meaning that the rpath is set correctly).
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-cffi/package.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-cffi/package.py b/var/spack/repos/builtin/packages/py-cffi/package.py
index 3c1044783f..7c08e51de8 100644
--- a/var/spack/repos/builtin/packages/py-cffi/package.py
+++ b/var/spack/repos/builtin/packages/py-cffi/package.py
@@ -22,6 +22,8 @@
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
+import os
+
from spack import *
@@ -39,4 +41,12 @@ class PyCffi(Package):
depends_on('libffi')
def install(self, spec, prefix):
+ # This sets the compiler (and flags) that distutils will use
+ # to create the final shared library. It will use the
+ # compiler specified by the environment variable 'CC' for all
+ # other compilation. We are setting the 'LDSHARED" to the
+ # spack compiler wrapper plus a few extra flags necessary for
+ # building the shared library.
+ os.environ['LDSHARED'] = "{0} -shared -pthread".format(spack_cc)
+
python('setup.py', 'install', '--prefix=%s' % prefix)