diff options
author | Matthew LeGendre <legendre1@llnl.gov> | 2015-03-27 13:58:57 -0700 |
---|---|---|
committer | Matthew LeGendre <legendre1@llnl.gov> | 2015-03-27 13:58:57 -0700 |
commit | a4cce9eb69048b082e0233499ec764d7c5abec0c (patch) | |
tree | ec885b6e34a0d95ea183057a305ee1838e999569 | |
parent | af92250c7e0c7fc59cfb4381928ed4a547f2dcf3 (diff) | |
download | spack-a4cce9eb69048b082e0233499ec764d7c5abec0c.tar.gz spack-a4cce9eb69048b082e0233499ec764d7c5abec0c.tar.bz2 spack-a4cce9eb69048b082e0233499ec764d7c5abec0c.tar.xz spack-a4cce9eb69048b082e0233499ec764d7c5abec0c.zip |
Only convert -L<path> to -Wl,-rpath,<path> in compiler scripts if <path> points into the spack install area
This specifically fixes problems with building gcc, as build and system directories were turning in in gcc library rpaths.
-rwxr-xr-x | lib/spack/env/cc | 2 | ||||
-rw-r--r-- | lib/spack/spack/build_environment.py | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lib/spack/env/cc b/lib/spack/env/cc index 19ca31cace..5c431f5325 100755 --- a/lib/spack/env/cc +++ b/lib/spack/env/cc @@ -262,7 +262,7 @@ done # Include all -L's and prefix/whatever dirs in rpath for dir in "${libraries[@]}"; do - [ "$dir" != "." ] && rpaths+=("$dir") + [[ dir = $SPACK_INSTALL* ]] && rpaths+=("$dir") done rpaths+=("$SPACK_PREFIX/lib") rpaths+=("$SPACK_PREFIX/lib64") diff --git a/lib/spack/spack/build_environment.py b/lib/spack/spack/build_environment.py index d11e2e270c..487bb59a8f 100644 --- a/lib/spack/spack/build_environment.py +++ b/lib/spack/spack/build_environment.py @@ -52,6 +52,7 @@ SPACK_NO_PARALLEL_MAKE = 'SPACK_NO_PARALLEL_MAKE' SPACK_ENV_PATH = 'SPACK_ENV_PATH' SPACK_DEPENDENCIES = 'SPACK_DEPENDENCIES' SPACK_PREFIX = 'SPACK_PREFIX' +SPACK_INSTALL = 'SPACK_INSTALL' SPACK_DEBUG = 'SPACK_DEBUG' SPACK_SHORT_SPEC = 'SPACK_SHORT_SPEC' SPACK_DEBUG_LOG_DIR = 'SPACK_DEBUG_LOG_DIR' @@ -125,6 +126,9 @@ def set_build_environment_variables(pkg): # Install prefix os.environ[SPACK_PREFIX] = pkg.prefix + # Install root prefix + os.environ[SPACK_INSTALL] = spack.install_path + # Remove these vars from the environment during build becaus they # can affect how some packages find libraries. We want to make # sure that builds never pull in unintended external dependencies. |