2009-11-01 2 views
0

Test라는 간단한 C 콘솔 응용 프로그램이 있습니다. 그러나 내가 만들 때Codeblocks on fedora 9 : C 프로젝트를 빌드 할 수 없습니다.

Test - Debug uses a invalid compiler 
    Nothing to do 

무엇이 오류입니까?

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> 
<CodeBlocks_project_file> 
    <FileVersion major="1" minor="6" /> 
    <Project> 
     <Option title="test" /> 
     <Option pch_mode="2" /> 
     <Option compiler="gcc" /> 
     <Build> 
      <Target title="Debug"> 
       <Option output="bin/Debug/test" prefix_auto="1" extension_auto="1" /> 
       <Option object_output="obj/Debug/" /> 
       <Option type="1" /> 
       <Option compiler="gcc" /> 
       <Option projectCompilerOptionsRelation="0" /> 
       <Option projectLinkerOptionsRelation="0" /> 
       <Option projectIncludeDirsRelation="0" /> 
       <Option projectResourceIncludeDirsRelation="0" /> 
       <Option projectLibDirsRelation="0" /> 
       <Compiler> 
        <Add option="-g" /> 
       </Compiler> 
      </Target> 
     </Build> 
     <Compiler> 
      <Add option="-Wall" /> 
      <Add directory="/usr/bin" /> 
     </Compiler> 
     <ResourceCompiler> 
      <Add directory="/usr/bin" /> 
     </ResourceCompiler> 
     <Linker> 
      <Add directory="/usr/bin" /> 
     </Linker> 
     <Unit filename="main.c"> 
      <Option compilerVar="CC" /> 
     </Unit> 
     <Extensions> 
      <envvars /> 
      <code_completion /> 
      <debugger /> 
      <lib_finder disable_auto="1" /> 
     </Extensions> 
    </Project> 
</CodeBlocks_project_file> 

답변

0

당신이 'GCC'를 설치 않았다 다음과 같이 test.cbp (프로젝트 파일)의 내용은 무엇입니까?

+0

그럴 가능성이 가장 높습니다. –

+0

:) 좋은 당신 및 BTW, 나는 IDEs보다 터미널을 사용하는 것을 선호 ... – EthanZ6174

+0

아니 gcc가 설치되어 있습니다. 그리고 제대로 작동합니다. 나는 또한 일반적으로 터미널로한다. 하지만 디버깅 할 긴 코드가 있습니다. 나는 넷빈으로 가고 싶지 않다. 너무 많은 기억이 필요하다. – avd