Trần Kim Dự
Trần Kim Dự

Reputation: 6102

arm-elf-g++: Command not found

I try to compile live555 library for eCos system. I don't pretty sure how to do this, so i try option build this under arm compiler. so as tutorial online. I type :

./genMakefiles armlinux

after that, i type : make and meet this error:

arm-elf-g++: Command not found

I think that arm-elf-g++ compiler that my machine doesn't install yet. I google, but no result how to install. (i'm currently using Ubuntu 13.04 64 bit). please tell me how to fix this.

Upvotes: 1

Views: 4044

Answers (1)

paulsm4
paulsm4

Reputation: 121649

Try something like this:

sudo apt-get install gcc-arm-linux-gnueabi

Here are a couple of links for installing an ARM toolchain on Ubuntu:

Upvotes: 2

Related Questions