9 years, 4 months ago.

Does the build script work with Keil v4.74?

When I try to run the build script (Keil v4.74, LPC812, uARM), I get "[Error 2] The system cannot find the file specified" A bit of debugging showed that there are some Keil path errors in the settings.py file. I tried fixing those and got the same error and then realized that the original settings.py file seems to have been written for Keil v4.54. Currently, Keil v4.74 is the earliest version that I can get without a license. Any suggestions?

Question relating to:

1 Answer

9 years, 4 months ago.

I'm usually developing mbed SDK with Keil(uVision) 4. So, I believe build.py/make.py works with that. Could you confirm your private_settings.py? This settings is mine.

from os.path import join, abspath, dirname
 
armcc = "keil" # "keil", or "standalone", or "ds-5"
 
if armcc == "keil":
    ARM_PATH = "C:/Keil/ARM/ARMCC"
    ARM_BIN = join(ARM_PATH, "bin")
    ARM_INC = join(ARM_PATH, "include")
    ARM_LIB = join(ARM_PATH, "lib")
 
BUILD_OPTIONS = ["debug-info"]

Accepted Answer

This was not exactly what I had in my settings file. I changed it to this and it works! Thank you!!

posted by Craig McConnell 21 Dec 2014