* where to get snd_pcm_hardware info when usb audio device plug in?
@ 2013-08-28 13:18 loody
2013-08-28 14:22 ` Clemens Ladisch
0 siblings, 1 reply; 7+ messages in thread
From: loody @ 2013-08-28 13:18 UTC (permalink / raw)
To: alsa-devel
hi all:
is it possible to get snd_pcm_hardware information in /proc, /sys or
anywhere when usb audio device plug in?
if no, is there api I can take in usermode to get snd_pcm_hardware of
this usb audio device?
--
Thanks for your great help,
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: where to get snd_pcm_hardware info when usb audio device plug in?
2013-08-28 13:18 where to get snd_pcm_hardware info when usb audio device plug in? loody
@ 2013-08-28 14:22 ` Clemens Ladisch
2013-08-29 3:53 ` loody
0 siblings, 1 reply; 7+ messages in thread
From: Clemens Ladisch @ 2013-08-28 14:22 UTC (permalink / raw)
To: loody; +Cc: alsa-devel
loody wrote:
> is it possible to get snd_pcm_hardware information in /proc, /sys or
> anywhere when usb audio device plug in?
>
> if no, is there api I can take in usermode to get snd_pcm_hardware of
> this usb audio device?
Something like this?
http://download.atmark-techno.com/misc/demos/usb-audio-a500-howto/hw_params.c
Regards,
Clemens
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: where to get snd_pcm_hardware info when usb audio device plug in?
2013-08-28 14:22 ` Clemens Ladisch
@ 2013-08-29 3:53 ` loody
2013-09-08 8:25 ` loody
0 siblings, 1 reply; 7+ messages in thread
From: loody @ 2013-08-29 3:53 UTC (permalink / raw)
To: Clemens Ladisch; +Cc: alsa-devel
hi clements:
2013/8/28 Clemens Ladisch <clemens@ladisch.de>:
> loody wrote:
>> is it possible to get snd_pcm_hardware information in /proc, /sys or
>> anywhere when usb audio device plug in?
>>
>> if no, is there api I can take in usermode to get snd_pcm_hardware of
>> this usb audio device?
>
> Something like this?
> http://download.atmark-techno.com/misc/demos/usb-audio-a500-howto/hw_params.c
I download the file and
1. cross-compile it with alsa-lib-1.0.23
but I get below message
# ./hw_params
no soundcards found...no soundcards found...
but in my /proc/asound/cards, there seems a card exist.
# cat /proc/asound/cards
0 [default ]: USB-Audio - Microsoft LifeChat LX-3000
Microsoft LifeChat LX-3000 at usb-1, full speed
Did I miss anything need to pay attention?
thanks for your kind help,
>
>
> Regards,
> Clemens
--
Regards,
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: where to get snd_pcm_hardware info when usb audio device plug in?
2013-08-29 3:53 ` loody
@ 2013-09-08 8:25 ` loody
2013-09-08 12:28 ` Clemens Ladisch
0 siblings, 1 reply; 7+ messages in thread
From: loody @ 2013-09-08 8:25 UTC (permalink / raw)
To: Clemens Ladisch; +Cc: alsa-devel
hi Clements and all:
2013/8/29 loody <miloody@gmail.com>:
> hi clements:
>
> 2013/8/28 Clemens Ladisch <clemens@ladisch.de>:
>> loody wrote:
>>> is it possible to get snd_pcm_hardware information in /proc, /sys or
>>> anywhere when usb audio device plug in?
>>>
>>> if no, is there api I can take in usermode to get snd_pcm_hardware of
>>> this usb audio device?
>>
>> Something like this?
>> http://download.atmark-techno.com/misc/demos/usb-audio-a500-howto/hw_params.c
> I download the file and
> 1. cross-compile it with alsa-lib-1.0.23
>
> but I get below message
> # ./hw_params
> no soundcards found...no soundcards found...
Sorry, it is my fault :)
I didn't create /dev/snd/xxxx nodes for hw_params to access.
after creating /dev/snd/xxx nodes, I get another problem.
hw_params will try to access alsa.conf, which is located my host machine.
# ./hw_params
PLAYBACK
ALSA lib conf.c:3601:(snd_config_update_r) Cannot access file
/media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/build/share/alsa/alsa.conf
ALSA lib control.c:902:(snd_ctl_open_noupdate) Invalid CTL hw:0
control open (0): No such file or directoryCAPTURE
ALSA lib conf.c:3601:(snd_config_update_r) Cannot access file
/media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/build/share/alsa/alsa.conf
ALSA lib control.c:902:(snd_ctl_open_noupdate) Invalid CTL hw:0
control open (0): No such file or directory/
#
Except create the same location on target board, is there any compile
option I can use to change the path of alsa.conf for hw_params to look
for?
appreciate your help,
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: where to get snd_pcm_hardware info when usb audio device plug in?
2013-09-08 8:25 ` loody
@ 2013-09-08 12:28 ` Clemens Ladisch
2013-09-09 8:12 ` loody
0 siblings, 1 reply; 7+ messages in thread
From: Clemens Ladisch @ 2013-09-08 12:28 UTC (permalink / raw)
To: loody; +Cc: alsa-devel
loody wrote:
> ALSA lib conf.c:3601:(snd_config_update_r) Cannot access file /media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/build/share/alsa/alsa.conf
How exactly did you compile and install alsa-lib?
Regards,
Clemens
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: where to get snd_pcm_hardware info when usb audio device plug in?
2013-09-08 12:28 ` Clemens Ladisch
@ 2013-09-09 8:12 ` loody
2013-09-09 8:17 ` Clemens Ladisch
0 siblings, 1 reply; 7+ messages in thread
From: loody @ 2013-09-09 8:12 UTC (permalink / raw)
To: Clemens Ladisch; +Cc: alsa-devel
[-- Attachment #1: Type: text/plain, Size: 422 bytes --]
hi Clements:
2013/9/8 Clemens Ladisch <clemens@ladisch.de>:
> loody wrote:
>> ALSA lib conf.c:3601:(snd_config_update_r) Cannot access file /media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/build/share/alsa/alsa.conf
>
> How exactly did you compile and install alsa-lib?
Attach my config.log for your reference.
(after configure successfully, I just type "make" and "make install"
Thanks for your kind help,
[-- Attachment #2: config.log --]
[-- Type: application/octet-stream, Size: 48616 bytes --]
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by configure, which was
generated by GNU Autoconf 2.60. Invocation command line was
$ ./configure --prefix=/media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/build --host=mipsel-linux CC=mipsel-linux-gnu-gcc --disable-python
## --------- ##
## Platform. ##
## --------- ##
hostname = ubuntu-t60
uname -m = i686
uname -r = 2.6.31.12
uname -s = Linux
uname -v = #13 SMP Sun Jan 16 16:59:10 CST 2011
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games
PATH: /media/sdb1/toolchain/mips/buildroot-2009.02/staging_dir/usr/bin
PATH: /media/sdb1/toolchain/mips/SDE/bin
PATH: /opt/montavista/pro/devkit/mips/mips2_fp_le/bin/
PATH: /opt/montavista/pro/devkit/mips/mips2_fp_le_uclibc/bin
PATH: /opt/codesourcery/bin
PATH: /media/sdb1/toolchain/x-tools/mipsel-unknown-linux-uclibc/bin
PATH: /media/sdb1/toolchain/x-tools/i386-unknown-linux-uclibc/bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:2089: checking build system type
configure:2107: result: i686-pc-linux-gnu
configure:2129: checking host system type
configure:2144: result: mipsel-unknown-linux-gnu
configure:2180: checking for a BSD-compatible install
configure:2236: result: /usr/bin/install -c
configure:2247: checking whether build environment is sane
configure:2290: result: yes
configure:2355: checking for gawk
configure:2371: found /usr/bin/gawk
configure:2382: result: gawk
configure:2393: checking whether make sets $(MAKE)
configure:2414: result: yes
configure:2490: checking for mipsel-linux-strip
configure:2506: found /media/sdb1/toolchain/mips/buildroot-2009.02/staging_dir/usr/bin/mipsel-linux-strip
configure:2517: result: mipsel-linux-strip
configure:2642: checking for mipsel-linux-gcc
configure:2669: result: mipsel-linux-gnu-gcc
configure:2947: checking for C compiler version
configure:2954: mipsel-linux-gnu-gcc --version >&5
mipsel-linux-gnu-gcc (gcc version 4.3.3 (VDLinux 1.1.2.x 2010-04-19)) 4.3.3
Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:2957: $? = 0
configure:2964: mipsel-linux-gnu-gcc -v >&5
Using built-in specs.
Target: mipsel-linux-gnu
Configured with: /scratch/clm/2009q1-linux-lite/src/gcc-4.3/configure --build=i686-pc-linux-gnu --host=i686-pc-linux-gnu --target=mipsel-linux-gnu --enable-threads --disable-libmudflap --disable-libssp --disable-libstdcxx-pch --with-arch=mips32r2 --with-float=soft --with-tune=24kec --enable-mips-nonpic --with-gnu-as --with-gnu-ld --enable-languages=c,c++ --enable-shared --enable-symvers=gnu --enable-__cxa_atexit --with-pkgversion='gcc version 4.3.3 (VDLinux 1.1.2.x 2010-04-19)' --with-bugurl=http://linux.sec.samsung.net/VDLinux/ --disable-nls --prefix=/opt/codesourcery --with-sysroot=/opt/codesourcery/mipsel-linux-gnu/libc --with-build-sysroot=/scratch/clm/2009q1-linux-lite/install/mipsel-linux-gnu/libc --with-gmp=/scratch/clm/2009q1-linux-lite/obj/host-libs-4.3-154-mipsel-linux-gnu-i686-pc-linux-gnu/usr --with-mpfr=/scratch/clm/2009q1-linux-lite/obj/host-libs-4.3-154-mipsel-linux-gnu-i686-pc-linux-gnu/usr --disable-libgomp --enable-poison-system-directories --with-build-time-tools=/scratch/clm/2009q1-linux-lite/install/mipsel-linux-gnu/bin --with-build-time-tools=/scratch/clm/2009q1-linux-lite/install/mipsel-linux-gnu/bin
Thread model: posix
gcc version 4.3.3 (gcc version 4.3.3 (VDLinux 1.1.2.x 2010-04-19))
configure:2967: $? = 0
configure:2974: mipsel-linux-gnu-gcc -V >&5
mipsel-linux-gnu-gcc: '-V' option must have argument
configure:2977: $? = 1
configure:3000: checking for C compiler default output file name
configure:3027: mipsel-linux-gnu-gcc -D_GNU_SOURCE conftest.c >&5
configure:3030: $? = 0
configure:3076: result: a.out
configure:3081: checking whether the C compiler works
configure:3091: ./a.out
./configure: line 3092: ./a.out: cannot execute binary file
configure:3094: $? = 126
configure:3111: result: yes
configure:3118: checking whether we are cross compiling
configure:3120: result: yes
configure:3123: checking for suffix of executables
configure:3130: mipsel-linux-gnu-gcc -o conftest -D_GNU_SOURCE conftest.c >&5
configure:3133: $? = 0
configure:3157: result:
configure:3163: checking for suffix of object files
configure:3189: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:3192: $? = 0
configure:3215: result: o
configure:3219: checking whether we are using the GNU C compiler
configure:3248: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:3254: $? = 0
configure:3261: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:3264: $? = 0
configure:3271: test -s conftest.o
configure:3274: $? = 0
configure:3288: result: yes
configure:3293: checking whether mipsel-linux-gnu-gcc accepts -g
configure:3323: mipsel-linux-gnu-gcc -c -g conftest.c >&5
configure:3329: $? = 0
configure:3336: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:3339: $? = 0
configure:3346: test -s conftest.o
configure:3349: $? = 0
configure:3479: result: yes
configure:3496: checking for mipsel-linux-gnu-gcc option to accept ISO C89
configure:3570: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:3576: $? = 0
configure:3583: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:3586: $? = 0
configure:3593: test -s conftest.o
configure:3596: $? = 0
configure:3616: result: none needed
configure:3645: checking for style of include used by make
configure:3673: result: GNU
configure:3701: checking dependency style of mipsel-linux-gnu-gcc
configure:3791: result: gcc3
configure:3813: checking how to run the C preprocessor
configure:3853: mipsel-linux-gnu-gcc -E conftest.c
configure:3859: $? = 0
configure:3897: mipsel-linux-gnu-gcc -E conftest.c
conftest.c:10:28: error: ac_nonexistent.h: No such file or directory
configure:3903: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "alsa-lib"
| #define VERSION "1.0.23"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3943: result: mipsel-linux-gnu-gcc -E
configure:3972: mipsel-linux-gnu-gcc -E conftest.c
configure:3978: $? = 0
configure:4016: mipsel-linux-gnu-gcc -E conftest.c
conftest.c:10:28: error: ac_nonexistent.h: No such file or directory
configure:4022: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "alsa-lib"
| #define VERSION "1.0.23"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4079: checking for a BSD-compatible install
configure:4135: result: /usr/bin/install -c
configure:4146: checking whether ln -s works
configure:4150: result: yes
configure:4232: checking for a sed that does not truncate output
configure:4286: result: /bin/sed
configure:4289: checking for grep that handles long lines and -e
configure:4363: result: /bin/grep
configure:4368: checking for egrep
configure:4446: result: /bin/grep -E
configure:4462: checking for ld used by mipsel-linux-gnu-gcc
configure:4529: result: /media/sdb1/toolchain/mips/codesourcery.ss/mips-4.3-154/mipsel-linux-gnu/bin/ld
configure:4538: checking if the linker (/media/sdb1/toolchain/mips/codesourcery.ss/mips-4.3-154/mipsel-linux-gnu/bin/ld) is GNU ld
configure:4553: result: yes
configure:4558: checking for /media/sdb1/toolchain/mips/codesourcery.ss/mips-4.3-154/mipsel-linux-gnu/bin/ld option to reload object files
configure:4565: result: -r
configure:4583: checking for BSD-compatible nm
configure:4632: result: /media/sdb1/toolchain/mips/buildroot-2009.02/staging_dir/usr/bin/mipsel-linux-nm -B
configure:4636: checking how to recognise dependent libraries
configure:4812: result: pass_all
configure:5058: checking for ANSI C header files
configure:5088: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:5094: $? = 0
configure:5101: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5104: $? = 0
configure:5111: test -s conftest.o
configure:5114: $? = 0
configure:5239: result: yes
configure:5263: checking for sys/types.h
configure:5284: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:5290: $? = 0
configure:5297: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5300: $? = 0
configure:5307: test -s conftest.o
configure:5310: $? = 0
configure:5323: result: yes
configure:5263: checking for sys/stat.h
configure:5284: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:5290: $? = 0
configure:5297: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5300: $? = 0
configure:5307: test -s conftest.o
configure:5310: $? = 0
configure:5323: result: yes
configure:5263: checking for stdlib.h
configure:5284: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:5290: $? = 0
configure:5297: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5300: $? = 0
configure:5307: test -s conftest.o
configure:5310: $? = 0
configure:5323: result: yes
configure:5263: checking for string.h
configure:5284: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:5290: $? = 0
configure:5297: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5300: $? = 0
configure:5307: test -s conftest.o
configure:5310: $? = 0
configure:5323: result: yes
configure:5263: checking for memory.h
configure:5284: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:5290: $? = 0
configure:5297: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5300: $? = 0
configure:5307: test -s conftest.o
configure:5310: $? = 0
configure:5323: result: yes
configure:5263: checking for strings.h
configure:5284: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:5290: $? = 0
configure:5297: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5300: $? = 0
configure:5307: test -s conftest.o
configure:5310: $? = 0
configure:5323: result: yes
configure:5263: checking for inttypes.h
configure:5284: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:5290: $? = 0
configure:5297: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5300: $? = 0
configure:5307: test -s conftest.o
configure:5310: $? = 0
configure:5323: result: yes
configure:5263: checking for stdint.h
configure:5284: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:5290: $? = 0
configure:5297: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5300: $? = 0
configure:5307: test -s conftest.o
configure:5310: $? = 0
configure:5323: result: yes
configure:5263: checking for unistd.h
configure:5284: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:5290: $? = 0
configure:5297: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5300: $? = 0
configure:5307: test -s conftest.o
configure:5310: $? = 0
configure:5323: result: yes
configure:5350: checking dlfcn.h usability
configure:5367: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:5373: $? = 0
configure:5380: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5383: $? = 0
configure:5390: test -s conftest.o
configure:5393: $? = 0
configure:5404: result: yes
configure:5408: checking dlfcn.h presence
configure:5423: mipsel-linux-gnu-gcc -E conftest.c
configure:5429: $? = 0
configure:5450: result: yes
configure:5478: checking for dlfcn.h
configure:5486: result: yes
configure:5513: checking for mipsel-linux-g++
configure:5529: found /media/sdb1/toolchain/mips/buildroot-2009.02/staging_dir/usr/bin/mipsel-linux-g++
configure:5540: result: mipsel-linux-g++
configure:5615: checking for C++ compiler version
configure:5622: mipsel-linux-g++ --version >&5
mipsel-linux-g++ (GCC) 4.2.4
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:5625: $? = 0
configure:5632: mipsel-linux-g++ -v >&5
Using built-in specs.
Target: mipsel-linux-uclibc
Configured with: /home/harry/work/buildroot-2009.02/toolchain_build_mipsel/gcc-4.2.4/configure --prefix=/usr --build=i386-pc-linux-gnu --host=i386-pc-linux-gnu --target=mipsel-linux-uclibc --enable-languages=c,c++ --with-sysroot=/home/harry/work/buildroot-2009.02/build_mipsel/staging_dir --with-build-time-tools=/home/harry/work/buildroot-2009.02/build_mipsel/staging_dir/usr/mipsel-linux-uclibc/bin --disable-__cxa_atexit --enable-target-optspace --with-gnu-ld --enable-shared --with-gmp=/home/harry/work/buildroot-2009.02/toolchain_build_mipsel/gmp --with-mpfr=/home/harry/work/buildroot-2009.02/toolchain_build_mipsel/mpfr --disable-nls --enable-threads --disable-multilib --with-abi=32 --with-tune=mips32r2 --disable-largefile
Thread model: posix
gcc version 4.2.4
configure:5635: $? = 0
configure:5642: mipsel-linux-g++ -V >&5
mipsel-linux-g++: '-V' option must have argument
configure:5645: $? = 1
configure:5648: checking whether we are using the GNU C++ compiler
configure:5677: mipsel-linux-g++ -c conftest.cpp >&5
configure:5683: $? = 0
configure:5690: test -z "$ac_cxx_werror_flag" || test ! -s conftest.err
configure:5693: $? = 0
configure:5700: test -s conftest.o
configure:5703: $? = 0
configure:5717: result: yes
configure:5722: checking whether mipsel-linux-g++ accepts -g
configure:5752: mipsel-linux-g++ -c -g conftest.cpp >&5
configure:5758: $? = 0
configure:5765: test -z "$ac_cxx_werror_flag" || test ! -s conftest.err
configure:5768: $? = 0
configure:5775: test -s conftest.o
configure:5778: $? = 0
configure:5908: result: yes
configure:5933: checking dependency style of mipsel-linux-g++
configure:6023: result: gcc3
configure:6050: checking how to run the C++ preprocessor
configure:6086: mipsel-linux-g++ -E conftest.cpp
configure:6092: $? = 0
configure:6130: mipsel-linux-g++ -E conftest.cpp
conftest.cpp:21:28: error: ac_nonexistent.h: No such file or directory
configure:6136: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "alsa-lib"
| #define VERSION "1.0.23"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:6176: result: mipsel-linux-g++ -E
configure:6205: mipsel-linux-g++ -E conftest.cpp
configure:6211: $? = 0
configure:6249: mipsel-linux-g++ -E conftest.cpp
conftest.cpp:21:28: error: ac_nonexistent.h: No such file or directory
configure:6255: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "alsa-lib"
| #define VERSION "1.0.23"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:6311: checking for mipsel-linux-g77
configure:6341: result: no
configure:6311: checking for mipsel-linux-f77
configure:6341: result: no
configure:6311: checking for mipsel-linux-xlf
configure:6341: result: no
configure:6311: checking for mipsel-linux-frt
configure:6341: result: no
configure:6311: checking for mipsel-linux-pgf77
configure:6341: result: no
configure:6311: checking for mipsel-linux-cf77
configure:6341: result: no
configure:6311: checking for mipsel-linux-fort77
configure:6341: result: no
configure:6311: checking for mipsel-linux-fl32
configure:6341: result: no
configure:6311: checking for mipsel-linux-af77
configure:6341: result: no
configure:6311: checking for mipsel-linux-f90
configure:6341: result: no
configure:6311: checking for mipsel-linux-xlf90
configure:6341: result: no
configure:6311: checking for mipsel-linux-pgf90
configure:6341: result: no
configure:6311: checking for mipsel-linux-pghpf
configure:6341: result: no
configure:6311: checking for mipsel-linux-epcf90
configure:6341: result: no
configure:6311: checking for mipsel-linux-gfortran
configure:6341: result: no
configure:6311: checking for mipsel-linux-g95
configure:6341: result: no
configure:6311: checking for mipsel-linux-f95
configure:6341: result: no
configure:6311: checking for mipsel-linux-fort
configure:6341: result: no
configure:6311: checking for mipsel-linux-xlf95
configure:6341: result: no
configure:6311: checking for mipsel-linux-ifort
configure:6341: result: no
configure:6311: checking for mipsel-linux-ifc
configure:6341: result: no
configure:6311: checking for mipsel-linux-efc
configure:6341: result: no
configure:6311: checking for mipsel-linux-pgf95
configure:6341: result: no
configure:6311: checking for mipsel-linux-lf95
configure:6341: result: no
configure:6311: checking for mipsel-linux-ftn
configure:6341: result: no
configure:6355: checking for g77
configure:6385: result: no
configure:6355: checking for f77
configure:6385: result: no
configure:6355: checking for xlf
configure:6385: result: no
configure:6355: checking for frt
configure:6385: result: no
configure:6355: checking for pgf77
configure:6385: result: no
configure:6355: checking for cf77
configure:6385: result: no
configure:6355: checking for fort77
configure:6385: result: no
configure:6355: checking for fl32
configure:6385: result: no
configure:6355: checking for af77
configure:6385: result: no
configure:6355: checking for f90
configure:6385: result: no
configure:6355: checking for xlf90
configure:6385: result: no
configure:6355: checking for pgf90
configure:6385: result: no
configure:6355: checking for pghpf
configure:6385: result: no
configure:6355: checking for epcf90
configure:6385: result: no
configure:6355: checking for gfortran
configure:6385: result: no
configure:6355: checking for g95
configure:6385: result: no
configure:6355: checking for f95
configure:6385: result: no
configure:6355: checking for fort
configure:6385: result: no
configure:6355: checking for xlf95
configure:6385: result: no
configure:6355: checking for ifort
configure:6385: result: no
configure:6355: checking for ifc
configure:6385: result: no
configure:6355: checking for efc
configure:6385: result: no
configure:6355: checking for pgf95
configure:6385: result: no
configure:6355: checking for lf95
configure:6385: result: no
configure:6355: checking for ftn
configure:6385: result: no
configure:6412: checking for Fortran 77 compiler version
configure:6419: --version >&5
./configure: line 6420: --version: command not found
configure:6422: $? = 127
configure:6429: -v >&5
./configure: line 6430: -v: command not found
configure:6432: $? = 127
configure:6439: -V >&5
./configure: line 6440: -V: command not found
configure:6442: $? = 127
configure:6450: checking whether we are using the GNU Fortran 77 compiler
configure:6469: -c conftest.F >&5
./configure: line 6470: -c: command not found
configure:6475: $? = 127
configure: failed program was:
| program main
| #ifndef __GNUC__
| choke me
| #endif
|
| end
configure:6509: result: no
configure:6515: checking whether accepts -g
configure:6532: -c -g conftest.f >&5
./configure: line 6533: -c: command not found
configure:6538: $? = 127
configure: failed program was:
| program main
|
| end
configure:6571: result: no
configure:6601: checking the maximum length of command line arguments
configure:6710: result: 32768
configure:6721: checking command to parse /media/sdb1/toolchain/mips/buildroot-2009.02/staging_dir/usr/bin/mipsel-linux-nm -B output from mipsel-linux-gnu-gcc object
configure:6826: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:6829: $? = 0
configure:6833: /media/sdb1/toolchain/mips/buildroot-2009.02/staging_dir/usr/bin/mipsel-linux-nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:6836: $? = 0
configure:6888: mipsel-linux-gnu-gcc -o conftest -D_GNU_SOURCE conftest.c conftstm.o >&5
configure:6891: $? = 0
configure:6929: result: ok
configure:6933: checking for objdir
configure:6948: result: .libs
configure:7000: checking for mipsel-linux-ar
configure:7016: found /media/sdb1/toolchain/mips/buildroot-2009.02/staging_dir/usr/bin/mipsel-linux-ar
configure:7027: result: mipsel-linux-ar
configure:7096: checking for mipsel-linux-ranlib
configure:7112: found /media/sdb1/toolchain/mips/buildroot-2009.02/staging_dir/usr/bin/mipsel-linux-ranlib
configure:7123: result: mipsel-linux-ranlib
configure:7192: checking for mipsel-linux-strip
configure:7219: result: mipsel-linux-strip
configure:7545: checking if mipsel-linux-gnu-gcc supports -fno-rtti -fno-exceptions
configure:7563: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
configure:7567: $? = 0
configure:7580: result: no
configure:7595: checking for mipsel-linux-gnu-gcc option to produce PIC
configure:7805: result: -fPIC
configure:7813: checking if mipsel-linux-gnu-gcc PIC flag -fPIC works
configure:7831: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE -fPIC -DPIC conftest.c >&5
configure:7835: $? = 0
configure:7848: result: yes
configure:7876: checking if mipsel-linux-gnu-gcc static flag -static works
configure:7904: result: yes
configure:7914: checking if mipsel-linux-gnu-gcc supports -c -o file.o
configure:7935: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE -o out/conftest2.o conftest.c >&5
configure:7939: $? = 0
configure:7961: result: yes
configure:7987: checking whether the mipsel-linux-gnu-gcc linker (/media/sdb1/toolchain/mips/codesourcery.ss/mips-4.3-154/mipsel-linux-gnu/bin/ld) supports shared libraries
configure:8973: result: yes
configure:8994: checking whether -lc should be explicitly linked in
configure:8999: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:9002: $? = 0
configure:9017: mipsel-linux-gnu-gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1
configure:9020: $? = 0
configure:9032: result: no
configure:9040: checking dynamic linker characteristics
configure:9628: result: GNU/Linux ld.so
configure:9637: checking how to hardcode library paths into programs
configure:9662: result: immediate
configure:9676: checking whether stripping libraries is possible
configure:9681: result: yes
configure:9820: checking for shl_load
configure:9876: mipsel-linux-gnu-gcc -o conftest -D_GNU_SOURCE conftest.c >&5
/tmp/ccqLGqgq.o: In function `main':
conftest.c:(.text+0x10): undefined reference to `shl_load'
conftest.c:(.text+0x14): undefined reference to `shl_load'
collect2: ld returned 1 exit status
configure:9882: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "alsa-lib"
| #define VERSION "1.0.23"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
| /* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define shl_load innocuous_shl_load
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char shl_load (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef shl_load
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char shl_load ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined __stub_shl_load || defined __stub___shl_load
| choke me
| #endif
|
| int
| main ()
| {
| return shl_load ();
| ;
| return 0;
| }
configure:9915: result: no
configure:9920: checking for shl_load in -ldld
configure:9955: mipsel-linux-gnu-gcc -o conftest -D_GNU_SOURCE conftest.c -ldld >&5
/media/sdb1/toolchain/mips/codesourcery.ss/mips-4.3-154/bin/../lib/gcc/mipsel-linux-gnu/4.3.3/../../../../mipsel-linux-gnu/bin/ld: cannot find -ldld
collect2: ld returned 1 exit status
configure:9961: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "alsa-lib"
| #define VERSION "1.0.23"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char shl_load ();
| int
| main ()
| {
| return shl_load ();
| ;
| return 0;
| }
configure:9995: result: no
configure:10000: checking for dlopen
configure:10056: mipsel-linux-gnu-gcc -o conftest -D_GNU_SOURCE conftest.c >&5
/tmp/ccA4ex4Z.o: In function `main':
conftest.c:(.text+0x10): undefined reference to `dlopen'
conftest.c:(.text+0x14): undefined reference to `dlopen'
collect2: ld returned 1 exit status
configure:10062: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "alsa-lib"
| #define VERSION "1.0.23"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
| /* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define dlopen innocuous_dlopen
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char dlopen (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef dlopen
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char dlopen ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined __stub_dlopen || defined __stub___dlopen
| choke me
| #endif
|
| int
| main ()
| {
| return dlopen ();
| ;
| return 0;
| }
configure:10095: result: no
configure:10100: checking for dlopen in -ldl
configure:10135: mipsel-linux-gnu-gcc -o conftest -D_GNU_SOURCE conftest.c -ldl >&5
configure:10141: $? = 0
configure:10148: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:10151: $? = 0
configure:10158: test -s conftest
configure:10161: $? = 0
configure:10175: result: yes
configure:10376: checking whether a program can dlopen itself
configure:10471: result: cross
configure:10594: checking if libtool supports shared libraries
configure:10596: result: yes
configure:10599: checking whether to build shared libraries
configure:10620: result: yes
configure:10623: checking whether to build static libraries
configure:10627: result: no
configure:10719: creating libtool
configure:11307: checking for ld used by mipsel-linux-g++
configure:11374: result: /media/sdb1/toolchain/mips/codesourcery.ss/mips-4.3-154/mipsel-linux-gnu/bin/ld
configure:11383: checking if the linker (/media/sdb1/toolchain/mips/codesourcery.ss/mips-4.3-154/mipsel-linux-gnu/bin/ld) is GNU ld
configure:11398: result: yes
configure:11449: checking whether the mipsel-linux-g++ linker (/media/sdb1/toolchain/mips/codesourcery.ss/mips-4.3-154/mipsel-linux-gnu/bin/ld) supports shared libraries
configure:12415: result: yes
configure:12433: mipsel-linux-g++ -c -g -O2 conftest.cpp >&5
configure:12436: $? = 0
configure:12555: checking for mipsel-linux-g++ option to produce PIC
configure:12829: result: -fPIC
configure:12837: checking if mipsel-linux-g++ PIC flag -fPIC works
configure:12855: mipsel-linux-g++ -c -g -O2 -fPIC -DPIC conftest.cpp >&5
configure:12859: $? = 0
configure:12872: result: yes
configure:12900: checking if mipsel-linux-g++ static flag -static works
configure:12928: result: no
configure:12938: checking if mipsel-linux-g++ supports -c -o file.o
configure:12959: mipsel-linux-g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
configure:12963: $? = 0
configure:12985: result: yes
configure:13011: checking whether the mipsel-linux-g++ linker (/media/sdb1/toolchain/mips/codesourcery.ss/mips-4.3-154/mipsel-linux-gnu/bin/ld) supports shared libraries
configure:13036: result: yes
configure:13103: checking dynamic linker characteristics
configure:13691: result: GNU/Linux ld.so
configure:13700: checking how to hardcode library paths into programs
configure:13725: result: immediate
configure:19932: checking for ANSI C header files
configure:20113: result: yes
configure:20126: checking for an ANSI C-conforming const
configure:20201: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:20207: $? = 0
configure:20214: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:20217: $? = 0
configure:20224: test -s conftest.o
configure:20227: $? = 0
configure:20239: result: yes
configure:20249: checking for inline
configure:20275: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:20281: $? = 0
configure:20288: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:20291: $? = 0
configure:20298: test -s conftest.o
configure:20301: $? = 0
configure:20316: result: inline
configure:20335: checking whether time.h and sys/time.h may both be included
configure:20365: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE conftest.c >&5
configure:20371: $? = 0
configure:20378: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:20381: $? = 0
configure:20388: test -s conftest.o
configure:20391: $? = 0
configure:20403: result: yes
configure:20415: checking whether mipsel-linux-gnu-gcc needs -traditional
configure:20457: result: no
configure:20464: checking for hsearch_r
configure:20520: mipsel-linux-gnu-gcc -o conftest -D_GNU_SOURCE conftest.c >&5
configure:20526: $? = 0
configure:20533: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:20536: $? = 0
configure:20543: test -s conftest
configure:20546: $? = 0
configure:20559: result: yes
configure:20577: checking for library version
configure:20602: result: major 1 minor 0 subminor 23 extrastr extraver 1000000
configure:20660: checking for versioned symbols
configure:20689: result: yes
configure:20710: checking for symbolic-functions
configure:20729: result: no
configure:20743: checking for custom symbol prefixes
configure:20756: result:
configure:20759: checking for debug
configure:20770: result: yes
configure:20783: checking for debug assert
configure:20801: result: no
configure:20806: checking for tmpdir
configure:20816: result: /tmp
configure:20824: checking for softfloat
configure:20844: result: no
configure:20853: checking for libdl
configure:20864: checking for dlsym in -ldl
configure:20899: mipsel-linux-gnu-gcc -o conftest -D_GNU_SOURCE conftest.c -ldl >&5
configure:20905: $? = 0
configure:20912: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:20915: $? = 0
configure:20922: test -s conftest
configure:20925: $? = 0
configure:20939: result: yes
configure:20968: checking for pthread
configure:20979: checking for pthread_join in -lpthread
configure:21014: mipsel-linux-gnu-gcc -o conftest -D_GNU_SOURCE conftest.c -lpthread >&5
configure:21020: $? = 0
configure:21027: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:21030: $? = 0
configure:21037: test -s conftest
configure:21040: $? = 0
configure:21054: result: yes
configure:21073: checking for librt
configure:21084: checking for clock_gettime in -lrt
configure:21119: mipsel-linux-gnu-gcc -o conftest -D_GNU_SOURCE conftest.c -lrt >&5
configure:21125: $? = 0
configure:21132: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:21135: $? = 0
configure:21142: test -s conftest
configure:21145: $? = 0
configure:21159: result: yes
configure:21185: checking for architecture
configure:21211: result: mips
configure:21242: checking wordexp.h usability
configure:21259: mipsel-linux-gnu-gcc -c -D_GNU_SOURCE -D__mips__ conftest.c >&5
configure:21265: $? = 0
configure:21272: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:21275: $? = 0
configure:21282: test -s conftest.o
configure:21285: $? = 0
configure:21296: result: yes
configure:21300: checking wordexp.h presence
configure:21315: mipsel-linux-gnu-gcc -E -D__mips__ conftest.c
configure:21321: $? = 0
configure:21342: result: yes
configure:21370: checking for wordexp.h
configure:21378: result: yes
configure:21392: checking for resmgr support
configure:21401: result: no
configure:21502: checking for aload* support
configure:21511: result: yes
configure:21521: checking for ALSA device file directory
configure:21539: result: /dev/snd/
configure:21542: checking for aload* device file directory
configure:21560: result: /dev/
configure:22669: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by config.status, which was
generated by GNU Autoconf 2.60. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on ubuntu-t60
config.status:779: creating Makefile
config.status:779: creating doc/Makefile
config.status:779: creating doc/pictures/Makefile
config.status:779: creating doc/doxygen.cfg
config.status:779: creating include/Makefile
config.status:779: creating include/sound/Makefile
config.status:779: creating src/Versions
config.status:779: creating src/Makefile
config.status:779: creating src/control/Makefile
config.status:779: creating src/mixer/Makefile
config.status:779: creating src/pcm/Makefile
config.status:779: creating src/pcm/scopes/Makefile
config.status:779: creating src/rawmidi/Makefile
config.status:779: creating src/timer/Makefile
config.status:779: creating src/hwdep/Makefile
config.status:779: creating src/seq/Makefile
config.status:779: creating src/compat/Makefile
config.status:779: creating src/alisp/Makefile
config.status:779: creating src/conf/Makefile
config.status:779: creating src/conf/cards/Makefile
config.status:779: creating src/conf/pcm/Makefile
config.status:779: creating modules/Makefile
config.status:779: creating modules/mixer/Makefile
config.status:779: creating modules/mixer/simple/Makefile
config.status:779: creating alsalisp/Makefile
config.status:779: creating aserver/Makefile
config.status:779: creating test/Makefile
config.status:779: creating test/lsb/Makefile
config.status:779: creating utils/Makefile
config.status:779: creating utils/alsa-lib.spec
config.status:779: creating utils/alsa.pc
config.status:779: creating include/config.h
config.status:1028: include/config.h is unchanged
config.status:1074: executing depfiles commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=i686-pc-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_inline=inline
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=set
ac_cv_env_CC_value=mipsel-linux-gnu-gcc
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=set
ac_cv_env_host_alias_value=mipsel-linux
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_f77_compiler_gnu=no
ac_cv_func_dlopen=no
ac_cv_func_hsearch_r=yes
ac_cv_func_shl_load=no
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_header_wordexp_h=yes
ac_cv_host=mipsel-unknown-linux-gnu
ac_cv_lib_dl_dlopen=yes
ac_cv_lib_dl_dlsym=yes
ac_cv_lib_dld_shl_load=no
ac_cv_lib_pthread_pthread_join=yes
ac_cv_lib_rt_clock_gettime=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AR=mipsel-linux-ar
ac_cv_prog_AWK=gawk
ac_cv_prog_CC=mipsel-linux-gnu-gcc
ac_cv_prog_CPP='mipsel-linux-gnu-gcc -E'
ac_cv_prog_CXX=mipsel-linux-g++
ac_cv_prog_CXXCPP='mipsel-linux-g++ -E'
ac_cv_prog_RANLIB=mipsel-linux-ranlib
ac_cv_prog_STRIP=mipsel-linux-strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_f77_g=no
ac_cv_prog_gcc_traditional=no
ac_cv_prog_make_make_set=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
lt_cv_deplibs_check_method=pass_all
lt_cv_dlopen=dlopen
lt_cv_dlopen_libs=-ldl
lt_cv_dlopen_self=cross
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_objdir=.libs
lt_cv_path_LD=/media/sdb1/toolchain/mips/codesourcery.ss/mips-4.3-154/mipsel-linux-gnu/bin/ld
lt_cv_path_LDCXX=/media/sdb1/toolchain/mips/codesourcery.ss/mips-4.3-154/mipsel-linux-gnu/bin/ld
lt_cv_path_NM='/media/sdb1/toolchain/mips/buildroot-2009.02/staging_dir/usr/bin/mipsel-linux-nm -B'
lt_cv_path_SED=/bin/sed
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'''
lt_cv_sys_max_cmd_len=32768
lt_lt_cv_prog_compiler_c_o='"yes"'
lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"'
lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/missing --run aclocal-1.9'
ALSA_CONFIG_DIR='/media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/build/share/alsa'
ALSA_DEPLIBS='-lm -ldl -lpthread -lrt'
ALSA_HSEARCH_R_FALSE=''
ALSA_HSEARCH_R_TRUE='#'
ALSA_PLUGIN_DIR='/media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/build/lib/alsa-lib'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/missing --run tar'
AR='mipsel-linux-ar'
AUTOCONF='${SHELL} /media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/missing --run autoconf'
AUTOHEADER='${SHELL} /media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/missing --run autoheader'
AUTOMAKE='${SHELL} /media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/missing --run automake-1.9'
AWK='gawk'
BUILD_ALISP_FALSE='#'
BUILD_ALISP_TRUE=''
BUILD_CTL_PLUGIN_EXT_FALSE='#'
BUILD_CTL_PLUGIN_EXT_TRUE=''
BUILD_CTL_PLUGIN_FALSE='#'
BUILD_CTL_PLUGIN_SHM_FALSE='#'
BUILD_CTL_PLUGIN_SHM_TRUE=''
BUILD_CTL_PLUGIN_TRUE=''
BUILD_HWDEP_FALSE='#'
BUILD_HWDEP_TRUE=''
BUILD_MIXER_FALSE='#'
BUILD_MIXER_TRUE=''
BUILD_MODULES_FALSE='#'
BUILD_MODULES_TRUE=''
BUILD_PCM_FALSE='#'
BUILD_PCM_PLUGIN_ADPCM_FALSE='#'
BUILD_PCM_PLUGIN_ADPCM_TRUE=''
BUILD_PCM_PLUGIN_ALAW_FALSE='#'
BUILD_PCM_PLUGIN_ALAW_TRUE=''
BUILD_PCM_PLUGIN_ASYM_FALSE='#'
BUILD_PCM_PLUGIN_ASYM_TRUE=''
BUILD_PCM_PLUGIN_COPY_FALSE='#'
BUILD_PCM_PLUGIN_COPY_TRUE=''
BUILD_PCM_PLUGIN_DMIX_FALSE='#'
BUILD_PCM_PLUGIN_DMIX_TRUE=''
BUILD_PCM_PLUGIN_DSHARE_FALSE='#'
BUILD_PCM_PLUGIN_DSHARE_TRUE=''
BUILD_PCM_PLUGIN_DSNOOP_FALSE='#'
BUILD_PCM_PLUGIN_DSNOOP_TRUE=''
BUILD_PCM_PLUGIN_EMPTY_FALSE='#'
BUILD_PCM_PLUGIN_EMPTY_TRUE=''
BUILD_PCM_PLUGIN_EXTPLUG_FALSE='#'
BUILD_PCM_PLUGIN_EXTPLUG_TRUE=''
BUILD_PCM_PLUGIN_FALSE='#'
BUILD_PCM_PLUGIN_FILE_FALSE='#'
BUILD_PCM_PLUGIN_FILE_TRUE=''
BUILD_PCM_PLUGIN_HOOKS_FALSE='#'
BUILD_PCM_PLUGIN_HOOKS_TRUE=''
BUILD_PCM_PLUGIN_IEC958_FALSE='#'
BUILD_PCM_PLUGIN_IEC958_TRUE=''
BUILD_PCM_PLUGIN_IOPLUG_FALSE='#'
BUILD_PCM_PLUGIN_IOPLUG_TRUE=''
BUILD_PCM_PLUGIN_LADSPA_FALSE='#'
BUILD_PCM_PLUGIN_LADSPA_TRUE=''
BUILD_PCM_PLUGIN_LFLOAT_FALSE='#'
BUILD_PCM_PLUGIN_LFLOAT_TRUE=''
BUILD_PCM_PLUGIN_LINEAR_FALSE='#'
BUILD_PCM_PLUGIN_LINEAR_TRUE=''
BUILD_PCM_PLUGIN_METER_FALSE='#'
BUILD_PCM_PLUGIN_METER_TRUE=''
BUILD_PCM_PLUGIN_MMAP_EMUL_FALSE='#'
BUILD_PCM_PLUGIN_MMAP_EMUL_TRUE=''
BUILD_PCM_PLUGIN_MULAW_FALSE='#'
BUILD_PCM_PLUGIN_MULAW_TRUE=''
BUILD_PCM_PLUGIN_MULTI_FALSE='#'
BUILD_PCM_PLUGIN_MULTI_TRUE=''
BUILD_PCM_PLUGIN_NULL_FALSE='#'
BUILD_PCM_PLUGIN_NULL_TRUE=''
BUILD_PCM_PLUGIN_PLUG_FALSE='#'
BUILD_PCM_PLUGIN_PLUG_TRUE=''
BUILD_PCM_PLUGIN_RATE_FALSE='#'
BUILD_PCM_PLUGIN_RATE_TRUE=''
BUILD_PCM_PLUGIN_ROUTE_FALSE='#'
BUILD_PCM_PLUGIN_ROUTE_TRUE=''
BUILD_PCM_PLUGIN_SHARE_FALSE='#'
BUILD_PCM_PLUGIN_SHARE_TRUE=''
BUILD_PCM_PLUGIN_SHM_FALSE='#'
BUILD_PCM_PLUGIN_SHM_TRUE=''
BUILD_PCM_PLUGIN_SOFTVOL_FALSE='#'
BUILD_PCM_PLUGIN_SOFTVOL_TRUE=''
BUILD_PCM_PLUGIN_TRUE=''
BUILD_PCM_TRUE=''
BUILD_PYTHON_FALSE=''
BUILD_PYTHON_TRUE='#'
BUILD_RAWMIDI_FALSE='#'
BUILD_RAWMIDI_TRUE=''
BUILD_SEQ_FALSE='#'
BUILD_SEQ_TRUE=''
CC='mipsel-linux-gnu-gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS=' -D_GNU_SOURCE'
CPP='mipsel-linux-gnu-gcc -E'
CPPFLAGS=' -D__mips__'
CXX='mipsel-linux-g++'
CXXCPP='mipsel-linux-g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
F77=''
FFLAGS=''
GREP='/bin/grep'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_M4_FALSE='#'
INSTALL_M4_TRUE=''
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
KEEP_OLD_SYMBOLS_FALSE='#'
KEEP_OLD_SYMBOLS_TRUE=''
LDFLAGS=''
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIBTOOL_VERSION_INFO='2:0:0'
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='${SHELL} /media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/missing --run makeinfo'
OBJEXT='o'
PACKAGE='alsa-lib'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
PYTHON_INCLUDES=''
PYTHON_LIBS=''
RANLIB='mipsel-linux-ranlib'
SET_MAKE=''
SHELL='/bin/bash'
SND_LIB_EXTRAVER='1000000'
SND_LIB_MAJOR='1'
SND_LIB_MINOR='0'
SND_LIB_SUBMINOR='23'
SND_LIB_VERSION='1.0.23'
STRIP='mipsel-linux-strip'
SYMBOLIC_FUNCTIONS_FALSE=''
SYMBOLIC_FUNCTIONS_TRUE='#'
SYMBOL_PREFIX=''
VERSION='1.0.23'
VERSIONED_SYMBOLS_FALSE='#'
VERSIONED_SYMBOLS_TRUE=''
ac_ct_CC=''
ac_ct_CXX=''
ac_ct_F77=''
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE}'
dvidir='${docdir}'
exec_prefix='/media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/build'
host='mipsel-unknown-linux-gnu'
host_alias='mipsel-linux'
host_cpu='mipsel'
host_os='linux-gnu'
host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='/media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='mkdir -p --'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/build'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
#define PACKAGE_NAME ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define PACKAGE_STRING ""
#define PACKAGE_BUGREPORT ""
#define PACKAGE "alsa-lib"
#define VERSION "1.0.23"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DLFCN_H 1
#define STDC_HEADERS 1
#define TIME_WITH_SYS_TIME 1
#define VERSION "1.0.23"
#define ALSA_CONFIG_DIR "/media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/build/share/alsa"
#define ALSA_PLUGIN_DIR "/media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/build/lib/alsa-lib"
#define VERSIONED_SYMBOLS
#define __SYMBOL_PREFIX ""
#define TMPDIR "/tmp"
#define HAVE_LIBDL 1
#define HAVE_LIBPTHREAD 1
#define HAVE_LIBRT 1
#define HAVE_CLOCK_GETTIME 1
#define HAVE_WORDEXP_H 1
#define SUPPORT_ALOAD "1"
#define ALSA_DEVICE_DIRECTORY "/dev/snd/"
#define ALOAD_DEVICE_DIRECTORY "/dev/"
#define BUILD_MIXER "1"
#define BUILD_PCM "1"
#define BUILD_RAWMIDI "1"
#define BUILD_HWDEP "1"
#define BUILD_SEQ "1"
#define BUILD_PCM_PLUGIN_RATE "1"
#define BUILD_PCM_PLUGIN_ROUTE "1"
#define BUILD_PCM_PLUGIN_LFLOAT "1"
#define BUILD_PCM_PLUGIN_ADPCM "1"
#define BUILD_PCM_PLUGIN_MULAW "1"
#define BUILD_PCM_PLUGIN_ALAW "1"
#define BUILD_PCM_PLUGIN_MMAP_EMUL "1"
configure: exit 0
[-- Attachment #3: Type: text/plain, Size: 0 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: where to get snd_pcm_hardware info when usb audio device plug in?
2013-09-09 8:12 ` loody
@ 2013-09-09 8:17 ` Clemens Ladisch
0 siblings, 0 replies; 7+ messages in thread
From: Clemens Ladisch @ 2013-09-09 8:17 UTC (permalink / raw)
To: loody; +Cc: alsa-devel
loody wrote:
>> How exactly did you compile and install alsa-lib?
>
> $ ./configure --prefix=/media/sdb1/software/linux.sound/alsa-lib-1.0.23.mips.clibc/build --host=mipsel-linux CC=mipsel-linux-gnu-gcc --disable-python
The --prefix option specifies where the files are on the target system.
You must not use it.
Regards,
Clemens
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-09-09 8:17 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-28 13:18 where to get snd_pcm_hardware info when usb audio device plug in? loody
2013-08-28 14:22 ` Clemens Ladisch
2013-08-29 3:53 ` loody
2013-09-08 8:25 ` loody
2013-09-08 12:28 ` Clemens Ladisch
2013-09-09 8:12 ` loody
2013-09-09 8:17 ` Clemens Ladisch
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).