diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-11-07 13:15:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-07 13:15:14 -0800 |
commit | 1d60a6a2edb36632136db8f3547577838bca6a4c (patch) | |
tree | de661c2df567ba75958b689b1edc476b701e4eda /mesonbuild/backend/backends.py | |
parent | d4ecd40613abb6a9de54edca71e0a6fe1c6c8c04 (diff) | |
parent | 76333d2a1e5e5fde5ebece478dae8a22091b5cb9 (diff) | |
download | meson-1d60a6a2edb36632136db8f3547577838bca6a4c.zip meson-1d60a6a2edb36632136db8f3547577838bca6a4c.tar.gz meson-1d60a6a2edb36632136db8f3547577838bca6a4c.tar.bz2 |
Merge pull request #4472 from ftechz/ccrx-support
Add support for Renesas CC-RX toolchain support
Diffstat (limited to 'mesonbuild/backend/backends.py')
-rw-r--r-- | mesonbuild/backend/backends.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py index 370e35b..4040251 100644 --- a/mesonbuild/backend/backends.py +++ b/mesonbuild/backend/backends.py @@ -607,6 +607,8 @@ class Backend: continue if compiler.get_language() == 'd': arg = '-Wl,' + arg + else: + arg = compiler.get_linker_lib_prefix() + arg args.append(arg) return args |