Re: [stable build from source] Ubuntu 20.04 scintilla not found
Kai Torben Ohlhus <[email protected]>
| Newsgroups | gmane.comp.gnu.octave.maintainers |
|---|---|
| Message-ID | <[email protected]> |
On 6/18/20 9:13 PM, JuanPi wrote:
> As far as I understand these libraries are available, e.g.
>
> $ ldconfig -p | grep Qt5Network
> libQt5Network.so.5 (libc6,x86-64) =>
> /lib/x86_64-linux-gnu/libQt5Network.so.5
>
> but configure is not finding them
>
> $ grep cannot config.log
> /usr/bin/ld: cannot find -lpthreads
Juan,
To me it looks a bit suspicious, that your libraries shall be deployed
in root "/lib", rather than "/usr/lib". Can you check where they really
are? On an Ubuntu 18.04 system of mine:
ldconfig -p | grep libQt5Network
libQt5Network.so.5 (libc6,x86-64) =>
/usr/lib/x86_64-linux-gnu/libQt5Network.so.5
find /usr -name libQt5Network.so.5
/usr/lib/x86_64-linux-gnu/libQt5Network.so.5
Kai