Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

gcc-arm-linux-gnueabi command not found

I am trying to install the gnu arm toolchain for ubuntu. I first downloaded the tar from CodeSourcery. However when I go into the bin folder, I cannot run any of the binaries. I have tried with ./ and without and putting it in the PATH and it keeps telling me "Command not Found" yet the file is there in the folder right in front of me. Then I tried sudo apt-get install gcc-arm-linux-gnueabi except after it says it has installed successfully, I cannot find it with whereis gcc-arm-linux-gnueabi. Can anyone help?

like image 213
user1952441 Avatar asked Jan 06 '13 07:01

user1952441


People also ask

What is arm linux Gnueabi gcc?

For your question, arm-none-linux-gnueabi and arm-linux-gnueabi is same thing. arm-linux-gcc is actually binary for gcc which produces objects for ARM architecture to be run on Linux with default configuration (abi) provided by toolchain.

Does gcc work on arm?

The GNU Arm Embedded Toolchain includes the GNU Compiler (GCC) and is available free of charge directly from Arm for embedded software development on Windows, Linux, and Mac OS X operating systems. Follow the links on this page to download the right version for your development environment.


1 Answers

fixed, using:

sudo apt-get install gcc-arm* 
like image 156
Ahmed Mkaouar Avatar answered Oct 11 '22 10:10

Ahmed Mkaouar