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
| #include <IOKit/IOTypes.h> | |
| #include <IOKit/IOKitLib.h> | |
| #include <CoreSurface/CoreSurface.h> | |
| #include <stdio.h> // For mprotect | |
| #include <sys/mman.h> | |
| #ifdef __cplusplus | |
| extern "C" { | |
| #endif |
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
| // | |
| // ofxSimpleTheta.h | |
| // ofxSimpleTheta | |
| // | |
| // Created by Ovis aries on 2014/01/11. | |
| // | |
| // | |
| #ifndef ofxSimpleTheta_ofxSimpleTheta_h | |
| #define ofxSimpleTheta_ofxSimpleTheta_h |
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
| rm -rf install_* | |
| rm -rf output-* | |
| # build simulator | |
| ./configure --prefix=`pwd`/install_i386 CFLAGS="-Ofast -mios-version-min=5.0" LDFLAGS="-flto" CC="xcrun -sdk iphonesimulator clang -arch i386" | |
| make clean && make -j8 && make install | |
| ./configure --prefix=`pwd`/install_x86_64 CFLAGS="-Ofast -mios-version-min=5.0" LDFLAGS="-flto" CC="xcrun -sdk iphonesimulator clang -arch x86_64" | |
| make clean && make -j8 && make install |
NewerOlder