[alsa-devel] developing audio with ALSA
Hi
I'm developing audio application using ALSA library. My target platform is ARM platform baseboard. I use GNU toolchain cross compiler as you can see from the following message:
arm-none-linux-gnueabi-gcc -lasound -g -O2 -I./alsa-lib-1.0.17rc2/include -o pcm pcm.c /usr/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.0/../../../../arm-none-linux-gnueabi/bin/ld: cannot find -lasound collect2: ld returned 1 exit status make: *** [versatile] Error 1
I know that is because the linker cannot find the asound library. Should I cross compiling ALSA driver/lib/utils first?
Henry ===================================================================================================================================== The privileged confidential information contained in this email is intended for use only by the addressees as indicated by the original sender of this email. If you are not the addressee indicated in this email or are not responsible for delivery of the email to such a person, please kindly reply to the sender indicating this fact and delete all copies of it from your computer and network server immediately. Your cooperation is highly appreciated. It is advised that any unauthorized use of confidential information of RichWave is strictly prohibited; and any information in this email irrelevant to the official business of RichWave shall be deemed as neither given nor endorsed by RichWave.
Henry Ho wrote:
Hi
I'm developing audio application using ALSA library. My target platform is ARM platform baseboard. I use GNU toolchain cross compiler as you can see from the following message:
arm-none-linux-gnueabi-gcc -lasound -g -O2 -I./alsa-lib-1.0.17rc2/include -o pcm pcm.c /usr/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.0/../../../../arm-none-linux-gnueabi/bin/ld: cannot find -lasound collect2: ld returned 1 exit status make: *** [versatile] Error 1
I know that is because the linker cannot find the asound library. Should I cross compiling ALSA driver/lib/utils first?
The drivers will possibly already be in your kernel, and the utils will help you initialise your sound hardware properly (set volumes, switches etc.).
And the library, well, you defo need that :)
Col
participants (2)
-
Colin Guthrie
-
Henry Ho