This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

build error: 'NHST' is not recognized as an internal or external command

Hello.

I am trying to open an existing CCS3.3 project in CCS5.1.

I have imported the project successfully, but upon building it, I get the following errors:

C:\ti\ccsv5\utils\bin\gmake -k all
'Building file: Z:/Projects/DSP
'NHST' is not recognized as an internal or external command,
operable program or batch file.
gmake: *** [V2AcqSyscfg.cmd] Error 1
gmake: Target `all' not remade because of errors.

Now I've done some research here and found the following threads, which are close, but don't solve my issue:

http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/168935.aspx

http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/215561.aspx

I'm mostly concerned with the line that NHST is not recognized as a command.

Please let me know if you can assist, and if you require any additional info.

Thanks.

  • Cam Buskell said:
    C:\ti\ccsv5\utils\bin\gmake -k all
    'Building file: Z:/Projects/DSP
    'NHST' is not recognized as an internal or external command,

    It looks like some path issue. 'Z:/Projects/DSP' looks like some truncated path to a source file. Where are the source files located?

  • Ah, no that's not the correct directory.

    There's a few more sub folder levels:
    Z:\Projects\DSP&NewHighSpeedTelemetry\ . . . \TWRec0.3 - CCS5

    Does the ampersand affect the file path?

    How do I change the build path to the correct one?

  • Cam Buskell said:
    Does the ampersand affect the file path?

    Yes. Ampersands and other "special" characters can cause issues.

    Similar issue found here:

    http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/260781.aspx

    Cam Buskell said:
    How do I change the build path to the correct one?

    The build tools does not seem to handle such special characters. I would recommend changing the name of that folder if possible.

    ki

  • Copying the directory to hard drive and renaming solves this issue.

    I now have a related issue:

    In building the project, I get an access is denied failure

    >> Compilation failure
    gmake: *** [C:/ . . . /AcqSysHighLeeSpecEn.obj] Error 1
    'Building file: C:/ . ..  /TWRec0.3/AcqSysProcessing.c'
    gmake: *** Access is denied.

    What does this mean?  there are no permission issues on my local drive.

    Furthermore, whenever I build the project, it times out at this error.

  • Cam Buskell said:
    gmake: *** Access is denied.

    Two common causes of this error:

    -Some antivirus software is overly aggressive. Kaspersky is one that has caused problems in the past. Try disabling it as a test.

    -junctions (soft-links)

  • Thanks for the help.  I ended up cleaning the project and then building from there.

    I had to do it file by file however, but once it worked, it was fine going forward.

    Thanks.