diff options
author | Matthias Klumpp <matthias@tenstral.net> | 2017-02-28 14:41:39 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-03-21 07:30:21 -0400 |
commit | d9cabe9f0ca6fb06808c1d5cf5206a7c5158517e (patch) | |
tree | 1f5dde9aad97dd3b1b8fa3aff4233ae4456714a9 /mesonbuild/compilers.py | |
parent | 80f870c4bbd3151ee88e39b9b8b5504817f84801 (diff) | |
download | meson-d9cabe9f0ca6fb06808c1d5cf5206a7c5158517e.zip meson-d9cabe9f0ca6fb06808c1d5cf5206a7c5158517e.tar.gz meson-d9cabe9f0ca6fb06808c1d5cf5206a7c5158517e.tar.bz2 |
d: Handle linker search paths correctly for non-GNU compilers
Diffstat (limited to 'mesonbuild/compilers.py')
-rw-r--r-- | mesonbuild/compilers.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py index e600149..f8c3f6b 100644 --- a/mesonbuild/compilers.py +++ b/mesonbuild/compilers.py @@ -1861,6 +1861,16 @@ class DCompiler(Compiler): # translate library link flag dcargs.append('-L' + arg) continue + elif arg.startswith('-L/') or arg.startswith('-L./'): + # we need to handle cases where -L is set by e.g. a pkg-config + # setting to select a linker search path. We can however not + # unconditionally prefix '-L' with '-L' because the user might + # have set this flag too to do what it is intended to for this + # compiler (pass flag through to the linker) + # Hence, we guess here whether the flag was intended to pass + # a linker search path. + dcargs.append('-L' + arg) + continue dcargs.append(arg) return dcargs |