I recently upgraded to 10.7.3, and when I try to debug my iOS project in the simulator for the first time after logging in, I'm prompted with the following two alerts:

Developer Tools Access needs to take control of another process for debugging to continue. Type your password to allow this.

gdb-i386-apple-darwin needs to take control of another process for debugging to continue. Type your password to allow this.

My user is an admin user. I never saw these alerts before. How do I get them to stop?

EDIT

I've verified that I'm a member of the _developer group using id -a.

link|improve this question

1  
I believe you need to add yourself to the _developer group like this: stackoverflow.com/questions/1837889/… but if you're already part of the _developer group (as I am) then I'm not sure what's changed. I know the /etc/authorization file has changed in 10.7.3, and a few tests show that I can eliminate some of the prompts by editing that to always allow debug, but with default rules it seems to fail the _developer group test. :( I'm noting what I've found so someone else might dig up more details and make more sense of what broke. – Cyberfox Feb 5 at 2:58
feedback

5 Answers

up vote 7 down vote accepted

Reinstalling Xcode 4.2.1 after upgrading to 10.7.3 seems to have fixed it for me.

link|improve this answer
We will have to this once again when either Mac OS 10.8 or iOS 5.1 launch. Word is they are making the Xcode app an actual .app for ease of updating through App Store. – Ivan Karpan Feb 19 at 12:20
Xcode 4.3 is already delivered in this manner. I haven't had this password issue since installing it. – Zev Eisenberg Feb 20 at 0:22
feedback

Per Zev Eisenberg's answer, reinstalling Xcode 4.2.1 worked. However, it might be easier to just patch the /etc/authorization file with the following diff.

        <key>system.privilege.taskport.debug</key> 
        <dict>
            <key>allow-root</key>
            <false/>
            <key>class</key>
-           <string>user</string>
+           <string>rule</string>
            <key>comment</key>
            <string>For use by Apple.  WARNING: administrators are advised
             not to modify this right.</string>
            <key>default-button</key>
            <dict>
            ...
            </dict>
            <key>default-prompt</key>
            <dict>
            ...
            </dict>
-           <key>group</key>
-           <string>_developer</string>
            <key>shared</key>
            <true/>
-           <key>timeout</key>
-           <integer>36000</integer>
+           <key>k-of-n</key>
+           <integer>1</integer>
+           <key>rule</key>
+           <array>
+               <string>is-admin</string>
+               <string>is-developer</string>
+               <string>authenticate-developer</string>
+           </array>
        </dict>
link|improve this answer
Excellent, thanks. – Steven Kramer Feb 9 at 9:15
I had done the same thing as above. The problem now is that I am not able to get internet wifi. I am not sure how this is happening. – Nareshkumar Feb 15 at 16:51
feedback

There's a much simpler solution for this. Try running the following command:

sudo /usr/sbin/DevToolsSecurity --enable
link|improve this answer
Thank you! This is great. The man page for DevToolsSecurity explains exactly what's going on. – zmccord Mar 30 at 16:48
why does this work? – chikuba Apr 21 at 6:06
feedback

I modified the rule for system.privilege.taskport and the alert doesn't show up anymore.

  1. Open the file /etc/authorization.
  2. Find the rule system.privilege.taskport. Under the line <key>class</key>, change <string>rule</string> to <string>allow</string>
link|improve this answer
Posting a diff is a little nicer. – Heath Borders Apr 19 at 13:38
feedback

Something has been modified on file /etc/authorization, I've a Lion without v10.7.3 and it has the following code

Lines 5807-5814

    <key>k-of-n</key>
    <integer>1</integer>
    <key>rule</key>
    <array>
        <string>is-admin</string>
        <string>is-developer</string>
        <string>authenticate-developer</string>
    </array>

After the update the file contains many modification due to new language supported but the lines corresponding to debugging authorization differ from the lines shown above in

Lines 7675-7676

    <key>group</key>
    <string>_developer</string>

I can't apply these differences to my 10.7.3 Lion installation because it's a production machine and I can't risk to corrupt it

I've all necessasy permission as shown from command id -a

uid=501(dave) gid=20(staff) groups=20(staff),
401(com.apple.access_screensharing),
402(com.apple.sharepoint.group.1),
12(everyone),
33(_appstore),
61(localaccounts),
79(_appserverusr),
80(admin),
81(_appserveradm),
98(_lpadmin),
100(_lpoperator),
204(_developer)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.