[zorg] r230486 - Use Release build type for polly build factory

Tobias Grosser tobias at grosser.es
Wed Feb 25 04:48:01 PST 2015


Author: grosser
Date: Wed Feb 25 06:48:00 2015
New Revision: 230486

URL: http://llvm.org/viewvc/llvm-project?rev=230486&view=rev
Log:
Use Release build type for polly build factory

Recently the default build type for cmake builds has been switched to
Debug, which increases the binary size and link time so much that the
linker processes timeout on my 4GB memory machine.

Modified:
    zorg/trunk/zorg/buildbot/builders/PollyBuilder.py

Modified: zorg/trunk/zorg/buildbot/builders/PollyBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/PollyBuilder.py?rev=230486&r1=230485&r2=230486&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/PollyBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/PollyBuilder.py Wed Feb 25 06:48:00 2015
@@ -46,7 +46,9 @@ def getPollyBuildFactory():
                                description=["create build dir"],
                                workdir="."))
     cmakeCommand = ["cmake", "../%s" %llvm_srcdir,
-		    "-DCMAKE_COLOR_MAKEFILE=OFF", "-DPOLLY_TEST_DISABLE_BAR=ON"]
+		    "-DCMAKE_COLOR_MAKEFILE=OFF", "-DPOLLY_TEST_DISABLE_BAR=ON",
+		    "-DCMAKE_BUILD_TYPE=Release"]
+
     f.addStep(ShellCommand(name="cmake-configure",
                                command=cmakeCommand,
                                haltOnFailure=False,





More information about the llvm-commits mailing list