-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[libc++] Add CI job testing on OpenBSD #106315
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
Conversation
|
@llvm/pr-subscribers-libcxx Author: Brad Smith (brad0) ChangesFull diff: https://github.com/llvm/llvm-project/pull/106315.diff 1 Files Affected:
diff --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index d02d11ae7a756b..111fce874e743f 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -173,6 +173,18 @@ steps:
os: freebsd
<<: *common
+- group: ':openbsd: OpenBSD'
+ steps:
+ - label: OpenBSD -current amd64
+ command: libcxx/utils/ci/run-buildbot generic-cxx17
+ env:
+ CC: clang
+ CXX: clang++
+ agents:
+ queue: libcxx-builders
+ os: openbsd
+ <<: *common
+
- group: ':android: Android'
steps:
- label: Android 5.0, x86 NDK
|
ae1345a to
2d10c7b
Compare
2d10c7b to
26ef598
Compare
|
|
||
| // TODO: Find out how altivec changes things and allow vectorizations there too. | ||
| #if _LIBCPP_STD_VER >= 14 && defined(_LIBCPP_CLANG_VER) && !defined(__ALTIVEC__) | ||
| #if _LIBCPP_STD_VER >= 14 && defined(_LIBCPP_CLANG_VER) && _LIBCPP_CLANG_VER >= 1700 && !defined(__ALTIVEC__) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't support anything older than Clang 17 (actually 18, since we're in the LLVM 20 phase).
| # if _LIBCPP_CLANG_VER < 1600 | ||
| # warning "Libc++ only supports Clang 16 and later" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same.
|
@brad0 Do you plan to continue working on this? |
|
Closing for now to clean up the review queue. If you want to continue working on this feel free to re-open. |
I would like to, but it's stuck in a situation that can't be resolved. |
Is that something we can help resolving? |
No description provided.