Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 700430 - media-plugins/alsaequal-0.7.1 - Failed to load plugin "caps.so": caps.so: cannot open shared object file: No such file or directory
Summary: media-plugins/alsaequal-0.7.1 - Failed to load plugin "caps.so": caps.so: can...
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: David Racine
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-11-18 00:50 UTC by Christophe PEREZ
Modified: 2020-07-17 13:30 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Christophe PEREZ 2019-11-18 00:50:46 UTC
As explained in http://wine.1045685.n8.nabble.com/Bug-30580-New-Wine-incompatible-with-alsaequal-tp5682958p5693919.html
Something doesn't work with alsaequal and app 32 bits

$ cat test.c 
#include <alsa/asoundlib.h>
#include <stdio.h>

int main(int argc, char **argv)
{
    snd_pcm_t *handle;

    if(snd_pcm_open(&handle, "default", SND_PCM_STREAM_PLAYBACK, 0) < 0){
        printf("snd_pcm_open failed\n");
        return 1;
    }

    snd_pcm_close(handle);

    printf("success!\n");

    return 0;
} 
$ gcc -Wall -m32 -lasound -o test test.c
$ ./test 
Failed to load plugin "caps.so": caps.so: cannot open shared object file: No such file or directory

All works fine with 64 bits.
Comment 1 kosshi 2020-07-17 07:27:32 UTC
Same issue here, as a workaround, setting LADSPA_PATH to "/usr/lib32/ladspa/" will allow 32bit programs to work.
Comment 2 Christophe PEREZ 2020-07-17 13:30:26 UTC
(In reply to kosshi from comment #1)
> Same issue here, as a workaround, setting LADSPA_PATH to
> "/usr/lib32/ladspa/" will allow 32bit programs to work.

Very usefull ! thanks.