Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 4.1 Instruments Hardly Working For Me [duplicate]

Possible Duplicate:
Bug with starting Instruments via Profile under XCode 4.1 Build 4B110

Instruments used to work fine, however now that I have the new 4.1 Xcode on Lion, it is extremely slow and I have to wait about 5 min before it is responsive. Is anyone else having this same problem? I am using iOS simulator too.

I have already tried reinstalling and uninstalling Xcode a few times as well.

like image 501
Jon Avatar asked Jan 30 '26 13:01

Jon


1 Answers

/etc/authorization, add following:

<key>com.apple.instruments.process.analysis</key>
<dict>
<key>authenticate-user</key>
<false/>
<key>class</key>
<string>user</string>
<key>comment</key>
<string>Rights for Instruments</string>
<key>group</key>
<string>admin</string>
<key>shared</key>
<true/>
<key>timeout</key>
<integer>36000</integer>
</dict>
like image 154
Maverick Avatar answered Feb 01 '26 06:02

Maverick