Changes between Version 130 and Version 131 of ProblemHotlist


Ignore:
Timestamp:
Jan 6, 2016, 5:30:18 PM (8 years ago)
Author:
jeremyhu (Jeremy Huddleston Sequoia)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ProblemHotlist

    v130 v131  
    3232== Build failures after upgrading to Xcode 7.2 == #xcode7.2
    3333
    34 After installing the update to Xcode 7.2, port installations or upgrades using `xcodebuild` may fail with the following error due to an error in the Xcode installation. This is a problem that should be addressed by Apple, please also file a [https://bugreport.apple.com bug report] to raise awareness.
     34After installing the update to Xcode 7.2, port installations or upgrades using `xcodebuild` may fail with the following error due to an error in the Xcode installation. This is a problem that should be addressed by Apple in a future Xcode update.
    3535
    3636{{{
     
    4545}}}
    4646
    47 At the moment, a known workaround is to manually fix the permissions of the path mentioned in the error message. User should be 'root', group should be 'wheel', and write permissions only granted for the owner:
    48 
    49 {{{
    50 sudo chmod -R 755 $(xcode-select -p)/Library/PrivateFrameworks/CoreSimulator.framework/Versions/A/XPCServices/com.apple.CoreSimulator.CoreSimulatorService.xpc
     47The workaround is to manually fix the permissions of the path mentioned in the error message. User should be 'root', group should be 'wheel', and write permissions only granted for the owner:
     48
     49{{{
     50sudo chmod -R g-w $(xcode-select -p)/Library/PrivateFrameworks/CoreSimulator.framework/Versions/A/XPCServices/com.apple.CoreSimulator.CoreSimulatorService.xpc
    5151sudo chown -R root:wheel $(xcode-select -p)/Library/PrivateFrameworks/CoreSimulator.framework/Versions/A/XPCServices/com.apple.CoreSimulator.CoreSimulatorService.xpc
    5252}}}