Github messages for voidlinux
 help / color / mirror / Atom feed
* [ISSUE] qbittorrent-nox: symbol lookup error on launch
@ 2020-08-27 17:06 ThatNerdyPikachu
  2020-08-27 17:45 ` ericonr
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: ThatNerdyPikachu @ 2020-08-27 17:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1077 bytes --]

New issue by ThatNerdyPikachu on void-packages repository

https://github.com/void-linux/void-packages/issues/24512

Description:
<!-- Don't request update of package. We have a script for that. https://alpha.de.repo.voidlinux.org/void-updates/void-updates.txt . However, a quality pull request may help. -->
### System

* xuname:  
  Void 5.7.17_1 x86_64 GenuineIntel notuptodate rrFF
* package:  
  qbittorrent-nox-4.2.5_2

### Expected behavior

The program launches

### Actual behavior

```
qbittorrent-nox: symbol lookup error: qbittorrent-nox: undefined symbol: _ZNK10libtorrent5entry4dictB5cxx11Ev
```

### Steps to reproduce the behavior

```
$ sudo xbps-install -S qbittorrent-nox
...

$ qbittorrent-nox
qbittorrent-nox: symbol lookup error: qbittorrent-nox: undefined symbol: _ZNK10libtorrent5entry4dictB5cxx11Ev
```

Additional info:

I have 2 libtorrent libraries in /usr/lib:
```
/usr/lib/libtorrent-rasterbar.so.10.0.0
/usr/lib/libtorrent-rasterbar.so.10
```

`qbittorrent-nox` is linking against `libtorrent-rasterbar.so.10`

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
@ 2020-08-27 17:45 ` ericonr
  2020-08-27 17:54 ` pullmoll
                   ` (20 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2020-08-27 17:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 348 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682095697

Comment:
Do you know how to build packages using `xbps-src`? Might be a good idea to rebuild qbittorrent and try to install. It probably requires a rebuild. I'm trying it out right now, if it works I can make a PR.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
  2020-08-27 17:45 ` ericonr
@ 2020-08-27 17:54 ` pullmoll
  2020-08-27 17:57 ` ericonr
                   ` (19 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: pullmoll @ 2020-08-27 17:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 622 bytes --]

New comment by pullmoll on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682100861

Comment:
FWIW I get a similar error for qbittorrent from my repository where I built everything using gcc10. The error here is:
```
qbittorrent: symbol lookup error: qbittorrent: undefined symbol: _ZN10libtorrent5entryC1ESt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES0_NS_3aux12strview_lessESaISt4pairIKS7_S0_EEE
```
I'll rebuild qbittorrent once more, because I think it was built before the libtorrent revbump for libressl-3.1.3, and see if that solves the problem.


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
  2020-08-27 17:45 ` ericonr
  2020-08-27 17:54 ` pullmoll
@ 2020-08-27 17:57 ` ericonr
  2020-08-27 17:59 ` ThatNerdyPikachu
                   ` (18 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2020-08-27 17:57 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 299 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682102014

Comment:
@pullmoll rebuilding didn't work for me, it errored out. I'm trying to fix by reverting `libtorret-rasterbar`. Otherwise we might need to patch qbittorrent.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (2 preceding siblings ...)
  2020-08-27 17:57 ` ericonr
@ 2020-08-27 17:59 ` ThatNerdyPikachu
  2020-08-27 18:05 ` ericonr
                   ` (17 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ThatNerdyPikachu @ 2020-08-27 17:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 336 bytes --]

New comment by ThatNerdyPikachu on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682103170

Comment:
reverting `libtorrent-rasterbar` might also fix an issue with `deluge` where calls to `libtorrent::move_storage` fail since the bindings signatures don't match the libraries.

maybe.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (3 preceding siblings ...)
  2020-08-27 17:59 ` ThatNerdyPikachu
@ 2020-08-27 18:05 ` ericonr
  2020-08-27 18:06 ` ThatNerdyPikachu
                   ` (16 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2020-08-27 18:05 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 238 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682106192

Comment:
@ThatNerdyPikachu can you check if this fixes deluge as well? If not, I can rebuild it as well.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (4 preceding siblings ...)
  2020-08-27 18:05 ` ericonr
@ 2020-08-27 18:06 ` ThatNerdyPikachu
  2020-08-27 18:08 ` ericonr
                   ` (15 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ThatNerdyPikachu @ 2020-08-27 18:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 259 bytes --]

New comment by ThatNerdyPikachu on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682107017

Comment:
@ericonr Sure thing.

(I should build libtorrent on my end from your repo... right? time to look at docs)

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (5 preceding siblings ...)
  2020-08-27 18:06 ` ThatNerdyPikachu
@ 2020-08-27 18:08 ` ericonr
  2020-08-27 18:09 ` ThatNerdyPikachu
                   ` (14 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2020-08-27 18:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 392 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682107644

Comment:
> (I should build libtorrent on my end from your repo... right? time to look at docs)

Technically speaking you can just downgrade the package, it should be in `/var/cache/xbps`... https://docs.voidlinux.org/xbps/advanced-usage.html#via-xdowngrade

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (6 preceding siblings ...)
  2020-08-27 18:08 ` ericonr
@ 2020-08-27 18:09 ` ThatNerdyPikachu
  2020-08-27 18:19 ` ThatNerdyPikachu
                   ` (13 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ThatNerdyPikachu @ 2020-08-27 18:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 255 bytes --]

New comment by ThatNerdyPikachu on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682108110

Comment:
Not in my case... I purge xbps cache daily, for some stupid reason. (I really need to stop doing that.)

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (7 preceding siblings ...)
  2020-08-27 18:09 ` ThatNerdyPikachu
@ 2020-08-27 18:19 ` ThatNerdyPikachu
  2020-08-27 18:21 ` ericonr
                   ` (12 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ThatNerdyPikachu @ 2020-08-27 18:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 228 bytes --]

New comment by ThatNerdyPikachu on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682112968

Comment:
So should I build with that commit reverted + test deluge (and qbittorrent)?

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (8 preceding siblings ...)
  2020-08-27 18:19 ` ThatNerdyPikachu
@ 2020-08-27 18:21 ` ericonr
  2020-08-27 18:22 ` ericonr
                   ` (11 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2020-08-27 18:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 213 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682113902

Comment:
yes! I have already tested qbittorrent, but someone else doesn't hurt.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (9 preceding siblings ...)
  2020-08-27 18:21 ` ericonr
@ 2020-08-27 18:22 ` ericonr
  2020-08-27 18:22 ` ThatNerdyPikachu
                   ` (10 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2020-08-27 18:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 225 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682114191

Comment:
If you want, you can just clone from my fork directly and use the specific branch.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (10 preceding siblings ...)
  2020-08-27 18:22 ` ericonr
@ 2020-08-27 18:22 ` ThatNerdyPikachu
  2020-08-27 18:23 ` pullmoll
                   ` (9 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ThatNerdyPikachu @ 2020-08-27 18:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 260 bytes --]

New comment by ThatNerdyPikachu on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682114532

Comment:
Sure.

p.s. does xbps-bootstrap + building a package clutter up the system in any way? or is it contained?

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (11 preceding siblings ...)
  2020-08-27 18:22 ` ThatNerdyPikachu
@ 2020-08-27 18:23 ` pullmoll
  2020-08-27 18:25 ` pullmoll
                   ` (8 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: pullmoll @ 2020-08-27 18:23 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 269 bytes --]

New comment by pullmoll on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682114899

Comment:
I also get an error trying to build qbittorrent with the current libtorrent. I guess we should revert the most recent update.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (12 preceding siblings ...)
  2020-08-27 18:23 ` pullmoll
@ 2020-08-27 18:25 ` pullmoll
  2020-08-27 18:26 ` ericonr
                   ` (7 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: pullmoll @ 2020-08-27 18:25 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 323 bytes --]

New comment by pullmoll on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682114899

Comment:
I also get an error trying to build qbittorrent with the current libtorrent. I guess we should revert the most recent update.
Err.. actually libtorrent-rasterbar, not libtorrent.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (13 preceding siblings ...)
  2020-08-27 18:25 ` pullmoll
@ 2020-08-27 18:26 ` ericonr
  2020-08-27 18:26 ` pullmoll
                   ` (6 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2020-08-27 18:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 502 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682116205

Comment:
@ThatNerdyPikachu 

> p.s. does xbps-bootstrap + building a package clutter up the system in any way? or is it contained?

Just do

```
$ cd void-packages
$ ./xbps-src binary-bootstrap
$ ./xbps-src pkg libtorrent-rasterbar
$ xi libtorrent-rasterbar # this one comes from xtools
```

It is self contained.

@pullmoll that's what I have in my PR.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (14 preceding siblings ...)
  2020-08-27 18:26 ` ericonr
@ 2020-08-27 18:26 ` pullmoll
  2020-08-27 19:36 ` ThatNerdyPikachu
                   ` (5 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: pullmoll @ 2020-08-27 18:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 396 bytes --]

New comment by pullmoll on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682114899

Comment:
I also get an error trying to build qbittorrent with the current libtorrent. I guess we should revert the most recent update.
Err.. actually libtorrent-rasterbar, not libtorrent. This seems to be some kind of ABI break w/o a necessary so version bump.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (15 preceding siblings ...)
  2020-08-27 18:26 ` pullmoll
@ 2020-08-27 19:36 ` ThatNerdyPikachu
  2020-08-27 19:37 ` ThatNerdyPikachu
                   ` (4 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ThatNerdyPikachu @ 2020-08-27 19:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1378 bytes --]

New comment by ThatNerdyPikachu on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682150476

Comment:
qbit works.
Deluge will need a rebuild before I can confirm it works, how would I go about doing that @ericonr ?

Deluge stacktrace:
```
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/deluge/_libtorrent.py", line 23, in <module>
    import deluge.libtorrent as lt
ModuleNotFoundError: No module named 'deluge.libtorrent'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/bin/deluged", line 11, in <module>
    load_entry_point('deluge==2.0.3', 'console_scripts', 'deluged')()
  File "/usr/lib/python3.8/site-packages/deluge/core/daemon_entry.py", line 90, in start_daemon
    from deluge.core.daemon import is_daemon_running
  File "/usr/lib/python3.8/site-packages/deluge/core/daemon.py", line 22, in <module>
    from deluge.core.core import Core
  File "/usr/lib/python3.8/site-packages/deluge/core/core.py", line 28, in <module>
    from deluge._libtorrent import LT_VERSION, lt
  File "/usr/lib/python3.8/site-packages/deluge/_libtorrent.py", line 25, in <module>
    import libtorrent as lt
ImportError: /usr/lib/python3.8/site-packages/libtorrent.so: undefined symbol: _ZNK10libtorrent5entry4dictEv
```

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (16 preceding siblings ...)
  2020-08-27 19:36 ` ThatNerdyPikachu
@ 2020-08-27 19:37 ` ThatNerdyPikachu
  2020-08-27 19:54 ` ThatNerdyPikachu
                   ` (3 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ThatNerdyPikachu @ 2020-08-27 19:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1440 bytes --]

New comment by ThatNerdyPikachu on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682150476

Comment:
qbit works.
Deluge will need a rebuild before I can confirm it works, how would I go about doing that @ericonr ? Is it just as simple as `./xbps-src pkg deluge && xi deluge`?

Deluge stacktrace:
```
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/deluge/_libtorrent.py", line 23, in <module>
    import deluge.libtorrent as lt
ModuleNotFoundError: No module named 'deluge.libtorrent'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/bin/deluged", line 11, in <module>
    load_entry_point('deluge==2.0.3', 'console_scripts', 'deluged')()
  File "/usr/lib/python3.8/site-packages/deluge/core/daemon_entry.py", line 90, in start_daemon
    from deluge.core.daemon import is_daemon_running
  File "/usr/lib/python3.8/site-packages/deluge/core/daemon.py", line 22, in <module>
    from deluge.core.core import Core
  File "/usr/lib/python3.8/site-packages/deluge/core/core.py", line 28, in <module>
    from deluge._libtorrent import LT_VERSION, lt
  File "/usr/lib/python3.8/site-packages/deluge/_libtorrent.py", line 25, in <module>
    import libtorrent as lt
ImportError: /usr/lib/python3.8/site-packages/libtorrent.so: undefined symbol: _ZNK10libtorrent5entry4dictEv
```

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (17 preceding siblings ...)
  2020-08-27 19:37 ` ThatNerdyPikachu
@ 2020-08-27 19:54 ` ThatNerdyPikachu
  2020-08-27 20:06 ` ThatNerdyPikachu
                   ` (2 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ThatNerdyPikachu @ 2020-08-27 19:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 247 bytes --]

New comment by ThatNerdyPikachu on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682158541

Comment:
Alright, a rebuild of deluge makes it launch again, testing the move storage functionality now.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (18 preceding siblings ...)
  2020-08-27 19:54 ` ThatNerdyPikachu
@ 2020-08-27 20:06 ` ThatNerdyPikachu
  2020-08-27 21:34 ` ericonr
  2020-08-28  8:43 ` [ISSUE] [CLOSED] " pullmoll
  21 siblings, 0 replies; 23+ messages in thread
From: ThatNerdyPikachu @ 2020-08-27 20:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 181 bytes --]

New comment by ThatNerdyPikachu on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682164518

Comment:
Everything works with #24514.

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (19 preceding siblings ...)
  2020-08-27 20:06 ` ThatNerdyPikachu
@ 2020-08-27 21:34 ` ericonr
  2020-08-28  8:43 ` [ISSUE] [CLOSED] " pullmoll
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2020-08-27 21:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 176 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/24512#issuecomment-682202834

Comment:
Great! Thanks for reporting it c:

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [ISSUE] [CLOSED] qbittorrent-nox: symbol lookup error on launch
  2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
                   ` (20 preceding siblings ...)
  2020-08-27 21:34 ` ericonr
@ 2020-08-28  8:43 ` pullmoll
  21 siblings, 0 replies; 23+ messages in thread
From: pullmoll @ 2020-08-28  8:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1080 bytes --]

Closed issue by ThatNerdyPikachu on void-packages repository

https://github.com/void-linux/void-packages/issues/24512

Description:
<!-- Don't request update of package. We have a script for that. https://alpha.de.repo.voidlinux.org/void-updates/void-updates.txt . However, a quality pull request may help. -->
### System

* xuname:  
  Void 5.7.17_1 x86_64 GenuineIntel notuptodate rrFF
* package:  
  qbittorrent-nox-4.2.5_2

### Expected behavior

The program launches

### Actual behavior

```
qbittorrent-nox: symbol lookup error: qbittorrent-nox: undefined symbol: _ZNK10libtorrent5entry4dictB5cxx11Ev
```

### Steps to reproduce the behavior

```
$ sudo xbps-install -S qbittorrent-nox
...

$ qbittorrent-nox
qbittorrent-nox: symbol lookup error: qbittorrent-nox: undefined symbol: _ZNK10libtorrent5entry4dictB5cxx11Ev
```

Additional info:

I have 2 libtorrent libraries in /usr/lib:
```
/usr/lib/libtorrent-rasterbar.so.10.0.0
/usr/lib/libtorrent-rasterbar.so.10
```

`qbittorrent-nox` is linking against `libtorrent-rasterbar.so.10`

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2020-08-28  8:43 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-27 17:06 [ISSUE] qbittorrent-nox: symbol lookup error on launch ThatNerdyPikachu
2020-08-27 17:45 ` ericonr
2020-08-27 17:54 ` pullmoll
2020-08-27 17:57 ` ericonr
2020-08-27 17:59 ` ThatNerdyPikachu
2020-08-27 18:05 ` ericonr
2020-08-27 18:06 ` ThatNerdyPikachu
2020-08-27 18:08 ` ericonr
2020-08-27 18:09 ` ThatNerdyPikachu
2020-08-27 18:19 ` ThatNerdyPikachu
2020-08-27 18:21 ` ericonr
2020-08-27 18:22 ` ericonr
2020-08-27 18:22 ` ThatNerdyPikachu
2020-08-27 18:23 ` pullmoll
2020-08-27 18:25 ` pullmoll
2020-08-27 18:26 ` ericonr
2020-08-27 18:26 ` pullmoll
2020-08-27 19:36 ` ThatNerdyPikachu
2020-08-27 19:37 ` ThatNerdyPikachu
2020-08-27 19:54 ` ThatNerdyPikachu
2020-08-27 20:06 ` ThatNerdyPikachu
2020-08-27 21:34 ` ericonr
2020-08-28  8:43 ` [ISSUE] [CLOSED] " pullmoll

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).