Changes between Version 60 and Version 61 of Getting-Started/iPhone


Ignore:
Timestamp:
Mar 31, 2014 3:04:23 AM (10 years ago)
Author:
ming
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/iPhone

    v60 v61  
    6767 {{{ 
    6868export DEVPATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer 
    69 ARCH="-arch i386" CFLAGS="-O2 -m32 -miphoneos-version-min=4.0" LDFLAGS="-O2 -m32 -miphoneos-version-min=4.0" ./configure-iphone 
     69ARCH="-arch i386" CFLAGS="-O2 -m32 -mios-simulator-version-min=5.0" LDFLAGS="-O2 -m32 -mios-simulator-version-min=5.0" ./configure-iphone 
    7070make dep && make clean && make 
    7171 }}} 
    7272 
    7373Note that the exact paths may vary according to your SDK version. 
     74If you use iOS SDK '''before''' version 7.0, you can configure it this way instead: 
     75{{{ 
     76ARCH="-arch i386" CFLAGS="-O2 -m32 -miphoneos-version-min=4.0" LDFLAGS="-O2 -m32 -miphoneos-version-min=4.0" ./configure-iphone 
     77}}} 
     78 
    7479 
    7580== OpenSSL Suport ==