Changes between Version 3 and Version 4 of documentation/BuildingFreeTypeForiOS

Show
Ignore:
Author:
lloydw (IP: 24.82.134.185)
Timestamp:
09/18/10 08:42:45 (7 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • documentation/BuildingFreeTypeForiOS

    v3 v4  
    5858$ cp objs/.libs/libfreetype.a libfreetype-arm7.a 
    5959}}} 
     60 
     61== Bringing it all together as a universal library == 
     62 
     63We now have 4 individual libraries. To combine them into a single universal library use the ''lipo'' tool. 
     64 
     65{{{ 
     66$ lipo -create -output libfreetype.a libfreetype-i386.a libfreetype-x86_64 libfreetype-arm6.a libfreetype-arm7.a 
     67}}} 
     68 
     69And thats it. 
     70 
     71You can check which architectures are in a library with the -info argument. 
     72 
     73{{{ 
     74$ lipo -info libfreetype.a 
     75Architectures in the fat file: libfreetype.a are: armv6 armv7 i386 x86_64  
     76}}}