c++eclipseblackberryblackberry-10momentics

Path location error : Program "make" not found in PATH?


I'm developing a BlackBerry 10 mobile application using the Momentics IDE (native SDK).

After updating the blackberry momentic IDE to handle the new api 10.3.1, All presents project even the new ones, return the eroor below :

-> "Description Resource Path Location Type Program "make" not found in PATH CMAP_LIB C/C++ Problem"

How can I fix this ? I hope you can help me with this.


Solution

  • You need to find out where make is in the filesystem and put the path in the PATH environment variable, something like:

    find / -name make 2>/dev/null
    

    say you find make in /usr/bin, then add that directory to PATH:

    PATH=/usr/bin:$PATH