尝试使用codelite / g ++进行编译

时间:2015-03-18 07:03:56

标签: c++ c build g++ codelite

我是codelite的新手,并且已经设置了一个新的g ++项目:

#include <stdio.h>

int main(int argc, char **argv)
{
    printf("hello world\n");
    return 0;
}

但是,如果我点击“构建活动项目”&#39; Build ouput说:

  

/ bin / sh -c&#39; -j 1 -e -f Makefile&#39;
      / bin / sh:1:-j:未找到
      0错误,0警告

我尝试了默认生成的Makefile以及自定义的Makefile。这里构建操作失败没有任何错误有什么问题?


我使用以下软件:
操作系统 Ubuntu 14.04.01 LTS 64位,作为以Windows 7为主机的虚拟机
IDE: Trusty Tahr的CodeLite 7.0 (= Ubuntu 14.04)
编译器,工具:我从命令行安装了g ++和gdb,如果我忘记了什么,我列出了output of apt list

1 个答案:

答案 0 :(得分:1)

在'设置中... - &gt;构建设置... - &gt;编译器:制作'

你应该:

make -j 1

确保您的计算机上安装了make。