* [Buildroot] aplay fails because of alsa-lib build issue with uclibc and versioned symbols - (Solution included)
[not found] <mailman.1.1203278405.28189.buildroot@uclibc.org>
@ 2008-02-21 1:22 ` Gururaja Hebbar K R
2008-07-16 14:47 ` Julien Boibessot
0 siblings, 1 reply; 3+ messages in thread
From: Gururaja Hebbar K R @ 2008-02-21 1:22 UTC (permalink / raw)
To: buildroot
Hi,
i had tried aplay before built statically with CodeSourcery toolchain
and it worked successfully on my arm board.
when i tried aplay built shared with buildroot uclibc arm926ejs
toolchain it failed with below error
mnt/mmc # aplay /home/default/10Sec_44.1K.wav
Playing WAVE '/home/default/10Sec_44.1K.wav' : Signed 16 bit Little
Endian, Rate 44100 Hz, Stereo
aplay: set_params:1012: unable to install sw params:
start_mode: DATA
xrun_mode: STOP
tstamp_mode: NONE
period_step: 1
sleep_min: 0
avail_min: 0
xfer_align: 10
silence_threshold: 0
silence_size: 0
boundary: 1073741824
/mnt/mmc #
When i searched on the internet for below error, i found that this error
is mainly related to alsa-lib and uclibc and it requires adding
--with-versioned=no as an option to alsa-lib ./configure.
http://article.gmane.org/gmane.linux.alsa.devel/50595
i added the same to alsa-lib.mk and now its working fine.
./configure \
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
--prefix=/usr \
--with-versioned=no \
--sysconfdir=/etc \
--enable-shared \
--enable-static \
--disable-docs \
$(DISABLE_NLS) \
Kindly can someone shed some light on this and if required can someone
add patch to alsa-lib make file.
Thanks in advance
Regards
Gururaja
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] aplay fails because of alsa-lib build issue with uclibc and versioned symbols - (Solution included)
2008-02-21 1:22 ` [Buildroot] aplay fails because of alsa-lib build issue with uclibc and versioned symbols - (Solution included) Gururaja Hebbar K R
@ 2008-07-16 14:47 ` Julien Boibessot
2008-07-17 9:54 ` softa at ttechgroup.com
0 siblings, 1 reply; 3+ messages in thread
From: Julien Boibessot @ 2008-07-16 14:47 UTC (permalink / raw)
To: buildroot
Hi,
I was recently faced to the same problem Gururaja encountered some times
ago:
(my config is buildroot / uclibc / arm920)
Gururaja Hebbar K R a ?crit :
> when i tried aplay built shared with buildroot uclibc arm926ejs
> toolchain it failed with below error
>
> mnt/mmc # aplay /home/default/10Sec_44.1K.wav
> Playing WAVE '/home/default/10Sec_44.1K.wav' : Signed 16 bit Little
> Endian, Rate 44100 Hz, Stereo
> aplay: set_params:1012: unable to install sw params:
> start_mode: DATA
> ...
>
aplay fails with a strange error...
> When i searched on the internet for below error, i found that this error
> is mainly related to alsa-lib and uclibc and it requires adding
> --with-versioned=no as an option to alsa-lib ./configure.
>
> http://article.gmane.org/gmane.linux.alsa.devel/50595
>
> i added the same to alsa-lib.mk and now its working fine.
>
> ./configure \
> --target=$(GNU_TARGET_NAME) \
> --host=$(GNU_TARGET_NAME) \
> --build=$(GNU_HOST_NAME) \
> --prefix=/usr \
> --with-versioned=no \
> --sysconfdir=/etc \
> --enable-shared \
> --enable-static \
> --disable-docs \
> $(DISABLE_NLS) \
>
>
Gururaja suggested to add "--with-versioned=no" to alsa-lib configuration.
It was the solution for me too, even if I have no idea why yet.
Do the "non-arm" people have the same problem ? Is it related to uclibc
for all architectures ?
Should I open a bug report to see this problem corrected ?
Regards,
Julien
http://www.armadeus.com
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] aplay fails because of alsa-lib build issue with uclibc and versioned symbols - (Solution included)
2008-07-16 14:47 ` Julien Boibessot
@ 2008-07-17 9:54 ` softa at ttechgroup.com
0 siblings, 0 replies; 3+ messages in thread
From: softa at ttechgroup.com @ 2008-07-17 9:54 UTC (permalink / raw)
To: buildroot
----- Original Message -----
From: "Julien Boibessot" <julien.boibessot@free.fr>
To: "Gururaja Hebbar K R" <gururajakr@sanyo.co.in>
Cc: <buildroot@uclibc.org>
Sent: Wednesday, July 16, 2008 5:47 PM
Subject: Re: [Buildroot] aplay fails because of alsa-lib build issue with
uclibc and versioned symbols - (Solution included)
> Hi,
>
> I was recently faced to the same problem Gururaja encountered some times
> ago:
> (my config is buildroot / uclibc / arm920)
>
> Gururaja Hebbar K R a ?crit :
>> when i tried aplay built shared with buildroot uclibc arm926ejs
>> toolchain it failed with below error
>>
>> mnt/mmc # aplay /home/default/10Sec_44.1K.wav
>> Playing WAVE '/home/default/10Sec_44.1K.wav' : Signed 16 bit Little
>> Endian, Rate 44100 Hz, Stereo
>> aplay: set_params:1012: unable to install sw params:
>> start_mode: DATA
>> ...
>>
> aplay fails with a strange error...
>> When i searched on the internet for below error, i found that this error
>> is mainly related to alsa-lib and uclibc and it requires adding
>> --with-versioned=no as an option to alsa-lib ./configure.
>>
>> http://article.gmane.org/gmane.linux.alsa.devel/50595
>>
>> i added the same to alsa-lib.mk and now its working fine.
>>
>> ./configure \
>> --target=$(GNU_TARGET_NAME) \
>> --host=$(GNU_TARGET_NAME) \
>> --build=$(GNU_HOST_NAME) \
>> --prefix=/usr \
>> --with-versioned=no \
>> --sysconfdir=/etc \
>> --enable-shared \
>> --enable-static \
>> --disable-docs \
>> $(DISABLE_NLS) \
>>
>>
> Gururaja suggested to add "--with-versioned=no" to alsa-lib configuration.
> It was the solution for me too, even if I have no idea why yet.
>
> Do the "non-arm" people have the same problem ? Is it related to uclibc
> for all architectures ?
Yes! x86 have the same problem too and "--with-versioned=no" solves the
problem.
>
> Should I open a bug report to see this problem corrected ?
>
> Regards,
> Julien
> http://www.armadeus.com
> _______________________________________________
> buildroot mailing list
> buildroot at uclibc.org
> http://busybox.net/mailman/listinfo/buildroot
Regards,
Assen
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-07-17 9:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <mailman.1.1203278405.28189.buildroot@uclibc.org>
2008-02-21 1:22 ` [Buildroot] aplay fails because of alsa-lib build issue with uclibc and versioned symbols - (Solution included) Gururaja Hebbar K R
2008-07-16 14:47 ` Julien Boibessot
2008-07-17 9:54 ` softa at ttechgroup.com
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox