Tool/software:
Hi,
As per the following documentation (compiling-ti-apps-launcher) I am trying to build the latest ti-app-launcher, but I am getting error ( /usr/bin/bash: exec format error). Reference I have shared the following screenshot below.
Tool/software:
Hi,
As per the following documentation (compiling-ti-apps-launcher) I am trying to build the latest ti-app-launcher, but I am getting error ( /usr/bin/bash: exec format error). Reference I have shared the following screenshot below.
HI Karthikeyan,
We have recreated the issue on our side it's working
The errors you're seeing are a result of a platform mismatch between the Docker image you're trying to run and your computer's architecture.exec /usr/bin/bash
exec format error
: This is the direct result of the platform mismatch. The Docker daemon tries to run the bash
executable from the ARM64 image on your AMD64 machine. The processor cannot understand the ARM-specific instructions, leading to a "bad format" error.
I will redirect this query to our Docker expert
Regards,
Dilna K
Hi Karthikeyan,
Can you try running the following command before running docker run and see if it helps:
sudo apt-get install qemu-user-static
Thanks for the support, that issue got resolved. While executing cmake build command I am facing the following issue
" CMake Error: The source directory "/" does not appear to contain CMakeLists.txt."
Screenshot shared following for the Reference. Request you to help me to resolve the build issue.
Please do the following before cmake:
cd /root/ti-apps-launcher/
Thanks for pointing these issues out, will get the documentation fixed asap.
Hi Divyansh Mittal , Thanks for your support, During ti-app-launcher build, I am getting following message,
"Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information"
Can you help me to remove this message?
For reference, I have shared the screenshot below.
Try the following:
locale #you will get a list of env variables #export and set the value of each to en_US.UTF-8 except the LANGUAGE variable try re-running build
This seems to be a Qt specific issue and would recommend asking on their forums if it still doesn't solve the issue.