Skip to content

deps(dd-trace-cpp): bump dd-trace-cpp to 83958bc #208

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

Merged
merged 3 commits into from
May 5, 2025
Merged
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
2 changes: 1 addition & 1 deletion build_env/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,5 @@ RUN apk add --no-cache pcre-dev pcre2-dev zlib-dev openssl-dev perl

# Install Rust toolchain
RUN apk add --no-cache curl
RUN curl proto =https –tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -yq \
RUN curl --proto '=https' –tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -yq \
&& ln -s ~/.cargo/bin/cargo /usr/bin/cargo
11 changes: 11 additions & 0 deletions build_env/glibc_compat.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,4 +220,15 @@ ssize_t getrandom(void *buf, size_t buflen, unsigned int flags) {
return (ssize_t)bytes_read;
}

#ifdef __x86_64__
#define MEMFD_CREATE_SYSCALL 319
#elif __aarch64__
#define MEMFD_CREATE_SYSCALL 279
#endif

// introduced in glibc 2.27
int memfd_create(const char *name, unsigned flags) {
return syscall(MEMFD_CREATE_SYSCALL, name, flags);
}
Comment on lines +223 to +232
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@cataphract can I give your review on this part? please.


#endif
2 changes: 1 addition & 1 deletion dd-trace-cpp
Submodule dd-trace-cpp updated 112 files