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
{{ message }}
This repository was archived by the owner on Aug 15, 2025. It is now read-only.
I am seeing the following error when i run aarch64_ci_build.sh which calls aarch64_ci_build.sh
+ curl -L -o /mambaforge.sh https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-aarch64.sh
curl: (43) A libcurl function was given a bad argument
I have looked into it and it seems that the LD_LIBRARY_PATH changes the libcurl shared library
I am seeing the following error when i run
aarch64_ci_build.shwhich callsaarch64_ci_build.shI have looked into it and it seems that the LD_LIBRARY_PATH changes the libcurl shared library
builder/aarch64_linux/aarch64_ci_setup.sh
Line 11 in 89d9a8c
From
libcurl.so.4 => /lib64/libcurl.so.4 (0x0000e93bf5c82000)
to ( after LD_LIBRARY_PATH change )
libcurl.so.4 => /opt/conda/lib/libcurl.so.4 (0x0000e4f6784db000)
So it seems that the conda installed curl is interferring with the system-installed curl. W