pristineio / webrtc-build-scripts

A set of build scripts useful for building WebRTC libraries for Android and iOS.
BSD 3-Clause "New" or "Revised" License
1.12k stars 448 forks source link

How to use xcode update2Revision? #85

Open leahov opened 9 years ago

leahov commented 9 years ago

Hi! How to use xcode 6.1.1 update2Revision? For example, if I need a revision of 7000. Previously, I used gclient sync --revison 7000. Now it does not work. I would be glad if you tell us in detail. In the Readme is not quite clear to me. Thank U.

leahov commented 9 years ago

I tried this:

build.sh

function dance() {

These next if statement trickery is so that if you run from the command line and don't set anything to build, it will default to the debug profile.

BUILD_DEBUG=true
if [ "$WEBRTC_RELEASE" = true ] ; then
    BUILD_DEBUG=false
fi

if [ "$WEBRTC_PROFILE" = true ] ; then
    BUILD_DEBUG=false
fi

if [ "$BUILD_DEBUG" = true ] ; then
    WEBRTC_DEBUG=true
fi

//# get_webrtc $@ update2Revision 7000 build_webrtc //# create_ios_framework echo "Finished Dancing!" } but I still collects library with the latest revision.

illidan-firerage commented 8 years ago

i have the same problem. do you solve it?