View previous topic :: View next topic |
Author |
Message |
tienchuan
Joined: 25 Aug 2009 Posts: 175
|
[Error] CCS C display File not found |
Posted: Sun Jun 16, 2013 5:06 am |
|
|
Dear all.
I have a project with directory
Code: |
D:\WORK\ASTI\PCB\04.DU AN RD\05.LED MATRIX\03.CODE\LUU CODE\VERSION 1( 07-05-13)\CODE PIC18F4680\COUNTER MOI 14-06-13
|
but when i use CCS C Compiler to build code to hex, it had display NOT FOUND main c file.
I'm using CCS C version 4.140.
Pls show me way to fix it. _________________ Begin Begin Begin !!! |
|
|
Ttelmah
Joined: 11 Mar 2010 Posts: 19588
|
|
Posted: Sun Jun 16, 2013 8:14 am |
|
|
You'll need to put inverted commas round the filename.
Spaces cannot be used in a filename passed as an argument to a function, without this. This is standard Windows. Problem is that space is a command separator in the Windows command line.
Best Wishes |
|
|
tienchuan
Joined: 25 Aug 2009 Posts: 175
|
|
Posted: Sun Jun 16, 2013 8:39 am |
|
|
Ttelmah wrote: | You'll need to put inverted commas round the filename.
Spaces cannot be used in a filename passed as an argument to a function, without this. This is standard Windows. Problem is that space is a command separator in the Windows command line.
Best Wishes |
thanks u Ttelmah, I tried your way but it's still error,
when i change create new project in the same directory, it build ok:)
thanks u _________________ Begin Begin Begin !!! |
|
|
Ttelmah
Joined: 11 Mar 2010 Posts: 19588
|
|
Posted: Sun Jun 16, 2013 10:33 am |
|
|
Double inverted commas, not singles.
It does work. |
|
|
|