Search code examples
linuxcompiler-errorsmakefilelazarus

Linux (Mageia): make not found /usr/bin/make


I recently installed Lazarus 1.0.12 on Mageia Linux Operating System. While in the middle of bring back everything to where It was, before my computer crashed. I am running into this error which I have never seen before.

Take a look at the following image:

enter image description here

I found some solutions online, but they all pointed me to the fact that I need to set the correct make path within Option->>Environment->>File->>Make to /usr/bin/make

I did make the change, but it still raises same error.

What am I doing wrong?


Solution

  • According to the comment made by the asker, /usr/bin/make does not exist, so we need to install make first.

    Try this:

    urpmi make
    

    This requires root privilege.

    See URPMI and Software management.