-
Notifications
You must be signed in to change notification settings - Fork 469
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
fix: AtomicI64, AtomicU64 for build mipsel processor #2301
base: main
Are you sure you want to change the base?
fix: AtomicI64, AtomicU64 for build mipsel processor #2301
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2301 +/- ##
=====================================
Coverage 79.6% 79.6%
=====================================
Files 123 123
Lines 21263 21263
=====================================
+ Hits 16938 16940 +2
+ Misses 4325 4323 -2 ☔ View full report in Codecov by Sentry. |
ref: #2054 |
@@ -18,6 +18,12 @@ pub(crate) use exponential_histogram::{EXPO_MAX_SCALE, EXPO_MIN_SCALE}; | |||
use once_cell::sync::Lazy; | |||
use opentelemetry::{otel_warn, KeyValue}; | |||
|
|||
#[cfg(any(target_arch = "mips", target_arch = "powerpc"))] | |||
use portable_atomic::{AtomicBool, AtomicI64, AtomicU64, AtomicUsize}; |
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.
are these the only place this SDK uses Atomics?
could you add this for xtensa arch too? I'm trying to use this sdk on ESP32 and getting this error:
|
Fixes #
Design discussion issue (if applicable) #
Changes
AtomicI64
,AtomicU64
in std.Please provide a brief description of the changes here.
Merge requirement checklist
CHANGELOG.md
files updated for non-trivial, user-facing changes