part-cw / lambdanative

LambdaNative is a cross-platform development environment written in Scheme, supporting Android, iOS, BlackBerry 10, OS X, Linux, Windows, OpenBSD, NetBSD, FreeBSD and OpenWrt.
http://www.lambdanative.org
Other
1.4k stars 86 forks source link

Can't build lambdanative on Ubuntu 12.04 #4

Closed iantor closed 11 years ago

iantor commented 11 years ago

I've installed all listed tools. I installed the Android NDK and SDK I configured SETUP and PROFILE as per instructions

./configure DemoHelloWorld ==> configured to build DemoHelloWorld for linux in normal mode == using source in /home/user/lambdanative/apps/DemoHelloWorld make === using profile phorix [/home/user/lambdanative/PROFILE].. === configured to build DemoHelloWorld version 1.0 for linux on linux in normal mode lambdanative: 7a217a0 ==> creating libraries needed for DemoHelloWorld.. ERROR: failed on file /home/user/lambdanative-cache/linux/lib/libgambc.a make: *\ [all] Error 1


Seems like script ./libraries/libgambc/build.sh.in is failing to download and build gambit.

mgorges commented 11 years ago

@iantor could you run ./configure DemoHelloWorld debug verbose; make and post the results pertaining to libgambc not building.

chrhlnd commented 11 years ago

Here are notes for my building on linux for linux. I'm still getting warnings too:

boot Virtual Box with debian-7.1.0-i386-netinst.iso install ...

sudo aptitude -y install xserver-xorg-core xinit menu menu-xdg jwm fluxbox alsa-utils mrxvt-mini gdebi-core synaptic logrotate localepurge vim

sudo aptitude -y install freetype netpbm imagemagick cmake libfreetype6-dev sudo aptitude -y install texlive-latex-recommended tgif zlib1g-dev sudo aptitude -y install freeglut3 freeglut3-dev binutils-gold g++ libglew-dev mesa-common-dev build-essential libglew1.5-dev libglm-dev sudo aptitude -y install libasound2-dev zip

git clone https://github.com/part-cw/lambdanative.git

cd lambdnative

vim +186 make.sh o if [ ! - e $tgt ]; then result="yes" fi

wq cp PROFILE.template PROFILE vim PROFILE cp SETUP.template SETUP vim SETUP ./configure DemoHelloWorld debug verbose make See it fail due to some type of time check in the make script It seems to be relying on time checks for null in the bash scripts which don't work out like you'd think on linux. Hence I've had to add [ ! -e ] checks to make it know those files need to be re built. On DemoHelloWorld I'm still getting WARNINGS === using profile Chris [/home/cholland/lambdanative/PROFILE].. === configured to build DemoHelloWorld version 1.0 for linux on linux in debug mode lambdanative: dfc4e23 ==> creating libraries needed for DemoHelloWorld.. /home/cholland/lambdanative/libraries/libgambc /home/cholland/lambdanative-cache/linux/lib/libgambc.a /home/cholland/lambdanative/libraries/libportaudio /home/cholland/lambdanative-cache/linux/lib/libportaudio.a ==> creating tools needed for DemoHelloWorld.. ==> creating artwork needed for DemoHelloWorld.. ==> creating textures needed for DemoHelloWorld.. ==> creating fonts needed for DemoHelloWorld.. ==> creating strings needed for DemoHelloWorld.. ==> creating payload needed for DemoHelloWorld.. => /home/cholland/lambdanative/modules/config/config.scm.. => creating gsc link.. **\* WARNING -- "/home/cholland/lambdanative-cache/build/DemoHelloWorld/strings/strings_include.scm.." is not defined, **\* referenced in: ("/home/cholland/lambdanative-cache/linux/build/d0342ad52951088cc9f5c5e93a072503.c") **\* WARNING -- "ascii_18.fnt" is not defined, **\* referenced in: ("/home/cholland/lambdanative-cache/linux/build/ceafb7cb345ef24f3a8ae811854268c9.c") **\* WARNING -- "title.img" is not defined, **\* referenced in: ("/home/cholland/lambdanative-cache/linux/build/ceafb7cb345ef24f3a8ae811854268c9.c") => generating hook.. => assembling payload.. ==> creating linux bootstrap needed for DemoHelloWorld.. => transferring sounds... => compiling application.. => cleaning up.. === /home/cholland/lambdanative-cache/linux/DemoHelloWorld ==> making package.. => making generic zip archive /home/cholland/lambdanative-cache/packages/DemoHelloWorld-1.0-linux.zip.. === /home/cholland/lambdanative-cache/packages/DemoHelloWorld-1.0-linux.zip
chrhlnd commented 11 years ago

If I run the binary it builds I just get a segfault I assume its due to the warnings.

mgorges commented 11 years ago

@chrhlnd your problem is unrelated to the problem reported by @iantor . He is experiencing a failure to build libgambc, while you are having a FONTS and STRINGS building problem. As I can't tell which version of LambdaNative you are on, maybe we you could start by make clean; make and report where in the string building the problem occurs?

chrhlnd commented 11 years ago

Actually that "vim +186 make.sh" and the edit below will fix the problem. Then he'll run into it again in another script I think something output by the build process. I had to do the edit again to make it realize it didn't have a file. I'll make again in sec fighting with virtualbox.

mgorges commented 11 years ago

@chrhlnd, sorry I can't seem to identify the problem. Line 186 in make.sh, as of 7a217a0d, points to newersourceindir(). In this function the second argument can't be a nonexisting file, as the [ ! -f "$otgt" ] test in Line 373 prevents the script from reaching the call for newersourceindir() in that case. Hence your proposed patch patch won't do anything. --> Please point me to my error in understanding your patch? Thank you!

chrhlnd commented 11 years ago

I had to change "newerindir". For whatever reason on linux it was returning "no" if the target file didn't exist. FYI copy and paste is failing me from the vm so I just typed it out for now so the syntax may not be exact.

newerindir()
{
  result="no"
  tgt="$2"
  # CMH ### ADDED
  if [ ! -e $tgt ]; then
    result="yes"
  fi
  # CMD ### DONE
  if [ -d $1 ]; then
    dir=$1
  else
    dir=`dirname $1`
  fi
  srcfiles=`ls -1 $dir/*`
  for src in $srcfiles; do
    if `test "$src" -nt "$tgt"`; then
      result="yes"
    fi
  done
  echo $result
}
mgorges commented 11 years ago

Thanks, @chrhlnd - patched in 10e4640

iantor commented 11 years ago

Got new commit, re-attempted make. Downloads seemed to work, but got the following error later on.

==> creating textures needed for DemoHelloWorld.. ./make.sh: 575: [: X: unexpected operator ==> creating fonts needed for DemoHelloWorld.. => ascii.. ==> creating strings needed for DemoHelloWorld.. => title.. ERROR: failed on file tmp.pdf make: *\ [all] Error 1

iantor commented 11 years ago

Additional test with verbose and debug

./configure DemoHelloWorld debug verbose ==> configured to build DemoHelloWorld for linux in debug verbose mode == using source in /home/user/lambdanative/apps/DemoHelloWorld user@basebuntu12v1:~/lambdanative$ make === using profile phorix [/home/user/lambdanative/PROFILE].. === configured to build DemoHelloWorld version 1.0 for linux on linux in debug mode lambdanative: b1b9e75 \ WARNING: previous build aborted unexpectantly in state: STRINGS => removing old /home/user/lambdanative-cache/build/DemoHelloWorld/strings/strings_include.scm.. ==> creating libraries needed for DemoHelloWorld.. ==> creating tools needed for DemoHelloWorld.. ==> creating artwork needed for DemoHelloWorld.. ==> creating textures needed for DemoHelloWorld.. ./make.sh: 575: [: X: unexpected operator ==> creating fonts needed for DemoHelloWorld.. ==> creating strings needed for DemoHelloWorld.. ==> creating payload needed for DemoHelloWorld.. => /home/user/lambdanative/modules/config/config.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/ae05046acaa09186774092dfcf6a22ca.c /home/user/lambdanative/modules/config/config.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/ae05046acaa09186774092dfcf6a22ca.o /home/user/lambdanative-cache/linux/build/ae05046acaa09186774092dfcf6a22ca.c -I/home/user/lambdanative-cache/linux/include => /home/user/lambdanative/modules/eventloop/eventloop.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/266ec4e2e086973225b8a10ec9e8145e.c /home/user/lambdanative/modules/eventloop/eventloop.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/266ec4e2e086973225b8a10ec9e8145e.o /home/user/lambdanative-cache/linux/build/266ec4e2e086973225b8a10ec9e8145e.c -I/home/user/lambdanative-cache/linux/include => /home/user/lambdanative/modules/ln_core/ln_core.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/b98c192b3f75ecb9924218fb419c53d5.c /home/user/lambdanative/modules/ln_core/ln_core.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/b98c192b3f75ecb9924218fb419c53d5.o /home/user/lambdanative-cache/linux/build/b98c192b3f75ecb9924218fb419c53d5.c -I/home/user/lambdanative-cache/linux/include => /home/user/lambdanative/modules/ln_glcore/ln_glcore.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/367fa4f649256ac8b93d110069b4ea65.c /home/user/lambdanative/modules/ln_glcore/ln_glcore.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/367fa4f649256ac8b93d110069b4ea65.o /home/user/lambdanative-cache/linux/build/367fa4f649256ac8b93d110069b4ea65.c -I/home/user/lambdanative-cache/linux/include /home/user/lambdanative-cache/linux/build/367fa4f649256ac8b93d110069b4ea65.c:41051:19: fatal error: GL/gl.h: No such file or directory compilation terminated. ERROR: failed on file /home/user/lambdanative-cache/linux/build/367fa4f649256ac8b93d110069b4ea65.o make: *\ [all] Error 1

mgorges commented 11 years ago

I believe you have two separate problems. a) You are missing OpenGL library headers as seen here fatal error: GL/gl.h: No such file or directory. I am not super familiar with Ubuntu but I think you are missing the following packages: libgl1-mesa-dev, libglu1-mesa-dev. b) Something in make.sh where the test if [ "X" == "X$srcdir" ]; then return; fi fails in your shell as DemoHelloWorld has no textures. What shell are you using?

chrhlnd commented 11 years ago

Looks like you're missing your opengl dev headers. Also you might be missing Latex packages.

\ WARNING: previous build aborted unexpectantly in state: STRINGS

I was getting that until I installed xlatex and fully rebuilt.

sudo aptitude -y install texlive-xetex

That is the package for apt-get/debian I think ubuntu too. The opengl packages are

sudo aptitude -y install freeglut3 freeglut3-dev libglew-dev mesa-common-dev libglew1.5-dev libglm-dev

iantor commented 11 years ago

I will install the recommended libraries and start from scratch, and will report any errors. I am using bash.

iantor commented 11 years ago

OK, installed opengl libraries (don't know how I missed that in the first place).

./configure DemoHelloWorld debug verbose make

-- lots of successful downloads and compilations -- then make stops with an error

=> generating 36x36 pixmap.. => generating 32x32 pixmap.. => generating 29x29 pixmap.. => generating 16x16 pixmap.. => generating retina default image.. ==> creating textures needed for DemoHelloWorld.. ./make.sh: 575: [: X: unexpected operator ==> creating fonts needed for DemoHelloWorld.. => ascii.. ==> creating strings needed for DemoHelloWorld.. => title.. ERROR: failed on file tmp.pdf make: *\ [all] Error 1

mgorges commented 11 years ago

The xetex build of the title string failed, which prompts assertfile to kill it. I will modify the make.sh to report those errors.

iantor commented 11 years ago

going to install texlive-full and will report what happens.

Ian

On Sun, Aug 11, 2013 at 4:05 PM, Matthias Görges notifications@github.comwrote:

The xetex build of the title string failed, which prompts assertfile to kill it. I will modify the make.sh to report those errors.

— Reply to this email directly or view it on GitHubhttps://github.com/part-cw/lambdanative/issues/4#issuecomment-22464155 .

Ian Garmaise Consultant Phorix Solutions Group Inc. ian.g@phorixsol.com Skype: iantor Toronto: 416.432.2251 NYC: 917.512.9535

http://www.PhorixSol.com

mgorges commented 11 years ago

@iantor You probably won't need texlive-full but texlive-xetex would be a requirement. It is pulled by texlive-full so if you already installed that you should be good to go. Commit c84124c2 should also make the latex command verbose if it fails, which may point you to another problem.

iantor commented 11 years ago

You were right about texlive-full, it filled up my entire VM. I've reverted to backup, properly installed texlive, texlive-xetex, and all the opengl libraries previously mentioned. The TeX version in the repository for Ubuntu 12.04 is the version from 2009, hope that will work. Installing the later 2012 edition would require using a backport which I'm not keen to do. About to give it a try.

iantor commented 11 years ago

Mostly looks ok now except for the following problem. I've included the complete trace at the end of this message.

gcc -g -m32 -DLINUX -I/home/user/lambdanative-cache/linux/include x11_microgl.c main.c -o /home/user/lambdanative-cache/linux/DemoHelloWorld/DemoHelloWorld -L/usr/local/linux/i686-linux/lib -L/home/user/lambdanative-cache/linux/lib -lpayload -lGL -lXext -lX11 -lasound -lrt -lutil -lpthread -ldl -lm /usr/bin/ld: cannot find -lasound collect2: ld returned 1 exit status ERROR: failed with exit code 1 make: *\ [all] Error 1 user@basebuntu12v1:~/lambdanative$

The following warnings were also included, which I guess indicates what the problem might be.

If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following:

See any operating system documentation about shared libraries for

more information, such as the ld(1) and ld.so(8) manual pages.


PortAudio was successfully installed.

On some systems (e.g. Linux) you should run 'ldconfig' now to make the shared object available. You may also need to modify your LD_LIBRARY_PATH environment variable to include the directory /home/user/lambdanative-cache/linux/lib


complete make log

./configure DemoHelloWorld debug verbose ==> configured to build DemoHelloWorld for linux in debug verbose mode == using source in /home/user/lambdanative/apps/DemoHelloWorld user@basebuntu12v1:~/lambdanative$ make === using profile phorix [/home/user/lambdanative/PROFILE].. === configured to build DemoHelloWorld version 1.0 for linux on linux in debug mode lambdanative: c84124c ==> creating libraries needed for DemoHelloWorld.. => libgambc.. ==> No source found, attempting to download.. --2013-08-11 20:27:34-- http://www.iro.umontreal.ca/~gambit/download/gambit/v4.7/source/gambc-v4_7_0.tgz Resolving www.iro.umontreal.ca (www.iro.umontreal.ca)... 132.204.24.179 Connecting to www.iro.umontreal.ca (www.iro.umontreal.ca)|132.204.24.179|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 11074266 (11M) [application/x-gzip] Saving to: `/home/user/lambdanative-cache/packages/gambc-v4_7_0.tgz'

100%[======================================>] 11,074,266 1.02M/s in 11s

2013-08-11 20:27:46 (991 KB/s) - `/home/user/lambdanative-cache/packages/gambc-v4_7_0.tgz' saved [11074266/11074266]

==> Extracting source... ==> Configuring source... ==> Patching source... ls: cannot access ../../*.patch: No such file or directory ==> Compiling source... making all in include making all in lib os_io.c: In function ‘_device_stream_setup_from_process’: os_io.c:7201:17: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result] osfiles.c: In function ‘os_path_normalize_directory’: os_files.c:870:21: warning: ignoring return value of ‘chdir’, declared with attribute warn_unused_result [-Wunused-result] os_shell.c: In function ‘___os_shell_command’: os_shell.c:865:25: warning: ignoring return value of ‘chdir’, declared with attribute warn_unused_result [-Wunused-result] making all in gsi making all in gsc making all in bin making all in misc making all in doc making all in tests making all in examples making all in distr-comp making all in pi making all in ring making all in web-repl making all in web-server making all in tcltk making all in Xlib-simple making all in pthread making all in misc making all in contrib making all in GambitREPL making all in prebuilt making all in macosx making all in windows ==> Installing... making all in include making all in lib making all in gsi making all in gsc making all in bin making all in misc making all in doc making all in tests making all in examples making all in distr-comp making all in pi making all in ring making all in web-repl making all in web-server making all in tcltk making all in Xlib-simple making all in pthread making all in misc making all in contrib making all in GambitREPL making all in prebuilt making all in macosx making all in windows making install in include making install in lib making install in gsi making install in gsc making install in bin making install in misc mkdir /home/user/lambdanative-cache/linux/share mkdir /home/user/lambdanative-cache/linux/share/emacs mkdir /home/user/lambdanative-cache/linux/share/emacs/site-lisp making install in doc mkdir /home/user/lambdanative-cache/linux/doc mkdir /home/user/lambdanative-cache/linux/info mkdir /home/user/lambdanative-cache/linux/share/man mkdir /home/user/lambdanative-cache/linux/share/man/man1 making install in tests making install in examples making all in distr-comp making all in pi making all in ring making all in web-repl making all in web-server making all in tcltk making all in Xlib-simple making all in pthread making all in misc making install in distr-comp making install in pi making install in ring making install in web-repl making install in web-server making install in tcltk making install in Xlib-simple making install in pthread making install in misc making install in contrib making all in GambitREPL making install in GambitREPL making install in prebuilt making all in macosx making all in windows making install in macosx making install in windows ==> Cleaning up... ==> All done. => exploding library libgambc.. => libportaudio.. ==> checking for local installed library.. ==> No source found, attempting to download.. --2013-08-11 20:30:24-- http://www.portaudio.com/archives/pa_snapshot.tgz Resolving www.portaudio.com (www.portaudio.com)... 107.22.210.58 Connecting to www.portaudio.com (www.portaudio.com)|107.22.210.58|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1504069 (1.4M) [application/x-gzip] Saving to: `/home/user/lambdanative-cache/packages/pa_snapshot.tgz'

100%[======================================>] 1,504,069 1016K/s in 1.4s

2013-08-11 20:30:26 (1016 KB/s) - `/home/user/lambdanative-cache/packages/pa_snapshot.tgz' saved [1504069/1504069]

==> Extracting source... ==> Patching source... patching file configure.in ==> Configuring source... 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 ==> Compiling source... libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/common/pa_allocation.c -o src/common/pa_allocation.o libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/common/pa_converters.c -o src/common/pa_converters.o libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/common/pa_cpuload.c -o src/common/pa_cpuload.o libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/common/pa_dither.c -o src/common/pa_dither.o libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/common/pa_debugprint.c -o src/common/pa_debugprint.o libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/common/pa_front.c -o src/common/pa_front.o libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/common/pa_process.c -o src/common/pa_process.o libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/common/pa_stream.c -o src/common/pa_stream.o libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/common/pa_trace.c -o src/common/pa_trace.o libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/hostapi/skeleton/pa_hostapi_skeleton.c -o src/hostapi/skeleton/pa_hostapi_skeleton.o libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/hostapi/oss/pa_unix_oss.c -o src/hostapi/oss/pa_unix_oss.o libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/os/unix/pa_unix_hostapis.c -o src/os/unix/pa_unix_hostapis.o libtool: compile: gcc -g -m32 -DLINUX -c -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 src/os/unix/pa_unix_util.c -o src/os/unix/pa_unix_util.o libtool: link: /usr/bin/ar cru lib/.libs/libportaudio.a src/common/pa_allocation.o src/common/pa_converters.o src/common/pa_cpuload.o src/common/pa_dither.o src/common/pa_debugprint.o src/common/pa_front.o src/common/pa_process.o src/common/pa_stream.o src/common/pa_trace.o src/hostapi/skeleton/pa_hostapi_skeleton.o src/hostapi/oss/pa_unix_oss.o src/os/unix/pa_unix_hostapis.o src/os/unix/pa_unix_util.o libtool: link: ranlib lib/.libs/libportaudio.a libtool: link: ( cd "lib/.libs" && rm -f "libportaudio.la" && ln -s "../libportaudio.la" "libportaudio.la" ) libtool: link: gcc -g -m32 -DLINUX -o bin/patest1 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest1.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_buffer -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_buffer.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_callbackstop -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_callbackstop.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_clip -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_clip.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_dither -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_dither.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_hang -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_hang.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_in_overflow -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_in_overflow.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_latency -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_latency.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_leftright -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_leftright.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_longsine -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_longsine.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_many -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_many.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_maxsines -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_maxsines.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_mono -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_mono.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_multi_sine -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_multi_sine.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_out_underflow -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_out_underflow.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_prime -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_prime.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_ringmix -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_ringmix.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_sine8 -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_sine8.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_sine_channelmaps -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_sine_channelmaps.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_sine_formats -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_sine_formats.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_sine_time -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_sine_time.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_sine_srate -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_sine_srate.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_start_stop -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_start_stop.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_stop -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_stop.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_stop_playout -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_stop_playout.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_toomanysines -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_toomanysines.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_two_rates -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_two_rates.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_underflow -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_underflow.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/patest_wire -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/patest_wire.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/pa_minlat -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./test/pa_minlat.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/pa_devs -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./examples/pa_devs.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/pa_fuzz -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./examples/pa_fuzz.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/paex_pink -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./examples/paex_pink.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/paex_read_write_wire -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./examples/paex_read_write_wire.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/paex_record -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./examples/paex_record.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/paex_saw -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./examples/paex_saw.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/paex_sine -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./examples/paex_sine.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/paex_write_sine -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./examples/paex_write_sine.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/paex_write_sine_nonint -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./examples/paex_write_sine_nonint.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/paqa_devs -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./qa/paqa_devs.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/paqa_errs -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./qa/paqa_errs.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread libtool: link: gcc -g -m32 -DLINUX -o bin/paqa_latency -g -O2 -DPA_LITTLE_ENDIAN -I./include -I./src/common -I./src/os/unix -pthread -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_SYS_SOUNDCARD_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DHAVE_CLOCK_GETTIME=1 -DHAVE_NANOSLEEP=1 -DPA_USE_OSS=1 ./qa/paqa_latency.c lib/.libs/libportaudio.a -lrt -lm -lpthread -pthread ==> Installing... libtool: install: /usr/bin/install -c lib/.libs/libportaudio.lai /home/user/lambdanative-cache/linux/lib/libportaudio.la libtool: install: /usr/bin/install -c lib/.libs/libportaudio.a /home/user/lambdanative-cache/linux/lib/libportaudio.a libtool: install: chmod 644 /home/user/lambdanative-cache/linux/lib/libportaudio.a libtool: install: ranlib /home/user/lambdanative-cache/linux/lib/libportaudio.a

libtool: finish: PATH="/usr/local/heroku/bin:/home/user/bin:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/home/user/bin:/sbin" ldconfig -n /home/user/lambdanative-cache/linux/lib

Libraries have been installed in: /home/user/lambdanative-cache/linux/lib

If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following:

See any operating system documentation about shared libraries for

more information, such as the ld(1) and ld.so(8) manual pages.


PortAudio was successfully installed.

On some systems (e.g. Linux) you should run 'ldconfig' now to make the shared object available. You may also need to modify your LD_LIBRARY_PATH environment variable to include

the directory /home/user/lambdanative-cache/linux/lib

==> Cleaning up... ==> All done. => exploding library libportaudio.. ==> creating tools needed for DemoHelloWorld.. => /home/user/lambdanative-cache/linux/bin/png2scm.. => /home/user/lambdanative-cache/linux/bin/ttffnt2scm.. texture-font.c: In function ‘texture_font_load_glyphs’: texture-font.c:422:13: warning: variable ‘ft_bitmap_pitch’ set but not used [-Wunused-but-set-variable] => /home/user/lambdanative-cache/linux/bin/ttfstr2scm.. texture-font.c: In function ‘texture_font_load_glyphs’: texture-font.c:422:13: warning: variable ‘ft_bitmap_pitch’ set but not used [-Wunused-but-set-variable] texture-font.c: In function ‘texture_font_get_glyph’: texture-font.c:622:30: warning: variable ‘data’ set but not used [-Wunused-but-set-variable] => /home/user/lambdanative-cache/linux/bin/ttfname.. ==> creating artwork needed for DemoHelloWorld.. => generating master pixmap.. gs -r600 -dNOPAUSE -sDEVICE=png16m -dEPSCrop -sOutputFile=/home/user/lambdanative-cache/build/DemoHelloWorld/tmp.png /home/user/lambdanative/apps/DemoHelloWorld/artwork.eps quit.ps GPL Ghostscript 9.05 (2012-02-08) Copyright (C) 2010 Artifex Software, Inc. All rights reserved. This software comes with NO WARRANTY: see the file PUBLIC for details. Loading NimbusSanL-Regu font from /usr/share/fonts/type1/gsfonts/n019003l.pfb... 2643360 1296600 2004580 680403 3 done. convert /home/user/lambdanative-cache/build/DemoHelloWorld/tmp.png -trim -transparent "#00ff00" /home/user/lambdanative-cache/build/DemoHelloWorld/artwork.png => generating 1024x1024 pixmap.. => generating 512x512 pixmap.. => generating 144x144 pixmap.. => generating 128x128 pixmap.. => generating 114x114 pixmap.. => generating 96x96 pixmap.. => generating 72x72 pixmap.. => generating 58x58 pixmap.. => generating 57x57 pixmap.. => generating 48x48 pixmap.. => generating 36x36 pixmap.. => generating 32x32 pixmap.. => generating 29x29 pixmap.. => generating 16x16 pixmap.. => generating retina default image.. ==> creating textures needed for DemoHelloWorld.. ./make.sh: 575: [: X: unexpected operator ==> creating fonts needed for DemoHelloWorld.. => ascii.. ==> creating strings needed for DemoHelloWorld.. => title.. xelatex tmp.tex This is XeTeX, Version 3.1415926-2.2-0.9995.2 (TeX Live 2009/Debian) entering extended mode (./tmp.tex LaTeX2e <2009/09/24> Babel <v3.8l> and hyphenation patterns for english, usenglishmax, dumylang, noh yphenation, loaded. (/usr/share/texmf-texlive/tex/latex/base/article.cls Document Class: article 2007/10/19 v1.4h Standard LaTeX document class (/usr/share/texmf-texlive/tex/latex/base/size10.clo)) (/usr/share/texmf-texlive/tex/xelatex/fontspec/fontspec.sty (/usr/share/texmf-texlive/tex/generic/ifxetex/ifxetex.sty) (/usr/share/texmf-texlive/tex/latex/tools/calc.sty) (/usr/share/texmf-texlive/tex/latex/xkeyval/xkeyval.sty (/usr/share/texmf-texlive/tex/generic/xkeyval/xkeyval.tex (/usr/share/texmf-texlive/tex/generic/xkeyval/keyval.tex))) (/usr/share/texmf-texlive/tex/latex/base/fontenc.sty (/usr/share/texmf-texlive/tex/xelatex/euenc/eu1enc.def) (/usr/share/texmf-texlive/tex/xelatex/euenc/eu1lmr.fd)) fontspec.cfg loaded. (/usr/share/texmf-texlive/tex/xelatex/fontspec/fontspec.cfg)) (/usr/share/texmf-texlive/tex/xelatex/xunicode/xunicode.sty) (/usr/share/texmf-texlive/tex/latex/geometry/geometry.sty (/usr/share/texmf-texlive/tex/generic/oberdiek/ifpdf.sty) (/usr/share/texmf-texlive/tex/generic/oberdiek/ifvtex.sty) (/usr/share/texmf-texlive/tex/xelatex/xetexconfig/geometry.cfg)) No file tmp.aux. geometry detected driver: pdftex 1 ) Output written on tmp.pdf (1 page). Transcript written on tmp.log. pdftops tmp.pdf ps2eps -B -C tmp.ps Input files: tmp.ps Processing: tmp.ps Calculating Bounding Box...ready. %%BoundingBox: 8 119 192 137 Creating output file tmp.eps ... ready. gs -r300 -dNOPAUSE -sDEVICE=pnggray -dEPSCrop -sOutputFile=title.png tmp.eps quit.ps GPL Ghostscript 9.05 (2012-02-08) Copyright (C) 2010 Artifex Software, Inc. All rights reserved. This software comes with NO WARRANTY: see the file PUBLIC for details. convert title.png -bordercolor White -border 5x5 -negate -scale 25% title.png ==> creating payload needed for DemoHelloWorld.. => /home/user/lambdanative/modules/config/config.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/ae05046acaa09186774092dfcf6a22ca.c /home/user/lambdanative/modules/config/config.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/ae05046acaa09186774092dfcf6a22ca.o /home/user/lambdanative-cache/linux/build/ae05046acaa09186774092dfcf6a22ca.c -I/home/user/lambdanative-cache/linux/include => /home/user/lambdanative/modules/eventloop/eventloop.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/266ec4e2e086973225b8a10ec9e8145e.c /home/user/lambdanative/modules/eventloop/eventloop.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/266ec4e2e086973225b8a10ec9e8145e.o /home/user/lambdanative-cache/linux/build/266ec4e2e086973225b8a10ec9e8145e.c -I/home/user/lambdanative-cache/linux/include => /home/user/lambdanative/modules/ln_core/ln_core.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/b98c192b3f75ecb9924218fb419c53d5.c /home/user/lambdanative/modules/ln_core/ln_core.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/b98c192b3f75ecb9924218fb419c53d5.o /home/user/lambdanative-cache/linux/build/b98c192b3f75ecb9924218fb419c53d5.c -I/home/user/lambdanative-cache/linux/include => /home/user/lambdanative/modules/ln_glcore/ln_glcore.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/367fa4f649256ac8b93d110069b4ea65.c /home/user/lambdanative/modules/ln_glcore/ln_glcore.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/367fa4f649256ac8b93d110069b4ea65.o /home/user/lambdanative-cache/linux/build/367fa4f649256ac8b93d110069b4ea65.c -I/home/user/lambdanative-cache/linux/include => /home/user/lambdanative/modules/ln_glgui/ln_glgui.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/b7d76540eb9715c2d4ead54244b834db.c /home/user/lambdanative/modules/ln_glgui/ln_glgui.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/b7d76540eb9715c2d4ead54244b834db.o /home/user/lambdanative-cache/linux/build/b7d76540eb9715c2d4ead54244b834db.c -I/home/user/lambdanative-cache/linux/include => /home/user/lambdanative/modules/ln_audio/ln_audio.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/29673c00a695ce1c98f79eff5477094a.c /home/user/lambdanative/modules/ln_audio/ln_audio.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/29673c00a695ce1c98f79eff5477094a.o /home/user/lambdanative-cache/linux/build/29673c00a695ce1c98f79eff5477094a.c -I/home/user/lambdanative-cache/linux/include => /home/user/lambdanative-cache/build/DemoHelloWorld/textures/textures_include.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/aa969c93344987b98a0c74f1a1002f38.c /home/user/lambdanative-cache/build/DemoHelloWorld/textures/textures_include.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/aa969c93344987b98a0c74f1a1002f38.o /home/user/lambdanative-cache/linux/build/aa969c93344987b98a0c74f1a1002f38.c -I/home/user/lambdanative-cache/linux/include => /home/user/lambdanative-cache/build/DemoHelloWorld/fonts/fonts_include.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/3743d67d3e4a12297989ffbb41c31c19.c /home/user/lambdanative-cache/build/DemoHelloWorld/fonts/fonts_include.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/3743d67d3e4a12297989ffbb41c31c19.o /home/user/lambdanative-cache/linux/build/3743d67d3e4a12297989ffbb41c31c19.c -I/home/user/lambdanative-cache/linux/include => /home/user/lambdanative-cache/build/DemoHelloWorld/strings/strings_include.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/e066a4ad292e411a7ec150e22532da4b.c /home/user/lambdanative-cache/build/DemoHelloWorld/strings/strings_include.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/e066a4ad292e411a7ec150e22532da4b.o /home/user/lambdanative-cache/linux/build/e066a4ad292e411a7ec150e22532da4b.c -I/home/user/lambdanative-cache/linux/include => /home/user/lambdanative/apps/DemoHelloWorld/main.scm.. /home/user/lambdanative-cache/linux/bin/gsc -prelude "(declare (block)(not safe)(debug)(debug-location))" -c -o /home/user/lambdanative-cache/linux/build/f5116d5df18ced47990ae580cfc87a55.c /home/user/lambdanative/apps/DemoHelloWorld/main.scm gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/f5116d5df18ced47990ae580cfc87a55.o /home/user/lambdanative-cache/linux/build/f5116d5df18ced47990ae580cfc87a55.c -I/home/user/lambdanative-cache/linux/include => creating gsc link.. /home/user/lambdanative-cache/linux/bin/gsc -link /home/user/lambdanative-cache/linux/build/ae05046acaa09186774092dfcf6a22ca.c /home/user/lambdanative-cache/linux/build/266ec4e2e086973225b8a10ec9e8145e.c /home/user/lambdanative-cache/linux/build/b98c192b3f75ecb9924218fb419c53d5.c /home/user/lambdanative-cache/linux/build/367fa4f649256ac8b93d110069b4ea65.c /home/user/lambdanative-cache/linux/build/b7d76540eb9715c2d4ead54244b834db.c /home/user/lambdanative-cache/linux/build/29673c00a695ce1c98f79eff5477094a.c /home/user/lambdanative-cache/linux/build/aa969c93344987b98a0c74f1a1002f38.c /home/user/lambdanative-cache/linux/build/3743d67d3e4a12297989ffbb41c31c19.c /home/user/lambdanative-cache/linux/build/e066a4ad292e411a7ec150e22532da4b.c /home/user/lambdanative-cache/linux/build/f5116d5df18ced47990ae580cfc87a55.c gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -o /home/user/lambdanative-cache/linux/build/f5116d5df18ced47990ae580cfc87a55.o -c /home/user/lambdanative-cache/linux/build/f5116d5df18ced47990ae580cfc87a55.c -I/home/user/lambdanative-cache/linux/include => generating hook.. gcc -g -m32 -DLINUX -D_SINGLE_HOST -D__LIBRARY -DPRIMAL -c -o /home/user/lambdanative-cache/linux/build/2853e982463801e0026185ac14b8515c.o /home/user/lambdanative-cache/linux/build/2853e982463801e0026185ac14b8515c.c -I/home/user/lambdanative-cache/linux/include => assembling payload.. ar rc /home/user/lambdanative-cache/linux/lib/libpayload.a /home/user/lambdanative-cache/linux/build/libportaudio/pa_allocation.o /home/user/lambdanative-cache/linux/build/libportaudio/pa_converters.o /home/user/lambdanative-cache/linux/build/libportaudio/pa_cpuload.o /home/user/lambdanative-cache/linux/build/libportaudio/pa_debugprint.o /home/user/lambdanative-cache/linux/build/libportaudio/pa_dither.o /home/user/lambdanative-cache/linux/build/libportaudio/pa_front.o /home/user/lambdanative-cache/linux/build/libportaudio/pa_hostapi_skeleton.o /home/user/lambdanative-cache/linux/build/libportaudio/pa_process.o /home/user/lambdanative-cache/linux/build/libportaudio/pa_stream.o /home/user/lambdanative-cache/linux/build/libportaudio/pa_trace.o /home/user/lambdanative-cache/linux/build/libportaudio/pa_unix_hostapis.o /home/user/lambdanative-cache/linux/build/libportaudio/pa_unix_oss.o /home/user/lambdanative-cache/linux/build/libportaudio/pa_unix_util.o /home/user/lambdanative-cache/linux/build/libgambc/c_intf.o /home/user/lambdanative-cache/linux/build/libgambc/_eval.o /home/user/lambdanative-cache/linux/build/libgambc/_gambc.o /home/user/lambdanative-cache/linux/build/libgambc/_io.o /home/user/lambdanative-cache/linux/build/libgambc/_kernel.o /home/user/lambdanative-cache/linux/build/libgambc/main.o /home/user/lambdanative-cache/linux/build/libgambc/mem.o /home/user/lambdanative-cache/linux/build/libgambc/_nonstd.o /home/user/lambdanative-cache/linux/build/libgambc/_num.o /home/user/lambdanative-cache/linux/build/libgambc/os_base.o /home/user/lambdanative-cache/linux/build/libgambc/os_dyn.o /home/user/lambdanative-cache/linux/build/libgambc/os_files.o /home/user/lambdanative-cache/linux/build/libgambc/os_io.o /home/user/lambdanative-cache/linux/build/libgambc/os.o /home/user/lambdanative-cache/linux/build/libgambc/os_shell.o /home/user/lambdanative-cache/linux/build/libgambc/os_time.o /home/user/lambdanative-cache/linux/build/libgambc/os_tty.o /home/user/lambdanative-cache/linux/build/libgambc/_repl.o /home/user/lambdanative-cache/linux/build/libgambc/setup.o /home/user/lambdanative-cache/linux/build/libgambc/_std.o /home/user/lambdanative-cache/linux/build/libgambc/_system.o /home/user/lambdanative-cache/linux/build/libgambc/thread.o /home/user/lambdanative-cache/linux/build/ae05046acaa09186774092dfcf6a22ca.o /home/user/lambdanative-cache/linux/build/266ec4e2e086973225b8a10ec9e8145e.o /home/user/lambdanative-cache/linux/build/b98c192b3f75ecb9924218fb419c53d5.o /home/user/lambdanative-cache/linux/build/367fa4f649256ac8b93d110069b4ea65.o /home/user/lambdanative-cache/linux/build/b7d76540eb9715c2d4ead54244b834db.o /home/user/lambdanative-cache/linux/build/29673c00a695ce1c98f79eff5477094a.o /home/user/lambdanative-cache/linux/build/aa969c93344987b98a0c74f1a1002f38.o /home/user/lambdanative-cache/linux/build/3743d67d3e4a12297989ffbb41c31c19.o /home/user/lambdanative-cache/linux/build/e066a4ad292e411a7ec150e22532da4b.o /home/user/lambdanative-cache/linux/build/f5116d5df18ced47990ae580cfc87a55.o /home/user/lambdanative-cache/linux/build/f5116d5df18ced47990ae580cfc87a55.o /home/user/lambdanative-cache/linux/build/2853e982463801e0026185ac14b8515c.o ranlib /home/user/lambdanative-cache/linux/lib/libpayload.a ==> creating linux bootstrap needed for DemoHelloWorld.. => transferring sounds... => /home/user/lambdanative/apps/DemoHelloWorld/sounds/ahooga.wav.. => compiling application.. gcc -g -m32 -DLINUX -I/home/user/lambdanative-cache/linux/include x11_microgl.c main.c -o /home/user/lambdanative-cache/linux/DemoHelloWorld/DemoHelloWorld -L/usr/local/linux/i686-linux/lib -L/home/user/lambdanative-cache/linux/lib -lpayload -lGL -lXext -lX11 -lasound -lrt -lutil -lpthread -ldl -lm /usr/bin/ld: cannot find -lasound collect2: ld returned 1 exit status ERROR: failed with exit code 1 make: *\ [all] Error 1 user@basebuntu12v1:~/lambdanative$

iantor commented 11 years ago

Fixed last problem. Alsa lib was missing. Since on my system I have the libsound2 package installed, I added the libsound2-dev package. Make worked this time. Too tired to test tonight. Will have a look tomorrow.

mgorges commented 11 years ago

iantor, you are correct /usr/bin/ld: cannot find -lasound indicates that you are missing an alsa library. And from a glance libasound2-dev seems to have the right libraries and headers for this to work.

mgorges commented 11 years ago

bd174be8 added check for ALSA library before embarking the compilation process. This should resolve this completely.