]> git.saurik.com Git - apple/dyld.git/blobdiff - unit-tests/test-cases/partial-library-load/main.c
dyld-353.2.1.tar.gz
[apple/dyld.git] / unit-tests / test-cases / partial-library-load / main.c
index 0c815549cedc6e59f8cd60f209eda8b4f25effef..9993ac408ce4bd86b4f8c8e2e6a0932d67388796 100644 (file)
@@ -29,6 +29,8 @@
 
 int main()
 {
+// NSCreateObjectFileImageFromMemory is only available on Mac OS X - not iPhone OS
+#if __MAC_OS_X_VERSION_MIN_REQUIRED
        // load bundle which indirectly loads libfoo and libbar
        NSObjectFileImage ofi;
        if ( NSCreateObjectFileImageFromFile("test.bundle", &ofi) != NSObjectFileImageSuccess ) {
@@ -48,7 +50,7 @@ int main()
        if ( mh != NULL ) {
                return 1;
        }
-       
+#endif
 #if 0  
        // find foo
        NSSymbol sym = NSLookupSymbolInImage(mh, "_foo", NSLOOKUPSYMBOLINIMAGE_OPTION_BIND);