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
After executing make debug on my machine, then copy the target/debug/toda into chaos-daemon container, it would failed to execute toda command with error:
/usr/local/bin/toda: error while loading shared libraries: libfuse3.so.3: cannot open shared object file: No such file or directory
After install the package libfuse3-3, it still failed with error:
toda: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by toda)
toda: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by toda)
toda: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by toda)
🤪🤪
I could remove --release in Dockerfile to fetch a debug build now. I think we could also use this way to replace make debug recipe (also build debug build in docker)
The text was updated successfully, but these errors were encountered:
After executing
make debug
on my machine, then copy thetarget/debug/toda
into chaos-daemon container, it would failed to executetoda
command with error:After install the package
libfuse3-3
, it still failed with error:🤪🤪
I could remove
--release
inDockerfile
to fetch a debug build now. I think we could also use this way to replacemake debug
recipe (also build debug build in docker)The text was updated successfully, but these errors were encountered: