You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2018/11/01 07:51:44 UTC

svn commit: r1845404 - /subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svnbuild.sh

Author: brane
Date: Thu Nov  1 07:51:44 2018
New Revision: 1845404

URL: http://svn.apache.org/viewvc?rev=1845404&view=rev
Log:
[In tools/buildbot/slaves/svn-x64-macosx]
* svnbuild.sh: Ignore annoying linker warnings from out-of-date libraries on macOS 10.13.
   Optionally serialize the build so that warnings don't get mixed up in the output.

Modified:
    subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svnbuild.sh

Modified: subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svnbuild.sh
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svnbuild.sh?rev=1845404&r1=1845403&r2=1845404&view=diff
==============================================================================
--- subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svnbuild.sh (original)
+++ subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svnbuild.sh Thu Nov  1 07:51:44 2018
@@ -106,6 +106,14 @@ test -f config.log && mv config.log "${a
 # Step 4: build
 #
 
+# An optional parameter tells build scripts how to parallelize the build
+if [ "$2" = "serial" ]; then
+    parallel=1
+else
+    parallel=${SVNBB_PARALLEL}
+fi
+
 echo "============ make"
 cd ${absbld}
-make -j${SVNBB_PARALLEL}
+make -j${parallel} 2>&1 \
+    | grep -v '^ld: [w]arning: text-based stub file.*Falling back to library file for linking. *$'