How to compile tesseract-ocr source code for iOS?


The On Demand Global Workforce - oDesk

The Tesseract OCR engine was one of the top 3 engines in the 1995 UNLV Accuracy test. Between 1995 and 2006 it had little work done on it, but it is probably one of the most accurate open source OCR engines available. The source code will read a binary, grey or color image and output text. A tiff reader is built in that will read uncompressed TIFF images, or libtiff can be added to read compressed images.

1. Download source code from URL : http://code.google.com/p/tesseract-ocr/

2. create a .sh file inside the tesseract source code folder

3. Write the following code in .sh file

Code Starts


#!/bin/sh
# build_fat.sh
#
# Created by Robert Carlsen on 15.07.2009. Updated 24.9.2010
# build an arm / i386 lib of standard linux project
#
# initially configured for tesseract-ocr v2.0.4
# updated for tesseract prerelease v3

outdir=outdir
mkdir -p $outdir/arm $outdir/i386

libdirs=( api ccutil ccmain ccstruct classify cutil dict image textord training viewer wordrec )
libs=( api ccutil main ccstruct classify cutil dict image textord training viewer wordrec )
count=${#libdirs[@]}

make distclean
unset CPPFLAGS CFLAGS LDFLAGS CPP CXX CC CXXFLAGS DEVROOT SDKROOT LD

export DEVROOT=/Developer/Platforms/iPhoneOS.platform/Developer
export SDKROOT=$DEVROOT/SDKs/iPhoneOS4.1.sdk
export CFLAGS="-arch armv6 -pipe -no-cpp-precomp -isysroot$SDKROOT -miphoneos-version-min=3.0 -I$SDKROOT/usr/include/"
export CPPFLAGS="$CFLAGS"
export CXXFLAGS="$CFLAGS"
export LDFLAGS="-L$SDKROOT/usr/lib/"
export LD="$DEVROOT/usr/bin/ld"
export CPP="$DEVROOT/usr/bin/cpp-4.2"
export CXX="$DEVROOT/usr/bin/g++-4.2"
export CC="$DEVROOT/usr/bin/gcc-4.2"
./configure --host=arm-apple-darwin
make -j3

index=0
while [ "$index" -lt "$count" ]
do
cp ${libdirs[index]}/.libs/libtesseract_${libs[index]}.a $outdir/arm/libtesseract_${libs[index]}_armv6.a
((index++))
done

make distclean
unset CPPFLAGS CFLAGS LDFLAGS CPP CXX CC CXXFLAGS DEVROOT SDKROOT LD

export DEVROOT=/Developer/Platforms/iPhoneSimulator.platform/Developer
export SDKROOT=$DEVROOT/SDKs/iPhoneSimulator4.1.sdk
export CFLAGS="-arch i386 -pipe -no-cpp-precomp -isysroot$SDKROOT -miphoneos-version-min=3.0 -I$SDKROOT/usr/include/"
export CPPFLAGS="$CFLAGS"
export CXXFLAGS="$CFLAGS"
export LDFLAGS="-L$SDKROOT/usr/lib/"
export LD="$DEVROOT/usr/bin/ld"
export CPP="$DEVROOT/usr/bin/cpp-4.2"
export CXX="$DEVROOT/usr/bin/g++-4.2"
export CC="$DEVROOT/usr/bin/gcc-4.2"
./configure
make -j3

index=0
while [ "$index" -lt "$count" ]
do
cp ${libdirs[index]}/.libs/libtesseract_${libs[index]}.a $outdir/i386/libtesseract_${libs[index]}_i386.a
((index++))
done

# are the fat libs making the bundle too big?
index=0
while [ "$index" -lt "$count" ]
do
/usr/bin/lipo -arch armv6 $outdir/arm/libtesseract_${libs[index]}_armv6.a -arch i386 $outdir/i386/libtesseract_${libs[index]}_i386.a -create -output $outdir/libtesseract_${libs[index]}.a
((index++))
done

 

unset CPPFLAGS CFLAGS LDFLAGS CPP CXX CC CXXFLAGS DEVROOT SDKROOT

Code Ends

 

 

Source : http://robertcarlsen.net/2010/09/24/compiling-tesseract-v3-for-iphone-1299

5. Navigate to the tesseract source code folder by  Terminal

6. RUN sh ./yourfilename.sh from Terminal. It will configure & build library for iOS.

7. After compile finished, check for outdir folder inside the tesseract source code folder. You will find the all required library files for iOS.

iOS implementation for tesseract ocr : https://github.com/rcarlsen/Pocket-OCR

3 thoughts on “How to compile tesseract-ocr source code for iOS?

  1. Julie says:
    Hi, I am trying to implement tesseract in my iPhone application; however, when I run sh from the Terminal I get the following (sorry for the length of it, but I wasn’t sure what would be useful to understand what is going on). Could you please help me? make: *** No rule to make target `distclean’. Stop. 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-apple-darwin10.6.0 checking host system type… arm-apple-darwin checking –enable-graphics argument… yes checking whether the C++ compiler works… no configure: error: in `/Users/oge/Documents/tesseract-3.00′: configure: error: C++ compiler cannot create executables See `config.log’ for more details. make: *** No targets specified and no makefile found. Stop. cp: api/.libs/libtesseract_api.a: No such file or directory cp: ccutil/.libs/libtesseract_ccutil.a: No such file or directory cp: ccmain/.libs/libtesseract_main.a: No such file or directory cp: ccstruct/.libs/libtesseract_ccstruct.a: No such file or directory cp: classify/.libs/libtesseract_classify.a: No such file or directory cp: cutil/.libs/libtesseract_cutil.a: No such file or directory cp: dict/.libs/libtesseract_dict.a: No such file or directory cp: image/.libs/libtesseract_image.a: No such file or directory cp: textord/.libs/libtesseract_textord.a: No such file or directory cp: training/.libs/libtesseract_training.a: No such file or directory cp: viewer/.libs/libtesseract_viewer.a: No such file or directory cp: wordrec/.libs/libtesseract_wordrec.a: No such file or directory make: *** No rule to make target `distclean’. Stop. checking build system type… i686-apple-darwin10.6.0 checking host system type… i686-apple-darwin10.6.0 checking –enable-graphics argument… yes checking whether the C++ compiler works… yes checking for C++ compiler default output file name… a.out checking for suffix of executables… checking whether we are cross compiling… no checking for suffix of object files… o checking whether we are using the GNU C++ compiler… yes checking whether /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 accepts -g… yes checking for gcc… /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 checking whether we are using the GNU C compiler… yes checking whether /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 accepts -g… yes checking for /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 option to accept ISO C89… none needed checking for a sed that does not truncate output… /usr/bin/sed checking for grep that handles long lines and -e… /usr/bin/grep checking for egrep… /usr/bin/grep -E checking for fgrep… /usr/bin/grep -F checking for ld used by /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2… /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/ld checking if the linker (/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/ld) is GNU ld… no checking for BSD- or MS-compatible name lister (nm)… /usr/bin/nm checking the name lister (/usr/bin/nm) interface… BSD nm checking whether ln -s works… yes checking the maximum length of command line arguments… 196608 checking whether the shell understands some XSI constructs… yes checking whether the shell understands “+=”… yes checking for /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/ld option to reload object files… -r checking for objdump… no checking how to recognize dependent libraries… pass_all checking for ar… ar checking for strip… strip checking for ranlib… ranlib checking command to parse /usr/bin/nm output from /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 object… ok checking for dsymutil… dsymutil checking for nmedit… nmedit checking for lipo… lipo checking for otool… otool checking for otool64… no checking for -single_module linker flag… yes checking for -exported_symbols_list linker flag… yes checking how to run the C preprocessor… /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/cpp-4.2 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… yes checking for strings.h… yes checking for inttypes.h… yes checking for stdint.h… yes checking for unistd.h… yes checking for dlfcn.h… yes checking whether we are using the GNU C++ compiler… (cached) yes checking whether /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 accepts -g… (cached) yes checking how to run the C++ preprocessor… /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -E checking for objdir… .libs checking if /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 supports -fno-rtti -fno-exceptions… no checking for /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 option to produce PIC… -fno-common -DPIC checking if /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 PIC flag -fno-common -DPIC works… yes checking if /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 static flag -static works… no checking if /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 supports -c -o file.o… yes checking if /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 supports -c -o file.o… (cached) yes checking whether the /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 linker (/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/ld) supports shared libraries… yes checking dynamic linker characteristics… darwin10.6.0 dyld checking how to hardcode library paths into programs… immediate checking whether stripping libraries is possible… yes checking if libtool supports shared libraries… yes checking whether to build shared libraries… yes checking whether to build static libraries… yes checking for ld used by /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2… /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/ld checking if the linker (/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/ld) is GNU ld… no checking whether the /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 linker (/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/ld) supports shared libraries… yes checking for /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 option to produce PIC… -fno-common -DPIC checking if /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 PIC flag -fno-common -DPIC works… yes checking if /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 static flag -static works… no checking if /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 supports -c -o file.o… yes checking if /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 supports -c -o file.o… (cached) yes checking whether the /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 linker (/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/ld) supports shared libraries… yes checking dynamic linker characteristics… darwin10.6.0 dyld checking how to hardcode library paths into programs… immediate checking for a BSD-compatible install… /usr/bin/install -c checking whether build environment is sane… yes /Users/oge/Documents/tesseract-3.00/config/missing: Unknown `–run’ option Try `/Users/oge/Documents/tesseract-3.00/config/missing –help’ for more information configure: WARNING: `missing’ script is too old or missing checking for a thread-safe mkdir -p… config/install-sh -c -d checking for gawk… no checking for mawk… no checking for nawk… no checking for awk… awk checking whether make sets $(MAKE)… yes checking for style of include used by make… GNU checking dependency style of /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2… gcc3 checking dependency style of /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2… gcc3 checking whether to enable maintainer-specific portions of Makefiles… no checking whether byte ordering is bigendian… no checking for deflate in -lz… yes checking for png_read_png in -lpng… no checking for jpeg_read_scanlines in -ljpeg… no checking for sem_init in -lpthread… yes checking for ANSI C header files… (cached) yes checking whether time.h and sys/time.h may both be included… yes checking for sys/wait.h that is POSIX.1 compatible… yes checking sys/ipc.h usability… yes checking sys/ipc.h presence… yes checking for sys/ipc.h… yes checking sys/shm.h usability… yes checking sys/shm.h presence… yes checking for sys/shm.h… yes checking limits.h usability… yes checking limits.h presence… yes checking for limits.h… yes checking malloc.h usability… no checking malloc.h presence… no checking for malloc.h… no checking allheaders.h usability… no checking allheaders.h presence… no checking for allheaders.h… no checking for stdbool.h that conforms to C99… yes checking for _Bool… no checking whether #! works in shell scripts… yes checking for special C compiler options needed for large files… no checking for _FILE_OFFSET_BITS value needed for large files… no checking for wchar_t… yes checking for long long int… yes checking for mbstate_t… yes checking for size_t… yes checking for stdlib.h… (cached) yes checking for unistd.h… (cached) yes checking for sys/param.h… yes checking for getpagesize… yes checking for working mmap… yes checking for pid_t… yes checking vfork.h usability… no checking vfork.h presence… no checking for vfork.h… no checking for fork… yes checking for vfork… yes checking for working fork… yes checking for working vfork… (cached) yes checking for strerror… yes checking for vsnprintf… yes checking for gethostname… yes checking for strchr… yes checking for memcpy… yes checking for acos… yes checking for asin… yes checking for Leffler libtiff library… checking linking with -ltiff… no configure: WARNING: TIFF support is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating api/Makefile config.status: creating ccmain/Makefile config.status: creating ccstruct/Makefile config.status: creating ccutil/Makefile config.status: creating classify/Makefile config.status: creating cutil/Makefile config.status: creating dict/Makefile config.status: creating image/Makefile config.status: creating textord/Makefile config.status: creating viewer/Makefile config.status: creating wordrec/Makefile config.status: creating training/Makefile config.status: creating tessdata/Makefile config.status: creating tessdata/configs/Makefile config.status: creating tessdata/tessconfigs/Makefile config.status: creating testing/Makefile config.status: creating vs2008/Makefile config.status: creating vs2008/dlltest/Makefile config.status: creating vs2008/include/Makefile config.status: creating vs2008/include/leptonica/Makefile config.status: creating java/Makefile config.status: creating java/com/Makefile config.status: creating java/com/google/Makefile config.status: creating java/com/google/scrollview/Makefile config.status: creating java/com/google/scrollview/events/Makefile config.status: creating java/com/google/scrollview/ui/Makefile config.status: creating config_auto.h config.status: executing libtool commands config.status: executing depfiles commands Configuration is done. You can now build tesseract by running: % make make all-recursive Making all in ccstruct /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT blobbox.lo -MD -MP -MF .deps/blobbox.Tpo -c -o blobbox.lo blobbox.cpp /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT blobs.lo -MD -MP -MF .deps/blobs.Tpo -c -o blobs.lo blobs.cpp /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT blread.lo -MD -MP -MF .deps/blread.Tpo -c -o blread.lo blread.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT blobbox.lo -MD -MP -MF .deps/blobbox.Tpo -c blobbox.cpp -fno-common -DPIC -o .libs/blobbox.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT blobs.lo -MD -MP -MF .deps/blobs.Tpo -c blobs.cpp -fno-common -DPIC -o .libs/blobs.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT blread.lo -MD -MP -MF .deps/blread.Tpo -c blread.cpp -fno-common -DPIC -o .libs/blread.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT blobs.lo -MD -MP -MF .deps/blobs.Tpo -c blobs.cpp -o blobs.o >/dev/null 2>&1 libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT blread.lo -MD -MP -MF .deps/blread.Tpo -c blread.cpp -o blread.o >/dev/null 2>&1 mv -f .deps/blobs.Tpo .deps/blobs.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT callcpp.lo -MD -MP -MF .deps/callcpp.Tpo -c -o callcpp.lo callcpp.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT callcpp.lo -MD -MP -MF .deps/callcpp.Tpo -c callcpp.cpp -fno-common -DPIC -o .libs/callcpp.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT callcpp.lo -MD -MP -MF .deps/callcpp.Tpo -c callcpp.cpp -o callcpp.o >/dev/null 2>&1 mv -f .deps/blread.Tpo .deps/blread.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT ccstruct.lo -MD -MP -MF .deps/ccstruct.Tpo -c -o ccstruct.lo ccstruct.cpp mv -f .deps/callcpp.Tpo .deps/callcpp.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT coutln.lo -MD -MP -MF .deps/coutln.Tpo -c -o coutln.lo coutln.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT ccstruct.lo -MD -MP -MF .deps/ccstruct.Tpo -c ccstruct.cpp -fno-common -DPIC -o .libs/ccstruct.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT blobbox.lo -MD -MP -MF .deps/blobbox.Tpo -c blobbox.cpp -o blobbox.o >/dev/null 2>&1 libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT coutln.lo -MD -MP -MF .deps/coutln.Tpo -c coutln.cpp -fno-common -DPIC -o .libs/coutln.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT ccstruct.lo -MD -MP -MF .deps/ccstruct.Tpo -c ccstruct.cpp -o ccstruct.o >/dev/null 2>&1 mv -f .deps/ccstruct.Tpo .deps/ccstruct.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT detlinefit.lo -MD -MP -MF .deps/detlinefit.Tpo -c -o detlinefit.lo detlinefit.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT detlinefit.lo -MD -MP -MF .deps/detlinefit.Tpo -c detlinefit.cpp -fno-common -DPIC -o .libs/detlinefit.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT coutln.lo -MD -MP -MF .deps/coutln.Tpo -c coutln.cpp -o coutln.o >/dev/null 2>&1 libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT detlinefit.lo -MD -MP -MF .deps/detlinefit.Tpo -c detlinefit.cpp -o detlinefit.o >/dev/null 2>&1 mv -f .deps/blobbox.Tpo .deps/blobbox.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT genblob.lo -MD -MP -MF .deps/genblob.Tpo -c -o genblob.lo genblob.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT genblob.lo -MD -MP -MF .deps/genblob.Tpo -c genblob.cpp -fno-common -DPIC -o .libs/genblob.o mv -f .deps/detlinefit.Tpo .deps/detlinefit.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT labls.lo -MD -MP -MF .deps/labls.Tpo -c -o labls.lo labls.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT labls.lo -MD -MP -MF .deps/labls.Tpo -c labls.cpp -fno-common -DPIC -o .libs/labls.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT genblob.lo -MD -MP -MF .deps/genblob.Tpo -c genblob.cpp -o genblob.o >/dev/null 2>&1 libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT labls.lo -MD -MP -MF .deps/labls.Tpo -c labls.cpp -o labls.o >/dev/null 2>&1 mv -f .deps/labls.Tpo .deps/labls.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT linlsq.lo -MD -MP -MF .deps/linlsq.Tpo -c -o linlsq.lo linlsq.cpp mv -f .deps/coutln.Tpo .deps/coutln.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT lmedsq.lo -MD -MP -MF .deps/lmedsq.Tpo -c -o lmedsq.lo lmedsq.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT linlsq.lo -MD -MP -MF .deps/linlsq.Tpo -c linlsq.cpp -fno-common -DPIC -o .libs/linlsq.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT lmedsq.lo -MD -MP -MF .deps/lmedsq.Tpo -c lmedsq.cpp -fno-common -DPIC -o .libs/lmedsq.o mv -f .deps/genblob.Tpo .deps/genblob.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT mod128.lo -MD -MP -MF .deps/mod128.Tpo -c -o mod128.lo mod128.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT mod128.lo -MD -MP -MF .deps/mod128.Tpo -c mod128.cpp -fno-common -DPIC -o .libs/mod128.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT linlsq.lo -MD -MP -MF .deps/linlsq.Tpo -c linlsq.cpp -o linlsq.o >/dev/null 2>&1 libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT mod128.lo -MD -MP -MF .deps/mod128.Tpo -c mod128.cpp -o mod128.o >/dev/null 2>&1 libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT lmedsq.lo -MD -MP -MF .deps/lmedsq.Tpo -c lmedsq.cpp -o lmedsq.o >/dev/null 2>&1 mv -f .deps/mod128.Tpo .deps/mod128.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT normalis.lo -MD -MP -MF .deps/normalis.Tpo -c -o normalis.lo normalis.cpp mv -f .deps/linlsq.Tpo .deps/linlsq.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT ocrblock.lo -MD -MP -MF .deps/ocrblock.Tpo -c -o ocrblock.lo ocrblock.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT normalis.lo -MD -MP -MF .deps/normalis.Tpo -c normalis.cpp -fno-common -DPIC -o .libs/normalis.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT ocrblock.lo -MD -MP -MF .deps/ocrblock.Tpo -c ocrblock.cpp -fno-common -DPIC -o .libs/ocrblock.o mv -f .deps/lmedsq.Tpo .deps/lmedsq.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT ocrrow.lo -MD -MP -MF .deps/ocrrow.Tpo -c -o ocrrow.lo ocrrow.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT ocrrow.lo -MD -MP -MF .deps/ocrrow.Tpo -c ocrrow.cpp -fno-common -DPIC -o .libs/ocrrow.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT normalis.lo -MD -MP -MF .deps/normalis.Tpo -c normalis.cpp -o normalis.o >/dev/null 2>&1 libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT ocrblock.lo -MD -MP -MF .deps/ocrblock.Tpo -c ocrblock.cpp -o ocrblock.o >/dev/null 2>&1 mv -f .deps/normalis.Tpo .deps/normalis.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT otsuthr.lo -MD -MP -MF .deps/otsuthr.Tpo -c -o otsuthr.lo otsuthr.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT otsuthr.lo -MD -MP -MF .deps/otsuthr.Tpo -c otsuthr.cpp -fno-common -DPIC -o .libs/otsuthr.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT otsuthr.lo -MD -MP -MF .deps/otsuthr.Tpo -c otsuthr.cpp -o otsuthr.o >/dev/null 2>&1 libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT ocrrow.lo -MD -MP -MF .deps/ocrrow.Tpo -c ocrrow.cpp -o ocrrow.o >/dev/null 2>&1 mv -f .deps/otsuthr.Tpo .deps/otsuthr.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT pageres.lo -MD -MP -MF .deps/pageres.Tpo -c -o pageres.lo pageres.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT pageres.lo -MD -MP -MF .deps/pageres.Tpo -c pageres.cpp -fno-common -DPIC -o .libs/pageres.o mv -f .deps/ocrblock.Tpo .deps/ocrblock.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT pdblock.lo -MD -MP -MF .deps/pdblock.Tpo -c -o pdblock.lo pdblock.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT pdblock.lo -MD -MP -MF .deps/pdblock.Tpo -c pdblock.cpp -fno-common -DPIC -o .libs/pdblock.o mv -f .deps/ocrrow.Tpo .deps/ocrrow.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT points.lo -MD -MP -MF .deps/points.Tpo -c -o points.lo points.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT points.lo -MD -MP -MF .deps/points.Tpo -c points.cpp -fno-common -DPIC -o .libs/points.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT pdblock.lo -MD -MP -MF .deps/pdblock.Tpo -c pdblock.cpp -o pdblock.o >/dev/null 2>&1 libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT points.lo -MD -MP -MF .deps/points.Tpo -c points.cpp -o points.o >/dev/null 2>&1 libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT pageres.lo -MD -MP -MF .deps/pageres.Tpo -c pageres.cpp -o pageres.o >/dev/null 2>&1 mv -f .deps/points.Tpo .deps/points.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT polyaprx.lo -MD -MP -MF .deps/polyaprx.Tpo -c -o polyaprx.lo polyaprx.cpp mv -f .deps/pdblock.Tpo .deps/pdblock.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT polyblk.lo -MD -MP -MF .deps/polyblk.Tpo -c -o polyblk.lo polyblk.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT polyaprx.lo -MD -MP -MF .deps/polyaprx.Tpo -c polyaprx.cpp -fno-common -DPIC -o .libs/polyaprx.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT polyblk.lo -MD -MP -MF .deps/polyblk.Tpo -c polyblk.cpp -fno-common -DPIC -o .libs/polyblk.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT polyaprx.lo -MD -MP -MF .deps/polyaprx.Tpo -c polyaprx.cpp -o polyaprx.o >/dev/null 2>&1 libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT polyblk.lo -MD -MP -MF .deps/polyblk.Tpo -c polyblk.cpp -o polyblk.o >/dev/null 2>&1 mv -f .deps/pageres.Tpo .deps/pageres.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT polyblob.lo -MD -MP -MF .deps/polyblob.Tpo -c -o polyblob.lo polyblob.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT polyblob.lo -MD -MP -MF .deps/polyblob.Tpo -c polyblob.cpp -fno-common -DPIC -o .libs/polyblob.o mv -f .deps/polyblk.Tpo .deps/polyblk.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT polyvert.lo -MD -MP -MF .deps/polyvert.Tpo -c -o polyvert.lo polyvert.cpp mv -f .deps/polyaprx.Tpo .deps/polyaprx.Plo /bin/sh ../libtool –tag=CXX –mode=compile /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT poutline.lo -MD -MP -MF .deps/poutline.Tpo -c -o poutline.lo poutline.cpp libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk/usr/include/ -MT polyvert.lo -MD -MP -MF .deps/polyvert.Tpo -c polyvert.cpp -fno-common -DPIC -o .libs/polyvert.o libtool: compile: /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/g++-4.2 -DHAVE_CONFIG_H -I. -I.. -I../ccutil -I../cutil -I../image -I../viewer -arch i386 -pipe -no-cpp-precomp -isysroot/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -miphoneos-version-min=3.0 -I/Developer/Platforms/iPhon

Leave a comment