转编译Lua5.3.0的iOS静态库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了转编译Lua5.3.0的iOS静态库相关的知识,希望对你有一定的参考价值。

This is a tutorial on how to compile Lua 5.3.0 as an ios static library (liblua.a) on Mac OS X 10.10.2 Yosemite with Xcode 6.1.1.

1. Download and extract Lua 5.3.0 to a folder of your choice.

2. Start Xcode and Create a new Xcode project -> iOS -> Framework & Library -> Cocoa Touch Static Library, then choose lua as the Product Name and create the project

3. Now on the left pane delete the lua.h and the lua.m file (Move to Trash), then right click on the now empty lua folder and choose Add Files to “lua” and select the src\ folder of the extracted lua source.

4. Open the newly added src folder in the left pane and delete lua.cluac.c and makefile(Remove Reference) as these would build the standalone interpreter and compiler (which we won’t need).

5. Change the output folder with File -> Project Settings and click the Advanced… button underDerived Data Location then choose Custom and set it to Relative to Workspace

6. Click on the lua project file (subtitled with “2 targets”) on the top left, expand the content pane by clicking on the expand icon and with a right click delete the target luaTests. Delete the folder luaTests (Move to Trash) on the left, too.

7. Set Release build with Product -> Build For -> Running

8. You may need to set a Code Signing Identy (under Code signing) and adjust the iOS Deployment target (under Deployment) to your needs.

9. Hit the compile button, you should now have a liblua.a in the Build/Products/ folder.

 

How to put the ios and iossim static library files into one library

After building both static libraries you may want to put the ios and iossim libraries into one library – containing both armv7 and ios vm x86/64 code:

lipo -create ./Build/Products/Debug-iphoneos/liblua.a ./Build/Products/Debug-iphonesimulator/liblua.a -output liblua.a

 

原地址:http://blog.spreendigital.de/2015/02/09/how-to-compile-lua-5-3-0-as-an-ios-static-library/

以上是关于转编译Lua5.3.0的iOS静态库的主要内容,如果未能解决你的问题,请参考以下文章

Xcode添加库文件framework (转)

iOS 动态库+静态库

有关Linux的.a.so和.o文件---mark一下(转)

iOS-静态库的创建与使用

[转]vs2010 静态库以及动态库编译实例

深入探讨Linux静态库与动态库的详解(转)