You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems to work for aarch64 architecture but when I compile on x86_64 architecture, I find the issue below:
/usr/lib/llvm-17/bin/clang: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.30' not found (required by /usr/lib/llvm-17/bin/clang)
The x86_64 binaries seems to be compiled on Ubuntu 22 and they expect libstdc++.so.6 to include GLIBCXX_3.4.30, but it includes up to GLIBCXX_3.4.29 (retrieved from strings /lib64/libstdc.so.6 | grep GLIBCXX) on RedHat UBI 9.
I'm trying to compile Cilium Proxy on RedHat UBI 9 and aarch64 architecture. To do so, I patched https://github.com/cilium/proxy/blob/main/bazel/toolchains/BUILD as shown below to adapt include directories and link options:
I have RedHat UBI 9 environment where I installed some system packages & bazellisk as shown below
Commands I run:
The error I'm facing:
Do you know how can I solve this?
The text was updated successfully, but these errors were encountered: