简体   繁体   English

Mac 10.9 Mavericks中的Xcode启动应用程序错误

[英]Xcode launch app error in Mac 10.9 Mavericks

I using MacOSX 10.9.3 Maverick, xcode 5.1.1 . 我使用MacOSX 10.9.3 Maverick,xcode 5.1.1。 I try to launch app in simulator, but happen black screen and close xcode. 我尝试在模拟器中启动应用程序,但发生黑屏并关闭xcode。 This is notice: 这是通知:

Process:         Xcode [625]
Path:            /Applications/Xcode.app/Contents/MacOS/Xcode
Identifier:      com.apple.dt.Xcode
Version:         5.1.1 (5085)
Build Info:      IDEFrameworks-5085000000000000~10
App Item ID:     497799835
App External ID: 520942841
Code Type:       X86-64 (Native)
Parent Process:  launchd [151]
Responsible:     Xcode [625]
User ID:         501

Date/Time:       2014-05-19 09:43:47.454 +0700
OS Version:      Mac OS X 10.9.3 (13D65)
Report Version:  11
Anonymous UUID:  9C94CD1D-3B3C-6A87-75C0-B9FADF7F71B3


Crashed Thread:  7  Dispatch queue: DBGLLDBLauncher Serial Queue

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000

Application Specific Information:
ProductBuildVersion: 5B1008
Assertion failed: (out_port != 0), function StartDebugserverProcess, file /SourceCache/lldb/lldb-310.2.37/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp, line 720.


Thread 0:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib          0x00007fff885c9a1a mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff885c8d18 mach_msg + 64
2   com.apple.CoreFoundation        0x00007fff86bdafc5 __CFRunLoopServiceMachPort + 181
3   com.apple.CoreFoundation        0x00007fff86bda5e9 __CFRunLoopRun + 1161
4   com.apple.CoreFoundation        0x00007fff86bd9f25 CFRunLoopRunSpecific + 309
5   com.apple.HIToolbox             0x00007fff8b588a0d RunCurrentEventLoopInMode + 226
...

How to fix it ? 如何解决?

A solution and a workaround to avoid this issue: 避免此问题的解决方案和解决方法:

Option A (solution)- Ensure your /etc/hosts file contains this entry: 选项A(解决方案)-确保您的/ etc / hosts文件包含以下条目:

127.0.0.1       localhost

Option B (workaround)- If you really must have 127.0.0.1 mapped differently, eg I happened to be also doing some Facebook API testing that required it set to local.mysite.com, disabling the Xcode debugger: 选项B(解决方法)-如果确实必须将127.0.0.1映射为其他映射,例如我碰巧也在进行一些Facebook API测试,要求将其设置为local.mysite.com,则禁用Xcode调试器:

Product -> Scheme -> Edit Scheme -> Debugger -> None

will also resolve this. 也将解决此问题。

Issue may be caused by another application which removed hosts file, for example MAMP PRO Recreate hosts file 问题可能是由另一个删除主机文件的应用程序引起的,例如MAMP PRO Recreate hosts文件

## 
# Host Database 
# 
# localhost is used to configure the loopback interface 
# when the system is booting.  Do not change this entry. 
## 
127.0.0.1       localhost 
255.255.255.255 broadcasthost 
::1             localhost  
fe80::1%lo0     localhost 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM