Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new builder configuration to test use of LLVM dylib across all tools #39

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions buildbot/osuosl/master/config/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,34 @@
'CC': 'clang', 'CXX': 'clang++',
})},

{'name' : "clang-x86_64-debian-dylib-fast",
'tags' : ["clang", "fast"],
'collapseRequests': False,
'workernames':["gribozavr4"],
'builddir':"clang-x86_64-debian-dylib-fast",
'factory' : UnifiedTreeBuilder.getCmakeWithNinjaBuildFactory(
llvm_srcdir="llvm.src",
obj_dir="llvm.obj",
clean=True,
depends_on_projects=['llvm','clang','clang-tools-extra','compiler-rt'],
extra_configure_args=[
"-DLLVM_CCACHE_BUILD=ON",
"-DLLVM_BUILD_LLVM_DYLIB=ON",
"-DLLVM_LINK_LLVM_DYLIB=ON",
"-DCOMPILER_RT_BUILD_BUILTINS:BOOL=OFF",
"-DCOMPILER_RT_BUILD_ORC:BOOL=OFF",
"-DCOMPILER_RT_BUILD_SANITIZERS:BOOL=OFF",
"-DCOMPILER_RT_BUILD_XRAY:BOOL=OFF",
"-DCOMPILER_RT_INCLUDE_TESTS:BOOL=OFF",
"-DCOMPILER_RT_BUILD_LIBFUZZER:BOOL=OFF",
"-DCMAKE_C_FLAGS=-Wdocumentation -Wno-documentation-deprecated-sync",
"-DCMAKE_CXX_FLAGS=-std=c++11 -Wdocumentation -Wno-documentation-deprecated-sync",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this will work to add the -stdc=c++11 flag here.

],
env={
'PATH':'/home/llvmbb/bin/clang-latest/bin:/home/llvmbb/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin',
'CC': 'clang', 'CXX': 'clang++',
})},

{'name' : "llvm-clang-x86_64-win-fast",
'tags' : ["clang", "fast"],
'collapseRequests': False,
Expand Down
1 change: 1 addition & 0 deletions buildbot/osuosl/master/config/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"llvm-clang-x86_64-expensive-checks-ubuntu",
"llvm-clang-x86_64-win-fast",
"clang-x86_64-debian-fast",
"clang-x86_64-debian-dylib-fast",
"llvm-clang-x86_64-expensive-checks-debian",
"llvm-clang-x86_64-sie-ubuntu-fast",
] + [
Expand Down