Replies: 1 comment 4 replies
-
The libgcc-11-dev/libstdc++-11-dev packages still link to the host Linux's glibc. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have an application which runs on 2 different systems: Ubuntu 24.04 and Amazon Linux 2023. I do my builds on Ubuntu 24.04.
The problem I am facing is that Amazon Linux 2023 (with all upgrades) has too old libc/libstdc++ versions: 2.34/3.4.29 against 2.38/3.4.30 required on Ubuntu 24.04. I tried to install libgcc-11-dev/libstdc++-11-dev and build with
xmake f --toolchain=gcc-11 -c
but the binary seems still to be linked against newer (system) version of libgcc/libstdc++.Does anyone know what's the right way to make builds in such scenario?
Beta Was this translation helpful? Give feedback.
All reactions