]> git.alsa-project.org Git - alsa-lib.git/commit
test: add linker flag with pthread for pcm-multi-thread stress test
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>
Thu, 7 Jul 2016 21:43:51 +0000 (06:43 +0900)
committerTakashi Iwai <tiwai@suse.de>
Thu, 7 Jul 2016 21:48:52 +0000 (23:48 +0200)
commit42ff384a98ccac94e7b5ffdb54c478608ed6ee51
treeb63f1d302d945ac91b8bc9820256acb140db4593
parent025e451b833efeb0b930f9041c827ea244ea4586
test: add linker flag with pthread for pcm-multi-thread stress test

This test program is a pthread application, while Makefile has no flags
for linker about pthread library. This can cause below error.

$ make pcm-multi-thread
  CCLD     pcm-multi-thread
/usr/bin/ld: pcm-multi-thread.o: undefined reference to symbol 'pthread_cancel@@GLIBC_2.2.5'
//lib/x86_64-linux-gnu/libpthread.so.0: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
Makefile:523: recipe for target 'pcm-multi-thread' failed
make: *** [pcm-multi-thread] Error 1

This commit fixes the bug by adding a corresponding flag.

Fixes: 147093ac5b8d('test: Add pcm-multi-thread program')
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
test/Makefile.am