[zorg] r292103 - [zorg] Enable GlobalISel builds on fast ARM and AArch64 bots

Renato Golin via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 16 03:42:44 PST 2017


Author: rengolin
Date: Mon Jan 16 05:42:43 2017
New Revision: 292103

URL: http://llvm.org/viewvc/llvm-project?rev=292103&view=rev
Log:
[zorg] Enable GlobalISel builds on fast ARM and AArch64 bots

Each of these bots are the fastest bots we have and also have a similar
companion, which is equally fast. This way, we can compare the impact of
building GlobalISel, not only in speed, but also stability and measure
environment issues that this could bring.

Modified:
    zorg/trunk/buildbot/osuosl/master/config/builders.py

Modified: zorg/trunk/buildbot/osuosl/master/config/builders.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/builders.py?rev=292103&r1=292102&r2=292103&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Mon Jan 16 05:42:43 2017
@@ -259,6 +259,7 @@ def _get_clang_builders():
                                         "-DCMAKE_CXX_FLAGS='-mcpu=cortex-a15 -mfpu=vfpv3 -mthumb'",
                                         "-DLLVM_TARGETS_TO_BUILD='ARM;AArch64'",
                                         "-DLLVM_LIT_ARGS='-sv -j4'",
+                                        "-DLLVM_BUILD_GLOBAL_ISEL=ON",
                                         "-DLLVM_PARALLEL_LINK_JOBS=2"])},
 
         ## Cortex-A15 check-all self-host with CMake builder
@@ -898,6 +899,7 @@ def _get_sanitizer_builders():
                       env={'PATH':'/usr/lib64/ccache:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'},
                       extra_cmake_args=["-DCMAKE_C_FLAGS='-mcpu=cortex-a57 -DSANITIZER_AARCH64_VMA=39'",
                                         "-DCMAKE_CXX_FLAGS='-mcpu=cortex-a57 -DSANITIZER_AARCH64_VMA=39'",
+                                        "-DLLVM_BUILD_GLOBAL_ISEL=ON",
                                         "-DLLVM_TARGETS_TO_BUILD='ARM;AArch64'"],
                )},
 




More information about the llvm-commits mailing list