build static library for iOS on windows
NickName:user1693949 Ask DateTime:2012-09-24T19:28:29

build static library for iOS on windows

I want to cross-build a C++ static library on Windows or Linux (*.a), which will be included in Xcode 4, and finally used in iOS app. Can anyone tell me how to do it?

Copyright Notice:Content Author:「user1693949」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/12564140/build-static-library-for-ios-on-windows

More about “build static library for iOS on windows” related questions

build static library for iOS on windows

I want to cross-build a C++ static library on Windows or Linux (*.a), which will be included in Xcode 4, and finally used in iOS app. Can anyone tell me how to do it?

Show Detail

How to build universal ios static library

I'm trying to build a static library that I can use with both ios3.x and ios4.x. I can build a static library with ios3.0 that works with another project in ios3.0 but won't compile in ios4. The sa...

Show Detail

ios: how to build static library for simulator?

Hi I am having trouble testing a static library through the simulator. If I build the static library when the scheme is iPhone simulator, no *.a file gets generated. It is only generated if the sch...

Show Detail

Can I compile an iOS static library from Windows/Linux

I have C++ code, which I have managed to compile into an iOS static library ("library.a") using Xcode. I am then including this in my project (Xamarin.iOS, though this shouldn't matter) and have ma...

Show Detail

Build a static library for iOS - specifically spatialite

First, please forgive and point out if I am to use some other protocol for referencing another thread/post. There was a previous thread how to compile spatialite for iOS where the top answer partly

Show Detail

Facebook ios static library:build_facebook_ios_sdk_static_lib not found

I am following this tutorial to integrate Facebook in my iOS app. The tutorial asks to build a static library - if iOS app uses Arc - using the below sh file found in scripts folder % ~/faceboo...

Show Detail

How build a static library with maximum compatibility on iOS?

I'm writing a static library for ios developers. How build a static library with maximum compatibility on iOS? In other words, support different types of projects in future. Such as, 3.0~ version...

Show Detail

iOS Static Library as a Subproject of a Project That Has Custom Build Configurations?

I'm trying to share code between multiple Xcode projects. I've followed Apple's notes on creating a static library subproject within a project: http://developer.apple.com/library/ios/technotes/

Show Detail

How to build static library for iOS on linux

I have c++ static library written on linux. Is it possible to build this library for iOS? I have installed g++-arm-linux-gnueabi, but when i try to do this: arm-linux-gnueabi-g++-4.7 main.cpp -o...

Show Detail

adding static library to iOS

I want to add a static library to iOS. first of all, I added some_library.a file to ios/lib directory, then I add vendored_libraries to .podspec file like this: ... s.pod_target_xcconfig = { '

Show Detail