SDL_mixer no compile

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
sl1pkn07
Posts: 7
Joined: Wed May 31, 2006 4:55 pm

SDL_mixer no compile

Post by sl1pkn07 »

[sl1pkn07@SpinFlo SDL_mixer]$ make
Making all in timidity
make[1]: Entering directory `/home/sl1pkn07/PSPdev/newtoolchain-20060222/trunk/SDL_mixer/timidity'
make[1]: No se hace nada para `all'.
make[1]: Leaving directory `/home/sl1pkn07/PSPdev/newtoolchain-20060222/trunk/SDL_mixer/timidity'
make[1]: Entering directory `/home/sl1pkn07/PSPdev/newtoolchain-20060222/trunk/SDL_mixer'
/bin/sh ./libtool --tag=CC --mode=link psp-gcc -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -L/usr/local/pspdev/psp/sdk/lib -lc -lpspuser -o playwave playwave.o libSDL_mixer.la -L/usr/local/pspdev/psp/lib -lSDLmain -lSDL -lm -L/usr/local/pspdev/psp/sdk/lib -lpspdebug -lpspgu -lpspctrl -lpspge -lpspdisplay -lpsphprm -lpspsdk -lpsprtc -lpspaudio -lc -lpspuser -lpsputility -lpspkernel -L/usr/local/pspdev/psp/lib -lmikmod -ldl -L/usr/local/pspdev/psp/lib -lm
psp-gcc -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -o playwave playwave.o -pthread -L/usr/local/pspdev/psp/sdk/lib ./.libs/libSDL_mixer.a -L/usr/lib /usr/local/pspdev/psp/lib/libvorbisidec.a -L/usr/local/pspdev/psp/lib -lSDLmain -lSDL -lpspdebug -lpspgu -lpspctrl -lpspge -lpspdisplay -lpsphprm -lpspsdk -lpsprtc -lpspaudio -lc -lpspuser -lpsputility -lpspkernel -lmikmod -ldl -lm
psp-gcc: unrecognized option '-pthread'
/usr/local/pspdev/lib/gcc/psp/4.0.2/../../../../psp/bin/ld: skipping incompatible /usr/lib/libSDLmain.a when searching for -lSDLmain
/usr/local/pspdev/lib/gcc/psp/4.0.2/../../../../psp/bin/ld: skipping incompatible /usr/lib/libSDL.a when searching for -lSDL
/usr/local/pspdev/lib/gcc/psp/4.0.2/../../../../psp/bin/ld: skipping incompatible /usr/lib/libc.a when searching for -lc
/usr/local/pspdev/lib/gcc/psp/4.0.2/../../../../psp/bin/ld: skipping incompatible /usr/lib/libmikmod.a when searching for -lmikmod
/usr/local/pspdev/lib/gcc/psp/4.0.2/../../../../psp/bin/ld: skipping incompatible /usr/lib/libdl.a when searching for -ldl
/usr/local/pspdev/lib/gcc/psp/4.0.2/../../../../psp/bin/ld: cannot find -ldl
collect2: ld returned 1 exit status
make[1]: *** [playwave] Error 1
make[1]: Leaving directory `/home/sl1pkn07/PSPdev/newtoolchain-20060222/trunk/SDL_mixer'
make: *** [all-recursive] Error 1
[sl1pkn07@SpinFlo SDL_mixer]$

any ideas?

i have Fedora5, newtoolchain-20060222 and latest SDLmixer version (ps2dev.org subversion)

SDL, libmikmod,libogg,libvorbis,libmad and libTremor compile and installed (psp version)
jimparis
Posts: 1145
Joined: Fri Jun 10, 2005 4:21 am
Location: Boston

Post by jimparis »

Sounds like http://forums.ps2dev.org/viewtopic.php?p=34131#34131
you're definitely getting some crossover from your system sdl and/or mikmod libraries. Try the suggestions at that link, otherwise if that doesn't help provide your full configure log.
sl1pkn07
Posts: 7
Joined: Wed May 31, 2006 4:55 pm

Post by sl1pkn07 »

[sl1pkn07@SpinFlo SDL_mixer]$ cat README.PSP
Prerequisites:

SDL
libogg (optional)
libvorbis (optional)
libTremor (optional)

Note: If libTremor is detected it will be used instead of libogg and
libvorbis. To disable this behavior pass --disable-music-ogg-tremor to
configure.

To configure:

./autogen.sh
LDFLAGS="-L$(psp-config --pspsdk-path)/lib -lc -lpspuser" \
./configure --host psp --with-sdl-prefix=$(psp-config --psp-prefix) \
--disable-music-mp3 --prefix=$(psp-config --psp-prefix)

Then run:

make
make install

[sl1pkn07@SpinFlo SDL_mixer]$ ./autogen.sh
/usr/share/aclocal/sdlmm.m4:12: warning: underquoted definition of AM_PATH_SDLMM
run info '(automake)Extending aclocal'
or see http://sources.redhat.com/automake/auto ... ng-aclocal
/usr/share/aclocal/progsreiserfs.m4:13: warning: underquoted definition of AC_CHECK_LIBREISERFS
/usr/share/aclocal/libmcrypt.m4:17: warning: underquoted definition of AM_PATH_LIBMCRYPT
/usr/share/aclocal/libfame.m4:6: warning: underquoted definition of AM_PATH_LIBFAME
/usr/share/aclocal/gtkextra.m4:8: warning: underquoted definition of AM_PATH_GTK_EXTRA
Now you are ready to run ./configure

[sl1pkn07@SpinFlo SDL_mixer]$ LDFLAGS="-L$(psp-config --pspsdk-path)/lib -lc -lpspuser" \
> ./configure --host psp --with-sdl-prefix=$(psp-config --psp-prefix) \
> --disable-music-mp3 --prefix=$(psp-config --psp-prefix)
configure: WARNING: If you wanted to set the --build type, don't use --host.
If a cross compiler is detected then cross compile mode will be used.
checking build system type... i686-pc-linux-gnu
checking host system type... mipsallegrexel-psp-elf
checking target system type... mipsallegrexel-psp-elf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for psp-strip... psp-strip
checking whether make sets $(MAKE)... (cached) yes
checking for psp-gcc... psp-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... yes
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether psp-gcc accepts -g... yes
checking for psp-gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of psp-gcc... gcc3
checking for a sed that does not truncate output... /bin/sed
checking for egrep... grep -E
checking for ld used by psp-gcc... /usr/local/pspdev/psp/bin/ld
checking if the linker (/usr/local/pspdev/psp/bin/ld) is GNU ld... yes
checking for /usr/local/pspdev/psp/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/local/pspdev/bin/psp-nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... unknown
checking how to run the C preprocessor... psp-gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... no
checking for strings.h... no
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... no
checking dlfcn.h presence... no
checking for dlfcn.h... no
checking for psp-g++... psp-g++
checking whether we are using the GNU C++ compiler... yes
checking whether psp-g++ accepts -g... yes
checking dependency style of psp-g++... gcc3
checking how to run the C++ preprocessor... psp-g++ -E
checking for psp-g77... no
checking for psp-f77... no
checking for psp-xlf... no
checking for psp-frt... no
checking for psp-pgf77... no
checking for psp-fort77... no
checking for psp-fl32... no
checking for psp-af77... no
checking for psp-f90... no
checking for psp-xlf90... no
checking for psp-pgf90... no
checking for psp-epcf90... no
checking for psp-f95... no
checking for psp-fort... no
checking for psp-xlf95... no
checking for psp-ifc... no
checking for psp-efc... no
checking for psp-pgf95... no
checking for psp-lf95... no
checking for psp-gfortran... no
checking for g77... g77
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether g77 accepts -g... yes
checking the maximum length of command line arguments... 32768
checking command to parse /usr/local/pspdev/bin/psp-nm -B output from psp-gcc object... ok
checking for objdir... .libs
checking for psp-ar... psp-ar
checking for psp-ranlib... psp-ranlib
checking for psp-strip... (cached) psp-strip
checking if psp-gcc static flag works... yes
checking if psp-gcc supports -fno-rtti -fno-exceptions... no
checking for psp-gcc option to produce PIC... -fPIC
checking if psp-gcc PIC flag -fPIC works... yes
checking if psp-gcc supports -c -o file.o... yes
checking whether the psp-gcc linker (/usr/local/pspdev/psp/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking dynamic linker characteristics... no
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... no
checking whether to build shared libraries... no
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by psp-g++... /usr/local/pspdev/psp/bin/ld
checking if the linker (/usr/local/pspdev/psp/bin/ld) is GNU ld... yes
checking whether the psp-g++ linker (/usr/local/pspdev/psp/bin/ld) supports shared libraries... no
checking for psp-g++ option to produce PIC... -fPIC
checking if psp-g++ PIC flag -fPIC works... yes
checking if psp-g++ supports -c -o file.o... yes
checking whether the psp-g++ linker (/usr/local/pspdev/psp/bin/ld) supports shared libraries... no
checking dynamic linker characteristics... no
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
appending configuration tag "F77" to libtool
checking if libtool supports shared libraries... no
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for g77 option to produce PIC... -fPIC
checking if g77 PIC flag -fPIC works... yes
checking if g77 supports -c -o file.o... yes
checking whether the g77 linker (/usr/local/pspdev/psp/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... no
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for sdl-config... /usr/local/pspdev/psp/bin/sdl-config
checking for SDL - version >= 1.2.4... cross compiling; assumed OK...
yes
checking for libmikmod-config... /usr/bin/libmikmod-config
checking for libmikmod - version >= 3.1.10... cross compiling; assumed OK...
checking for Ogg Vorbis headers and libraries... yes
checking for Tremor headers and libraries... yes
checking for psp-config... psp-config
checking for PSPSDK... /usr/local/pspdev/psp/sdk
configure: creating ./config.status
config.status: creating Makefile
config.status: creating mikmod/Makefile
config.status: creating timidity/Makefile
config.status: creating native_midi/Makefile
config.status: creating native_midi_gpl/Makefile
config.status: creating SDL_mixer.spec
config.status: creating SDL_mixer.qpg
config.status: executing depfiles commands


[sl1pkn07@SpinFlo SDL_mixer]$ make
Making all in timidity
make[1]: Entering directory `/home/sl1pkn07/PSPdev/newtoolchain-20060222/trunk/SDL_mixer/timidity'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT common.lo -MD -MP -MF ".deps/common.Tpo" -c -o common.lo common.c; \
then mv -f ".deps/common.Tpo" ".deps/common.Plo"; else rm -f ".deps/common.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT common.lo -MD -MP -MF .deps/common.Tpo -c common.c -o common.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT controls.lo -MD -MP -MF ".deps/controls.Tpo" -c -o controls.lo controls.c; \
then mv -f ".deps/controls.Tpo" ".deps/controls.Plo"; else rm -f ".deps/controls.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT controls.lo -MD -MP -MF .deps/controls.Tpo -c controls.c -o controls.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT filter.lo -MD -MP -MF ".deps/filter.Tpo" -c -o filter.lo filter.c; \
then mv -f ".deps/filter.Tpo" ".deps/filter.Plo"; else rm -f ".deps/filter.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT filter.lo -MD -MP -MF .deps/filter.Tpo -c filter.c -o filter.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT instrum.lo -MD -MP -MF ".deps/instrum.Tpo" -c -o instrum.lo instrum.c; \
then mv -f ".deps/instrum.Tpo" ".deps/instrum.Plo"; else rm -f ".deps/instrum.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT instrum.lo -MD -MP -MF .deps/instrum.Tpo -c instrum.c -o instrum.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT mix.lo -MD -MP -MF ".deps/mix.Tpo" -c -o mix.lo mix.c; \
then mv -f ".deps/mix.Tpo" ".deps/mix.Plo"; else rm -f ".deps/mix.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT mix.lo -MD -MP -MF .deps/mix.Tpo -c mix.c -o mix.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT output.lo -MD -MP -MF ".deps/output.Tpo" -c -o output.lo output.c; \
then mv -f ".deps/output.Tpo" ".deps/output.Plo"; else rm -f ".deps/output.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT output.lo -MD -MP -MF .deps/output.Tpo -c output.c -o output.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT playmidi.lo -MD -MP -MF ".deps/playmidi.Tpo" -c -o playmidi.lo playmidi.c; \
then mv -f ".deps/playmidi.Tpo" ".deps/playmidi.Plo"; else rm -f ".deps/playmidi.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT playmidi.lo -MD -MP -MF .deps/playmidi.Tpo -c playmidi.c -o playmidi.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT readmidi.lo -MD -MP -MF ".deps/readmidi.Tpo" -c -o readmidi.lo readmidi.c; \
then mv -f ".deps/readmidi.Tpo" ".deps/readmidi.Plo"; else rm -f ".deps/readmidi.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT readmidi.lo -MD -MP -MF .deps/readmidi.Tpo -c readmidi.c -o readmidi.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT resample.lo -MD -MP -MF ".deps/resample.Tpo" -c -o resample.lo resample.c; \
then mv -f ".deps/resample.Tpo" ".deps/resample.Plo"; else rm -f ".deps/resample.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT resample.lo -MD -MP -MF .deps/resample.Tpo -c resample.c -o resample.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT sdl_a.lo -MD -MP -MF ".deps/sdl_a.Tpo" -c -o sdl_a.lo sdl_a.c; \
then mv -f ".deps/sdl_a.Tpo" ".deps/sdl_a.Plo"; else rm -f ".deps/sdl_a.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT sdl_a.lo -MD -MP -MF .deps/sdl_a.Tpo -c sdl_a.c -o sdl_a.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT sdl_c.lo -MD -MP -MF ".deps/sdl_c.Tpo" -c -o sdl_c.lo sdl_c.c; \
then mv -f ".deps/sdl_c.Tpo" ".deps/sdl_c.Plo"; else rm -f ".deps/sdl_c.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT sdl_c.lo -MD -MP -MF .deps/sdl_c.Tpo -c sdl_c.c -o sdl_c.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT tables.lo -MD -MP -MF ".deps/tables.Tpo" -c -o tables.lo tables.c; \
then mv -f ".deps/tables.Tpo" ".deps/tables.Plo"; else rm -f ".deps/tables.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT tables.lo -MD -MP -MF .deps/tables.Tpo -c tables.c -o tables.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ../libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT timidity.lo -MD -MP -MF ".deps/timidity.Tpo" -c -o timidity.lo timidity.c; \
then mv -f ".deps/timidity.Tpo" ".deps/timidity.Plo"; else rm -f ".deps/timidity.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT timidity.lo -MD -MP -MF .deps/timidity.Tpo -c timidity.c -o timidity.o
psp-gcc: unrecognized option '-pthread'
/bin/sh ../libtool --tag=CC --mode=link psp-gcc -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I../timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -L/usr/local/pspdev/psp/sdk/lib -lc -lpspuser -o libtimidity.la common.lo controls.lo filter.lo instrum.lo mix.lo output.lo playmidi.lo readmidi.lo resample.lo sdl_a.lo sdl_c.lo tables.lo timidity.lo -L/usr/lib -lmikmod -ldl -L/usr/lib -lm
mkdir .libs
psp-ar cru .libs/libtimidity.a common.o controls.o filter.o instrum.o mix.o output.o playmidi.o readmidi.o resample.o sdl_a.o sdl_c.o tables.o timidity.o
psp-ranlib .libs/libtimidity.a
creating libtimidity.la
(cd .libs && rm -f libtimidity.la && ln -s ../libtimidity.la libtimidity.la)
make[1]: Leaving directory `/home/sl1pkn07/PSPdev/newtoolchain-20060222/trunk/SDL_mixer/timidity'
make[1]: Entering directory `/home/sl1pkn07/PSPdev/newtoolchain-20060222/trunk/SDL_mixer'
if /bin/sh ./libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT load_aiff.lo -MD -MP -MF ".deps/load_aiff.Tpo" -c -o load_aiff.lo load_aiff.c; \
then mv -f ".deps/load_aiff.Tpo" ".deps/load_aiff.Plo"; else rm -f ".deps/load_aiff.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT load_aiff.lo -MD -MP -MF .deps/load_aiff.Tpo -c load_aiff.c -o load_aiff.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ./libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT load_voc.lo -MD -MP -MF ".deps/load_voc.Tpo" -c -o load_voc.lo load_voc.c; \
then mv -f ".deps/load_voc.Tpo" ".deps/load_voc.Plo"; else rm -f ".deps/load_voc.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT load_voc.lo -MD -MP -MF .deps/load_voc.Tpo -c load_voc.c -o load_voc.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ./libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT load_ogg.lo -MD -MP -MF ".deps/load_ogg.Tpo" -c -o load_ogg.lo load_ogg.c; \
then mv -f ".deps/load_ogg.Tpo" ".deps/load_ogg.Plo"; else rm -f ".deps/load_ogg.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT load_ogg.lo -MD -MP -MF .deps/load_ogg.Tpo -c load_ogg.c -o load_ogg.o
psp-gcc: unrecognized option '-pthread'
load_ogg.c: In function 'Mix_LoadOGG_RW':
load_ogg.c:122: warning: pointer targets in passing argument 2 of 'ov_read' differ in signedness
load_ogg.c:128: warning: pointer targets in passing argument 2 of 'ov_read' differ in signedness
if /bin/sh ./libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT mixer.lo -MD -MP -MF ".deps/mixer.Tpo" -c -o mixer.lo mixer.c; \
then mv -f ".deps/mixer.Tpo" ".deps/mixer.Plo"; else rm -f ".deps/mixer.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT mixer.lo -MD -MP -MF .deps/mixer.Tpo -c mixer.c -o mixer.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ./libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT music.lo -MD -MP -MF ".deps/music.Tpo" -c -o music.lo music.c; \
then mv -f ".deps/music.Tpo" ".deps/music.Plo"; else rm -f ".deps/music.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT music.lo -MD -MP -MF .deps/music.Tpo -c music.c -o music.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ./libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT music_cmd.lo -MD -MP -MF ".deps/music_cmd.Tpo" -c -o music_cmd.lo music_cmd.c; \
then mv -f ".deps/music_cmd.Tpo" ".deps/music_cmd.Plo"; else rm -f ".deps/music_cmd.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT music_cmd.lo -MD -MP -MF .deps/music_cmd.Tpo -c music_cmd.c -o music_cmd.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ./libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT music_ogg.lo -MD -MP -MF ".deps/music_ogg.Tpo" -c -o music_ogg.lo music_ogg.c; \
then mv -f ".deps/music_ogg.Tpo" ".deps/music_ogg.Plo"; else rm -f ".deps/music_ogg.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT music_ogg.lo -MD -MP -MF .deps/music_ogg.Tpo -c music_ogg.c -o music_ogg.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ./libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT wavestream.lo -MD -MP -MF ".deps/wavestream.Tpo" -c -o wavestream.lo wavestream.c; \
then mv -f ".deps/wavestream.Tpo" ".deps/wavestream.Plo"; else rm -f ".deps/wavestream.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT wavestream.lo -MD -MP -MF .deps/wavestream.Tpo -c wavestream.c -o wavestream.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ./libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT effect_position.lo -MD -MP -MF ".deps/effect_position.Tpo" -c -o effect_position.lo effect_position.c; \
then mv -f ".deps/effect_position.Tpo" ".deps/effect_position.Plo"; else rm -f ".deps/effect_position.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT effect_position.lo -MD -MP -MF .deps/effect_position.Tpo -c effect_position.c -o effect_position.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ./libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT effect_stereoreverse.lo -MD -MP -MF ".deps/effect_stereoreverse.Tpo" -c -o effect_stereoreverse.lo effect_stereoreverse.c; \
then mv -f ".deps/effect_stereoreverse.Tpo" ".deps/effect_stereoreverse.Plo"; else rm -f ".deps/effect_stereoreverse.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT effect_stereoreverse.lo -MD -MP -MF .deps/effect_stereoreverse.Tpo -c effect_stereoreverse.c -o effect_stereoreverse.o
psp-gcc: unrecognized option '-pthread'
if /bin/sh ./libtool --tag=CC --mode=compile psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT effects_internal.lo -MD -MP -MF ".deps/effects_internal.Tpo" -c -o effects_internal.lo effects_internal.c; \
then mv -f ".deps/effects_internal.Tpo" ".deps/effects_internal.Plo"; else rm -f ".deps/effects_internal.Tpo"; exit 1; fi
psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -MT effects_internal.lo -MD -MP -MF .deps/effects_internal.Tpo -c effects_internal.c -o effects_internal.o
psp-gcc: unrecognized option '-pthread'
/bin/sh ./libtool --tag=CC --mode=link psp-gcc -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -L/usr/local/pspdev/psp/sdk/lib -lc -lpspuser -o libSDL_mixer.la -rpath /usr/local/pspdev/psp/lib -no-undefined -release 1.2 -version-info 2:4:2 -export-symbols-regex Mix_.* load_aiff.lo load_voc.lo load_ogg.lo mixer.lo music.lo music_cmd.lo music_ogg.lo wavestream.lo effect_position.lo effect_stereoreverse.lo effects_internal.lo timidity/libtimidity.la -lvorbisidec -L/usr/local/pspdev/psp/lib -lSDLmain -lSDL -lm -L/usr/local/pspdev/psp/sdk/lib -lpspdebug -lpspgu -lpspctrl -lpspge -lpspdisplay -lpsphprm -lpspsdk -lpsprtc -lpspaudio -lc -lpspuser -lpsputility -lpspkernel -L/usr/lib -lmikmod -ldl -L/usr/lib -lm
mkdir .libs
rm -fr .libs/libSDL_mixer.lax
mkdir .libs/libSDL_mixer.lax
rm -fr .libs/libSDL_mixer.lax/libtimidity.a
mkdir .libs/libSDL_mixer.lax/libtimidity.a
(cd .libs/libSDL_mixer.lax/libtimidity.a && psp-ar x /home/sl1pkn07/PSPdev/newtoolchain-20060222/trunk/SDL_mixer/timidity/.libs/libtimidity.a)
psp-ar cru .libs/libSDL_mixer.a load_aiff.o load_voc.o load_ogg.o mixer.o music.o music_cmd.o music_ogg.o wavestream.o effect_position.o effect_stereoreverse.o effects_internal.o .libs/libSDL_mixer.lax/libtimidity.a/sdl_c.o .libs/libSDL_mixer.lax/libtimidity.a/resample.o .libs/libSDL_mixer.lax/libtimidity.a/tables.o .libs/libSDL_mixer.lax/libtimidity.a/controls.o .libs/libSDL_mixer.lax/libtimidity.a/readmidi.o .libs/libSDL_mixer.lax/libtimidity.a/playmidi.o .libs/libSDL_mixer.lax/libtimidity.a/mix.o .libs/libSDL_mixer.lax/libtimidity.a/instrum.o .libs/libSDL_mixer.lax/libtimidity.a/sdl_a.o .libs/libSDL_mixer.lax/libtimidity.a/filter.o .libs/libSDL_mixer.lax/libtimidity.a/output.o .libs/libSDL_mixer.lax/libtimidity.a/timidity.o .libs/libSDL_mixer.lax/libtimidity.a/common.o
psp-ranlib .libs/libSDL_mixer.a
rm -fr .libs/libSDL_mixer.lax
creating libSDL_mixer.la
(cd .libs && rm -f libSDL_mixer.la && ln -s ../libSDL_mixer.la libSDL_mixer.la)
if psp-gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"SDL_mixer\" -DVERSION=\"1.2.6\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -I. -I. -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -MT playwave.o -MD -MP -MF ".deps/playwave.Tpo" -c -o playwave.o playwave.c; \
then mv -f ".deps/playwave.Tpo" ".deps/playwave.Po"; else rm -f ".deps/playwave.Tpo"; exit 1; fi
psp-gcc: opción '-pthread' no reconocida
/bin/sh ./libtool --tag=CC --mode=link psp-gcc -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -pthread -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I"/usr/local/pspdev/psp/sdk/include" -L/usr/local/pspdev/psp/sdk/lib -lc -lpspuser -o playwave playwave.o libSDL_mixer.la -L/usr/local/pspdev/psp/lib -lSDLmain -lSDL -lm -L/usr/local/pspdev/psp/sdk/lib -lpspdebug -lpspgu -lpspctrl -lpspge -lpspdisplay -lpsphprm -lpspsdk -lpsprtc -lpspaudio -lc -lpspuser -lpsputility -lpspkernel -L/usr/lib -lmikmod -ldl -L/usr/lib -lm
psp-gcc -g -O2 -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -DUSE_RWOPS -DCMD_MUSIC -DWAV_MUSIC -DLIBMIKMOD_MUSIC -D_REENTRANT -DMID_MUSIC -DUSE_TIMIDITY_MIDI -I./timidity -DOGG_MUSIC -DOGG_MUSIC -DUSE_TREMOR -G0 -I/usr/local/pspdev/psp/sdk/include -o playwave playwave.o -pthread -L/usr/local/pspdev/psp/sdk/lib ./.libs/libSDL_mixer.a -L/usr/lib /usr/local/pspdev/psp/lib/libvorbisidec.a -L/usr/local/pspdev/psp/lib -lSDLmain -lSDL -lpspdebug -lpspgu -lpspctrl -lpspge -lpspdisplay -lpsphprm -lpspsdk -lpsprtc -lpspaudio -lc -lpspuser -lpsputility -lpspkernel -lmikmod -ldl -lm
psp-gcc: unrecognized option '-pthread'
/usr/local/pspdev/lib/gcc/psp/4.0.2/../../../../psp/bin/ld: skipping incompatible /usr/lib/libSDLmain.a when searching for -lSDLmain
/usr/local/pspdev/lib/gcc/psp/4.0.2/../../../../psp/bin/ld: skipping incompatible /usr/lib/libSDL.a when searching for -lSDL
/usr/local/pspdev/lib/gcc/psp/4.0.2/../../../../psp/bin/ld: skipping incompatible /usr/lib/libc.a when searching for -lc
/usr/local/pspdev/lib/gcc/psp/4.0.2/../../../../psp/bin/ld: skipping incompatible /usr/lib/libmikmod.a when searching for -lmikmod
/usr/local/pspdev/lib/gcc/psp/4.0.2/../../../../psp/bin/ld: skipping incompatible /usr/lib/libdl.a when searching for -ldl
/usr/local/pspdev/lib/gcc/psp/4.0.2/../../../../psp/bin/ld: cannot find -ldl
collect2: ld returned 1 exit status
make[1]: *** [playwave] Error 1
make[1]: Leaving directory `/home/sl1pkn07/PSPdev/newtoolchain-20060222/trunk/SDL_mixer'
make: *** [all-recursive] Error 1
[sl1pkn07@SpinFlo SDL_mixer]$

if uninstall Mikmod

[root@SpinFlo pspdev]# rpm -e mikmod
error: Failed dependencies:
libmikmod.so.2 is needed by (installed) SDL_sound-1.0.1-1.i386
libmikmod.so.2 is needed by (installed) SDL_mixer-1.2.6-7.fc5.i386
libmikmod.so.2 is needed by (installed) xmms-libs-1.2.10-25.fc5.i386
mikmod = 3.1.6-36.2.1 is needed by (installed) mikmod-devel-3.1.6-36.2.1.i386
[root@SpinFlo pspdev]#
jimparis
Posts: 1145
Joined: Fri Jun 10, 2005 4:21 am
Location: Boston

Post by jimparis »

sl1pkn07 wrote:checking for libmikmod-config... /usr/bin/libmikmod-config
Yes, your problem is exactly the same as
http://forums.ps2dev.org/viewtopic.php?p=34131#34131
If --disable-music-libmikmod doesn't work, you'll have to either
uninstall your system libmikmod, or at least remove /usr/bin/libmikmod-config temporarily while building the psp
libraries; I don't know another way around it at the moment.
sl1pkn07
Posts: 7
Joined: Wed May 31, 2006 4:55 pm

Post by sl1pkn07 »

ok,

disable mikmod compatibily and change name libmikmod-config

compile working

thanks
Post Reply