Bug 1342503 - Build webrender by default on OS X buildbot builds. r?froydnj draft
authorKartikaya Gupta <kgupta@mozilla.com>
Sat, 27 May 2017 15:28:38 -0400
changeset 585662 313cc9dbc6949060e7d6692cff98224656b17860
parent 585650 35099b4caec14bf0e3c5e3fed7a17dd3faf51dbe
child 630772 745ba1ae8bbf21cd9d14f6bca99d10727373d18e
push id61166
push userkgupta@mozilla.com
push dateSat, 27 May 2017 19:29:04 +0000
reviewersfroydnj
bugs1342503, 1365993
milestone55.0a1
Bug 1342503 - Build webrender by default on OS X buildbot builds. r?froydnj With the fix for bug 1365993, building rust code with cargo as part of the Firefox build on OS X 10.7 builders no longer fails, so we don't need to disable webrender there any more. MozReview-Commit-ID: 4kulJNZjsfG
build/macosx/local-mozconfig.common
--- a/build/macosx/local-mozconfig.common
+++ b/build/macosx/local-mozconfig.common
@@ -31,21 +31,16 @@ elif [ -d "$topsrcdir/../clang" ]; then
     export RANLIB=$topsrcdir/../cctools/bin/ranlib
 fi
 
 # Ensure the updated linker doesn't generate things our older build tools
 # don't understand.
 ldflags="$ldflags -Wl,-no_data_in_code_info"
 export LDFLAGS="$ldflags"
 
-# Until bug 1342503 is fixed, we can't build some of the webrender dependencies
-# on buildbot OS X builders, because rustc will use some random system toolchain
-# instead of the one we package with tooltool.
-ac_add_options --disable-webrender
-
 # If not set use the system default clang
 if [ -z "$CC" ]; then
     export CC=clang
 fi
 
 # If not set use the system default clang++
 if [ -z "$CXX" ]; then
     export CXX=clang++