This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## By using the following script successfully build libpng 1.6.24 universal lib for iOS | |
| ## | |
| ## | |
| rm -rf install_* | |
| rm -rf output-* | |
| # build simulator | |
| ./configure --prefix=`pwd`/install_i386 CFLAGS="-Ofast -mios-version-min=7.0 -fembed-bitcode" LDFLAGS="-flto" CC="xcrun -sdk iphonesimulator clang -arch i386" --host=i386 | |
| make clean && make -j8 && make install |