[zorg] r287418 - [AVR] Compile the X86 backend on the AVR builder
Dylan McKay via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 18 17:39:08 PST 2016
Author: dylanmckay
Date: Fri Nov 18 19:39:07 2016
New Revision: 287418
URL: http://llvm.org/viewvc/llvm-project?rev=287418&view=rev
Log:
[AVR] Compile the X86 backend on the AVR builder
There were a bunch of generic CodeGen tests which required that the X86
backend is included.
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=287418&r1=287417&r2=287418&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Fri Nov 18 19:39:07 2016
@@ -81,7 +81,8 @@ def _get_llvm_builders():
extra_cmake_args=[
"-G", "Unix Makefiles",
"-DCMAKE_BUILD_TYPE:STRING=Release",
- "-DLLVM_TARGETS_TO_BUILD:STRING=AVR",
+ # We need to compile the X86 backend due to a few generic CodeGen tests.
+ "-DLLVM_TARGETS_TO_BUILD:STRING=AVR;X86",
"-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD:STRING=AVR",
])}
]
More information about the llvm-commits
mailing list