johnathan-arsenault
johnathan-arsenault
How could I get this building to support ubuntu 20.04? Since it's LTE, the latest version of gcc/g++ at least provided by the official focal repositories is 10. If I...
Ubuntu 20.04 official focal repositories only go up to gcc and g++ 10.5.0. If I build a local copy of gcc and g++ 11, will the build process package those...
Theoretically, I could build on 22.04 and then run on 20.04? if so, it looks like the proper libc6 shared libraries are not being copied over when packaging with cpack
If I build in 22.04, can I then run the package in 20.04? The issue is the majority of our machines are on 20.04, with the newer ones being 22.04....
This is the error I get when attempting to run a 22.04 built binary on 20.04 ```agent/bin/agent: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.35' not found (required by /home/edge/agent3/bin/../lib/libagent_lib.so) agent/bin/agent: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not...
I can reproduce the error with the following docker build command `docker build -t mtc-agent:latest --build-arg WITH_TESTS=true --build-arg WITH_TESTS_ARG= .` How much value do the tests provide? is this something...
Skipping the tests, it does build on 20.04, and I can confirm that it works. Is this something that should be investigated on why the tests are not able to...
I managed to get dragon working, I was missing the i386 libs that it meeded, but it seems that the image build isn't actually building a useable image. Every time...
I've determined that it's being caused by the following error, is anyone able to help out with this? I've tried it on a barebones ubuntu 22.04 install, as well as...
The issue of not being able to build properly is caused by a change in the qemu-user-static package, which removes the C flag by default in the configurations. The was...