Skip to content

Instantly share code, notes, and snippets.

@donpark
Created July 7, 2011 17:50
Show Gist options
  • Save donpark/1070097 to your computer and use it in GitHub Desktop.
Save donpark/1070097 to your computer and use it in GitHub Desktop.
WebRTC OS X Notes

*This file is a placeholder to collect notes from building WebRTC on OS X

Base SDK Problem

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.

Using OS X 10.6 SDK

Change following line in trunk/build/common.gypi file

'mac_sdk%': '10.5'

to:

'mac_sdk%': '10.6'

Regenerate project files

gclient runhooks --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment