博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
using an empty LLDB target which can cause slow memory reads from remote devices.
阅读量:4031 次
发布时间:2019-05-24

本文共 1162 字,大约阅读时间需要 3 分钟。

1、使用6或者6P模拟器运行代码就报

Warning: Error creating LLDB target at path '/Users/xxx/Library/Developer/Xcode/DerivedData/xxxx/Build/Products/Debug-iphonesimulator/

xxxx.app'- using an empty LLDB target which can cause slow memory reads from remote devices.

苹果认为iPhone6以及以后的设备都要支持64bit,如果没有特别的原因,最好都包含

arm64在你的

build architecture里面

附:

NOTE ABOUT 64-BIT ARCHITECTURE

An app extension target must include the arm64 architecture in its Architectures build settings or it will be rejected by the App Store. Xcode includes this architecture with its “Standard architectures” setting when you create a new app extension target.

If your containing app target links to an embedded framework, the app must also include the arm64 architecture or it will be rejected by the App Store.

For more information about 64-bit development, see 64-Bit Transition Guide for Cocoa Touch or 64-Bit Transition Guide for Cocoa, depending on your target platform.

Source:

配置如下:

  1. 选择你的工程 -> Build Settings
  2. 改变 'Architectures' to 'Standard architectures (armv7, arm64) - $(ARCHS_STANDARD)' Step 2

  3. 在iOS 5.1.1可能有一个支撑警告说明,  点击 'Change Deployment Target to 5.1.1'

Step 3

  1. 重复以上步骤,如果设置没有自动改变的话

Step 4

这是首选的编译设置,苹果要求开发商建立支持

64bit的应用体系

转载地址:http://rtebi.baihongyu.com/

你可能感兴趣的文章
postman调试webservice接口
查看>>
flutter-解析json
查看>>
android中shader的使用
查看>>
java LinkedList与ArrayList迭代器遍历和for遍历对比
查看>>
Android DataBinding使用2-Recycleview
查看>>
drat中构造方法
查看>>
JavaScript的一些基础-数据类型
查看>>
JavaScript基础知识(2)
查看>>
转载一个webview开车指南以及实际项目中的使用
查看>>
关于activity保存页面状态的两个方法
查看>>
android中对于非属性动画的整理
查看>>
一个简单的TabLayout的使用
查看>>
关于let{a}=B出现的解构赋值
查看>>
ReactNative使用Redux例子
查看>>
Promise的基本使用
查看>>
android给文字加边框(修改不能居中的问题)
查看>>
coursesa课程 Python 3 programming course_2_assessment_1
查看>>
coursesa课程 Python 3 programming 统计文件有多少单词
查看>>
coursesa课程 Python 3 programming 输出每一行句子的第三个单词
查看>>
coursesa课程 Python 3 programming Dictionary methods 字典的方法
查看>>