1

I have downloaded freertos and unable run the make file. It's showing error as

Make:usr/lib/arm-linux-gnueabihf/ gcc command not found 

What is this?

Bex
  • 2,929
  • 3
  • 26
  • 34
user19867
  • 11
  • 2

1 Answers1

1

This means the gcc command is not found. gcc is the Gnu Compiler Collection and it is (a bit simplified) used by make to compile the source code into binaries that the system can run.

Depending on what host system you are compiling this on, there are different ways to install gcc. Consult documentation for your operating system.

There is a post concerning this on the FreeRTOS support forum.

Bex
  • 2,929
  • 3
  • 26
  • 34