[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: lzlib Makefile doesn't build shared version
From: |
Adam Tuja |
Subject: |
Re: lzlib Makefile doesn't build shared version |
Date: |
Mon, 27 Jul 2020 19:08:36 +0200 |
Hello,
In `Makefile.in` and subsequently in `Makefile` there is wrong option passed to the linker - it's `--soname` and should be `-soname`.
```
$ ld --help | grep soname
-h FILENAME, -soname FILENAME
```
It seems to work anyways but formally the option has one hyphen.