Code::Blocks isn't executing properly

前端 未结 2 1407
一生所求
一生所求 2021-01-29 14:07

I\'m new to programming so I feel there is something simple I\'m missing here.

I\'m using the latest version of Mac and I\'ve just installed Code::Blocks along with Xcod

相关标签:
2条回答
  • 2021-01-29 15:07

    Try avoiding using '+' and spaces in the name of directories.

    Many program don't handle escaping of pathnames when running external tools like compiler, linker or when calling the final executable.

    0 讨论(0)
  • 2021-01-29 15:11

    Remove spaces from your path. It seems that codeblocks does not quote the paths, so every space will be introducing a new command or parameter. The problem here is this part:

    C++ book
    

    because it has a whitespace.

    0 讨论(0)
提交回复
热议问题