-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Changes from all commits
1c73df5
87f52a9
e7c1339
16d4330
6c04aaa
c400d72
1e59a79
5c8f259
cfc8e99
adb3a94
b8a3f6c
79e459f
029549c
5421240
4f6be34
ad237e4
4e56e48
5400492
f87904b
120f822
01e0b95
a81c208
fc588ac
6d9f60c
5908118
f453cbf
3b3e9de
61dae9a
File filter
Filter by extension
Conversations
Jump to
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?
Contributor
Author
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
Contributor
Author
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" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.