码迷,mamicode.com
首页 > 移动开发 > 详细

iOS--Xcode编译问题总结

时间:2015-09-09 13:13:30      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

一、The common causes for "Undefined symbols for architecture armv7" are:

    1. You import a header and do not link against the correct library. This is common, especially for headers for libraries like QuartzCore since it is not included in projects by default. To resolve:

      • Add the correct libraries in the Link Binary With Libraries section of the Build Phases.

      • If you want to add a library outside of the default search path you can include the path in the Library Search Paths value in the Build Settings and add 
        -l{library_name_without_lib_and_suffix} (eg. for libz.a use -lz) to the Other Linker Flags section of Build Settings.

    2. You copy files into your project but forgot to check the target to add the files to. To resolve:

      • Open the Build Phases for the correct target, expand Compile Sources and add the missing .m files. If this is your issue please upvote Cortex‘s answer below as well.

    3. You include a static library that is built for another architecture like i386, the simulator on your host machine. To resolve:

      • If you have multiple library files from your libraries vendor to include in the project you need to include the one for the simulator (i386) and the one for the device (armv7 for example).

      • Optionally, you could create a fat static library that contains both architectures.

iOS--Xcode编译问题总结

标签:

原文地址:http://www.cnblogs.com/howdoudo/p/4794267.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!