News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

"The system cannot find the path specified" WHILE COMPILING

Started by seema, December 19, 2013, 12:09:58 PM

Previous topic - Next topic

seema

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..


MortenMacFly

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: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]

seema

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

BlueHazzard

Quote from: seema 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...

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

Quote from: seema on December 23, 2013, 05:01:28 AM
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

seema