Author Topic: "The system cannot find the path specified" WHILE COMPILING  (Read 9426 times)

Offline seema

  • Single posting newcomer
  • *
  • Posts: 5
"The system cannot find the path specified" WHILE COMPILING
« on: December 19, 2013, 12:09:58 pm »
hi all
    I am facing some issue while compiling a  project in code block.the code written is in C I.have created a new project and made all setting .but when I compile it gives error  "The system cannot find the path specified" in prebuilt steps.     I have defined the path in prebuilt steps as  D:\sample\code\make\m.bat and post build steps as cd   .My source code and all files are inside the code folder as specified in path and compiler in C: directory.  The batch file has matter   as attched in text file here..
« Last Edit: December 19, 2013, 12:15:38 pm by seema »

Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3353

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: "The system cannot find the path specified" WHILE COMPILING
« Reply #2 on: December 20, 2013, 07:31:05 am »
Remember that all path must be relative to the patch of your project file.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline seema

  • Single posting newcomer
  • *
  • Posts: 5
Re: "The system cannot find the path specified" WHILE COMPILING
« Reply #3 on: December 23, 2013, 05:01:28 am »
Thanks guys my code is compiling now... but I am facing some other issues When I compile my code works well ,Then I put its bin file into my device... for some functionality it works well but in testing some features code just crashes...I tried to find it out.. n its due to stackoverflow.. Now is there any wayin code block compiler to debug it... or we can make any setting to0 reduce the code size..

Thanks & regards
Seema

Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3353
Re: "The system cannot find the path specified" WHILE COMPILING
« Reply #4 on: December 26, 2013, 10:28:00 am »
Thanks guys my code is compiling now... but I am facing some other issues When I compile my code works well ,Then I put its bin file into my device... for some functionality it works well but in testing some features code just crashes...I tried to find it out.. n its due to stackoverflow.. Now is there any wayin code block compiler to debug it...

http://wiki.codeblocks.org/index.php?title=Debugging_with_Code::Blocks

or we can make any setting to0 reduce the code size..

google for optimizing code for your compiler and add it to the compiler flags in Project->Build Settings

Offline seema

  • Single posting newcomer
  • *
  • Posts: 5
Re: "The system cannot find the path specified" WHILE COMPILING
« Reply #5 on: January 22, 2014, 05:56:23 am »
thnks.. problem is resolved..