[Kiwiviewer] Error building VES/VTK on MAC OS X 10.9 targeting iOS7

Aashish Chaudhary aashish.chaudhary at kitware.com
Tue Aug 27 09:11:01 EDT 2013


Dear Andrew,

Can you try to change the culprit line from:

 if(camera.viewport() != 0)

to

if(!camera.viewport())


And see if that passes?




On Fri, Aug 23, 2013 at 5:51 PM, Andrew Reslan <andrew.reslan at mac.com>wrote:

> Casey
>
> Hi, yes I wasn't sure how to post but my initial target is kiwiviewer on
> iPad and there does not seem to be much iOS traffic on the vtk site.
>
> Your make command made the issues clear.
>
> So far I have made the following changes to the project
>
> Added iOS7 as a target SDK
> installed the command line tools for xcode5 preview5
> installed boost to provide C++11 headers
> VES/src/ves/./vesSharedPtr.h changed  #import <tr1/memory> to <memory>
> changed other std::tr1:: references to std::
>
> But I am stuck with a C++11 operator overload error, here is the relevant
> part of the log (note originally the source was an inline if, but I changed
> to a standard if/else block for testing but the error is the same in the
> initial if test).
>
> Again any pointers appreciated.
>
>
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: error: use of
> overloaded operator '!=' is ambiguous (with operand types
> 'std::shared_ptr<vesViewport>' and 'int')
>     if(camera.viewport() != 0)
>        ~~~~~~~~~~~~~~~~~ ^  ~
> /usr/bin/../lib/c++/v1/memory:4787:1: note: candidate function [with _Tp =
> vesViewport]
> operator!=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
> ^
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(int, int)
>     if(camera.viewport() != 0)
>                          ^
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned __int128, int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long long, int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long, int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(float, int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned int, int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(__int128, int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long long, int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long, int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(int, unsigned __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(int, unsigned long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(int, unsigned long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(int, unsigned int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(int, __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(int, long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(double, int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(int, long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(int, long double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(int, double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(int, float)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long double, int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(double, unsigned __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long double, float)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long double, double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long double, long double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(double, unsigned long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long double, long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long double, long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long double, __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long double, unsigned int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long double, unsigned long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long double, unsigned long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long double, unsigned __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(double, unsigned long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(double, unsigned int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(double, __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(double, long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(double, long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(double, long double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(double, double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(double, float)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(float, unsigned __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(float, unsigned long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(float, unsigned long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long, float)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long, double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long, long double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(float, unsigned int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long, long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long, long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long, __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long, unsigned int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long, unsigned long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long, unsigned long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long, unsigned __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long long, float)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long long, double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long long, long double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(float, __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long long, long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long long, long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long long, __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long long, unsigned int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long long, unsigned long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long long, unsigned long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(long long, unsigned __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(__int128, float)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(__int128, double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(__int128, long double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(float, long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(__int128, long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(__int128, long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(__int128, __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(__int128, unsigned int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(__int128, unsigned long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(__int128, unsigned long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(__int128, unsigned __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned int, float)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned int, double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned int, long double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(float, long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned int, long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned int, long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned int, __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned int, unsigned int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned int, unsigned long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned int, unsigned long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned int, unsigned __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long, float)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long, double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long, long double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(float, long double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long, long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long, long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long, __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long, unsigned int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long, unsigned long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long, unsigned long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long, unsigned __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long long, float)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long long, double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long long, long double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(float, double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long long, long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long long, long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long long, __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long long, unsigned int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long long, unsigned long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long long, unsigned long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned long long, unsigned __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned __int128, float)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned __int128, double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned __int128, long double)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(float, float)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned __int128, long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned __int128, long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned __int128, __int128)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned __int128, unsigned int)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned __int128, unsigned long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned __int128, unsigned long long)
> /Users/andy/projects/VES/src/ves/vesCullVisitor.cpp:117:26: note: built-in
> candidate operator!=(unsigned __int128, unsigned __int128)
>
>
> On 23 Aug 2013, at 14:26, Casey Goodlett <casey.goodlett at kitware.com>
> wrote:
>
> Hi Andrew,
>
> The VES list might be a better place for development questions.  I have
> not yet tried to compile for iOS 7 so I am not sure what the challenges
> are.
>
> Is it possible that you can run a serial build using "make -j1 VERBOSE=1"
> so that the the end of the build log will contain the error log?
>
> Thank you
>
>
> On Fri, Aug 23, 2013 at 8:23 AM, Andrew Reslan <andrew.reslan at mac.com>wrote:
>
>> I am trying to build VES/VTK for an iOS 7 target platform.
>>
>> The build makes good progress but fails when building the libs, from
>> googling I think the issue is related to invalid linker flags, but I am not
>> familiar with cmake and I don't know which script was running at the time
>> of failure.
>>
>> Any pointers as to where to look would be appreciated.
>>
>> Andy
>>
>> Here are the last few lines of output from the build:
>>
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftincrem.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftlcdfil.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftlist.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftlzw.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftmac.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftmm.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftmodapi.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftmoderr.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftotval.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftoutln.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftpfr.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftrender.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftsizes.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftsnames.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftstroke.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftsynth.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftsystem.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/fttrigon.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/fttypes.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftwinfnt.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ftxf86.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/t1tables.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ttnameid.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/tttables.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/tttags.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/ttunpat.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/config/ftheader.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/config/ftmodule.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/config/ftoption.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/config/ftstdlib.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkfreetype/include/freetype/config/ftconfig.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/lib/cmake/vtk-6.0/Modules/vtkRenderingFreeType.cmake
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/lib/libvtkRenderingFreeType-6.0.a
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkFreeTypeStringToImage.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkFreeTypeTools.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkVectorText.h
>> -- Installing:
>> /Users/andy/projects/vessuperbuild/CMakeExternals/Install/vtk-ios-simulator/include/vtk-6.0/vtkRenderingFreeTypeModule.h
>> [ 40%] Completed 'vtk-ios-simulator'
>> [ 48%] Built target vtk-ios-simulator
>> make: *** [all] Error 2
>> _______________________________________________
>> Kiwiviewer mailing list
>> Kiwiviewer at public.kitware.com
>> http://public.kitware.com/cgi-bin/mailman/listinfo/kiwiviewer
>>
>
>
>
> --
> Casey B. Goodlett, Ph.D.
> R&D Engineer
> Kitware, Inc. - North Carolina Office
> http://www.kitware.com
> (919) 969-6990 x310
>
>
>
> _______________________________________________
> Kiwiviewer mailing list
> Kiwiviewer at public.kitware.com
> http://public.kitware.com/cgi-bin/mailman/listinfo/kiwiviewer
>
>


-- 
| Aashish Chaudhary
| R&D Engineer
| Kitware Inc.
| www.kitware.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://public.kitware.com/pipermail/kiwiviewer/attachments/20130827/947fadc6/attachment.html>


More information about the Kiwiviewer mailing list