Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 4.3k
GH-46508: [C++] Upgrade OpenTelemetry cpp to avoid build error on recent Clang#46509
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
1c73df587f52a9e7c133916d43306c04aaac400d721e59a795c8f259cfc8e99adb3a94b8a3f6c79e459f029549c54212404f6be34ad237e44e56e485400492f87904b120f82201e0b95a81c208fc588ac6d9f60c5908118f453cbf3b3e9de61dae9aFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # Licensed to the Apache Software Foundation (ASF) under one | ||
| # or more contributor license agreements. See the NOTICE file | ||
| # distributed with this work for additional information | ||
| # regarding copyright ownership. The ASF licenses this file | ||
| # to you under the Apache License, Version 2.0 (the | ||
| # "License"); you may not use this file except in compliance | ||
| # with the License. You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, | ||
| # software distributed under the License is distributed on an | ||
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| # KIND, either express or implied. See the License for the | ||
| # specific language governing permissions and limitations | ||
| # under the License. | ||
| # Note this file is merely a placeholder that contains no suppressions for now. | ||
| # But it may become useful in the future. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -75,10 +75,9 @@ function setup_sanitizers() { | ||
| UBSAN_OPTIONS="$UBSAN_OPTIONS suppressions=$ROOT/build-support/ubsan-suppressions.txt" | ||
| export UBSAN_OPTIONS | ||
| # Enable leak detection even under LLVM 3.4, where it was disabled by default. | ||
| # This flag only takes effect when running an ASAN build. | ||
| # ASAN_OPTIONS="$ASAN_OPTIONS detect_leaks=1" | ||
| # export ASAN_OPTIONS | ||
| # Set up suppressions for AddressSanitizer | ||
| ASAN_OPTIONS="$ASAN_OPTIONS suppressions=$ROOT/build-support/asan-suppressions.txt" | ||
| export ASAN_OPTIONS | ||
Comment on lines
78
to
80
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you revert ASAN related changes for now? ContributorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry I forgot to mention. This is not necessary for this change but I think we might need it in the future. What do you think? Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK. Could you add a comment to ContributorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. | ||
| # Set up suppressions for LeakSanitizer | ||
| LSAN_OPTIONS="$LSAN_OPTIONS suppressions=$ROOT/build-support/lsan-suppressions.txt" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -17,3 +17,6 @@ | ||
| # Thread leak in CUDA | ||
| thread:libcuda.so | ||
| # False-positives in OpenTelemetry because of non-instrumented code. | ||
| race:^opentelemetry | ||
kou marked this conversation as resolved.
Outdated
Uh oh!There was an error while loading. Please reload this page. | ||
Uh oh!
There was an error while loading. Please reload this page.