Guest User

Untitled

a guest
Feb 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. *This file is a placeholder to collect notes from building WebRTC on OS X
  2.  
  3. ## Base SDK Problem
  4.  
  5. By default, WebRTC generates Xcode project files requiring OSX 10.5 SDK which is not shipped with Xcode 4+ and result in missing SDK errors.
  6.  
  7. ### Using OS X 10.6 SDK
  8.  
  9. Change following line in `trunk/build/common.gypi` file
  10.  
  11. 'mac_sdk%': '10.5'
  12.  
  13. to:
  14.  
  15. 'mac_sdk%': '10.6'
  16.  
  17. Regenerate project files
  18.  
  19. gclient runhooks --force
Add Comment
Please, Sign In to add comment