DELPHI XE5 UP2 运行IOS 遇到 Wrapper init failed: (null)问题的解决办法
一、问题表现:
在MAC OSX(10.9.2)上安装了比较新的XCODE5.1 和COMMAND LINE TOOLS
在DELPHI XE5 UP2上放了一个按钮,输出到MAC OSX上,出现:
Wrapper init failed: (null)

查看了很多大侠的博客。
二、问题的其他表现在Embarcadero的论坛上找到:
原文位置:https://forums.embarcadero.com/thread.jspa?threadID=101749&tstart=0
|
What does this mean and how can I correct it? I started getting this error today and I've even tried going to a backup that used to work, and when that didn't work I tried creating a new Hello World app and that didn't work either. This is a on a Mac-In-Cloud machine that up until today was working. The target is iOS simulator, iPhone. This is using Delphi XE5 Update1 on Windows7. The SDK is iPhoneOS 7.0.3. Gary Error Unable to launch process on 'LA204.macincloud.com' using the parameters from the 'MacinCloud' profile. The following error was returned: 'Wrapper init failed: (null)' |
三、解决方案:推荐是安装Hotfix 6 或者升级到XE6
错误的描述是:
[Xcode 5.1] iOS Simulator fails with wrapper init failed (null) error
Steps to Reproduce:
2. PAServer is started and connection succeeds from the profile.
3. Xcode update was done prior to this problem occuring, but App store shows the Xcode is installed and does run.
4. Up until this update of Xcode the simulator worked fine.
When I go to [tools] [options] SDK Manager and select iOS [Update local file cache] I get error
Directory does not exist: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/usr/include/
I have reinstalled PAServer but that did not help.
附 Hotfix 6 for RAD Studio, Delphi, and C++Builder XE5 Update 2的说明:
Available to registered users of Delphi XE5, C++Builder XE5, RAD Studio XE5, and Embarcadero All-Access XE
This Hotfix resolves issues with iOS apps when using iOS SDK 7.1 and Xcode 5.1.
Updated on April 17, 2014 to address the issue on Mountain Lion as well.
原文位置: http://qc.embarcadero.com/wc/qcmain.aspx/qcmain.aspx?d=123133
DELPHI XE5 UP2 运行IOS 遇到 Wrapper init failed: (null)问题的解决办法的更多相关文章
- 关于delphi软件运行出现Invalid floating point operation的错误的解决办法
关于delphi软件运行出现Invalid floating point operation的错误的解决办法 关于delphi软件运行出现Invalid floating point operat ...
- 运行js提示库没有注册错误8002801d的解决办法
运行js提示库没有注册错误8002801d的解决办法这个错误主要是因为服务器上的windows scripts版本较低,请按下面的链接下载较高版本windows scripts 5.6并在服务器上进行 ...
- 嵌入式X86运行linux及QtEmbedded+触摸屏(X86PC104+Xlinux+QtE+触摸屏解决办法)
嵌入式X86运行linux及QtEmbedded+触摸屏(X86PC104+Xlinux+QtE+触摸屏解决办法) QQ:5724308 邮箱:sankye@163.com
- centos7.5离线安装Docker及容器运行报OCI runtime create failed 问题定位与解决
前言 接上篇 <记一次centos挂载ceph存储的坑> 服务器重做了centos7.5版本的操作系统,剩下就是安装docker,考虑yum安装耗时较长,我一般都是直接安装二进制版本doc ...
- ios上架报错90080,90087,90209,90125 解决办法
ERROR ITMS-90087: "Unsupported Architectures. The executable for yht.temp_caseinsensitive_renam ...
- mac上运行appium提示错误Encountered internal error running command 解决办法
[debug] [iOS] App is not installed. Will try to install. [MJSONWP] Encountered internal error runnin ...
- Android每次运行项目时重新启动一个新的模拟器的解决办法
具体解决办法 1.打开任务管理器,结束adb进程 2.此时android console下面会出现错误信息 3.切换到dos下面运行: adb start-server 4.重新运行android项目 ...
- eclipse运行spark程序时日志颜色为黑色的解决办法
自从开始学习spark计算框架以来,我们老师教的是local模式下用eclipse运行spark程序,然后我在运行spark程序时,发现控制台的日志颜色总是显示为黑色,哇,作为程序猿总有一种强迫症,发 ...
- hadoop集群运行jps命令以后Datanode节点未启动的解决办法
出现该问题的原因:在第一次格式化dfs后,启动并使用了hadoop,后来又重新执行了格式化命令(hdfs namenode -format),这时namenode的clusterID会重新生成,而da ...
随机推荐
- ubuntu中配置samba方法
1.在保证能上网的前提下,安装samba软件包,中途出现是否执行,一直点击回车键 #sudo apt-get install samba #sudo apt-get install smbclient ...
- centos7 & ubuntu14.02安装sublime 3
Centos7安装Sublime Text 3.0正式版 1.安装 GPG 公钥rpm -v --import https://download.sublimetext.com/sublimehq-r ...
- linux下PS1命令提示符设置
linux下PS1命令提示符设置 在此文件最后一行添加:vim /etc/profileexport PS1='[\u@\h \W]\$ ' #这里必须用单引号. \d :代表日期,格式为 ...
- 方格取数(dp)
方格取数 时间限制: 1 Sec 内存限制: 128 MB提交: 9 解决: 4[提交][状态][讨论版][命题人:quanxing] 题目描述 设有N×N的方格图,我们在其中的某些方格中填入正整 ...
- 微信小程序只之全局存储
全局变量 app.globalData 本地缓存 wx.setStorageSync(KEY,DATA) wx.getStorageSync(KEY) wx.getStorageInfoSync wx ...
- JAVA 比较两个日期相差的天数
在实际的应用中,我们经常会比较两个日期相差的天数,下面我们通过java方法判断两个日期所差的额天数. 具体内容,请看下面的代码: package com.jd.jr.fclient.test; imp ...
- web开发 那些年基于Redis的Provider库
因为session基于本地cache,以前我们自己写分布式缓存,或者数据库存储,或者cookie加密存储,来保存用户状态信息,但较少的直接通过创建一个继承 SessionStateStoreProvi ...
- Linux机器工作环境安装
安装gcc编译器: yum -y install gcc 安装wget: yum -y install wget 安装python-setuptools: wget http://peak.telec ...
- 手机发烫是为何—— App 电量测试定位方法
为什么要做电量测试 随着移动互联网的快速发展,手机的实用性.娱乐性越来越强.日常使用中发现,安装了应用后,即使不怎么使用,电量也会消耗很快.但如果恢复出场设置充满电后,手机可以待机很长时间.真相只有一 ...
- https ssl
HTTPS(全称:Hyper Text Transfer Protocol over Secure Socket Layer),是以安全为目标的HTTP通道,简单讲是HTTP的安全版.即HTTP下加入 ...