diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-03-15 22:33:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-15 22:33:12 +0200 |
commit | c5572056953e75fbbf03973ee207a4556449edca (patch) | |
tree | 637bb4dbfd5de226bd035edb8abc10072728544a /docs | |
parent | 1bb66d15684aa694b88a62e33159f8cfee16ef25 (diff) | |
parent | 20f8e472212d8aa11fdf073a4e04da65f3d702d5 (diff) | |
download | meson-c5572056953e75fbbf03973ee207a4556449edca.zip meson-c5572056953e75fbbf03973ee207a4556449edca.tar.gz meson-c5572056953e75fbbf03973ee207a4556449edca.tar.bz2 |
Merge pull request #6779 from dcbaker/gdc-linker-args
Allow setting linker for GDC as well as LDC
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/snippets/ldc_linker_override.md | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/markdown/snippets/ldc_linker_override.md b/docs/markdown/snippets/ldc_linker_override.md index fa124ba..2eab958 100644 --- a/docs/markdown/snippets/ldc_linker_override.md +++ b/docs/markdown/snippets/ldc_linker_override.md @@ -1,5 +1,7 @@ -## Support for overiding the linker with ldc +## Support for overiding the linker with ldc and gdc -LDC (the llvm D compiler) now honors D_LD linker variable (or d_ld in the cross -file) and is able to pick differnt linkers. ld.bfd, ld.gold, ld.lld, ld64, -link, and lld-link are currently supported. +LDC (the llvm D compiler) and GDC (The Gnu D Compiler) now honor D_LD linker +variable (or d_ld in the cross file) and is able to pick differnt linkers. + +GDC supports all of the same values as GCC, LDC supports ld.bfd, ld.gold, +ld.lld, ld64, link, and lld-link. |