diff options
author | Allan McRae <allan@archlinux.org> | 2009-01-01 18:32:05 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-01-03 07:17:15 +0100 |
commit | 1cc8ad6112ed07a71f356a6bb0f06f117b36b3b2 (patch) | |
tree | 8d20f9f4c643fc35f3a2b16b7f5bfb994d854d8e /doc | |
parent | 8f26bb9052fe1bb131d2062da4fcd917fc9ad4da (diff) | |
download | pacman-1cc8ad6112ed07a71f356a6bb0f06f117b36b3b2.tar.gz pacman-1cc8ad6112ed07a71f356a6bb0f06f117b36b3b2.tar.xz |
makepkg: Add support for specifying LDFLAGS
Provide support for specifying LDFLAGS within makepkg.conf but leaves
this undefined by default. Fixes FS#12542.
Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/makepkg.conf.5.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/makepkg.conf.5.txt b/doc/makepkg.conf.5.txt index 8b3665b0..044c69ea 100644 --- a/doc/makepkg.conf.5.txt +++ b/doc/makepkg.conf.5.txt @@ -61,6 +61,11 @@ Options **CXXFLAGS=**"cxxflags":: Flags used for the C++ compiler; see CFLAGS for more info. +**LDFLAGS=**"ldflags":: + Flags used for the linker. Several options may be specified with common + usage resembling ``-Wl,--hash-style=gnu``. Read ld(1) for more details on + available linker flags. + **MAKEFLAGS=**"makeflags":: This is often used to set the number of jobs used, for example, `-j2`. Other flags that make accepts can also be passed. |