[PATCH] D70715: [AVR] Add the AVR builder 'llvm-avr-linux' back, pulling from GitHub

Dylan McKay via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 26 05:46:53 PST 2019


dylanmckay created this revision.
dylanmckay added a reviewer: gkistanova.
Herald added a subscriber: Jim.

This patch brings back the existing AVR builder that was removed in
3b645861c5110a9d11bf5f6d936ca074212cc452 <https://reviews.llvm.org/rZORG3b645861c5110a9d11bf5f6d936ca074212cc452> due to it being incompatible
with the GitHub only repo we now have.

The builder now uses the 'getClangCMakeBuildFactory()' factory, instead
of 'getLLVMCMakeBuildFactory()' as it used to.


Repository:
  rZORG LLVM Github Zorg

https://reviews.llvm.org/D70715

Files:
  buildbot/osuosl/master/config/builders.py


Index: buildbot/osuosl/master/config/builders.py
===================================================================
--- buildbot/osuosl/master/config/builders.py
+++ buildbot/osuosl/master/config/builders.py
@@ -670,6 +670,19 @@
                ),
          'category': 'clang'},
 
+        {'name' : "llvm-avr-linux",
+         'slavenames' : ["avr-build-01"],
+         'builddir' : "llvm-avr-linux",
+         'factory': ClangBuilder.getClangCMakeBuildFactory(
+                      jobs=8,
+                      clean=False,
+                      checkout_lld=False,
+                      extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=ON',
+                                        # We need to compile the X86 backend due to a few generic CodeGen tests.
+                                        '-DLLVM_TARGETS_TO_BUILD=X86',
+                                        '-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=AVR',
+                                        '-DBUILD_SHARED_LIBS=ON'])},
+
         {'name' : "clang-solaris11-amd64",
          'slavenames' : ["solaris11-amd64"],
          'builddir' : "clang-solaris11-amd64",


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D70715.231058.patch
Type: text/x-patch
Size: 1128 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191126/648544df/attachment.bin>


More information about the llvm-commits mailing list