尝试用 codelite/g++ 编译
Trying to compile with codelite/g++
我是 codelite 的新手,已经建立了一个新的 g++ 项目:
#include <stdio.h>
int main(int argc, char **argv)
{
printf("hello world\n");
return 0;
}
但是,如果我单击 'Build Active Project',构建输出会显示:
/bin/sh -c ' -j 1 -e -f Makefile'
/bin/sh: 1: -j: not found
0 errors, 0 warnings
我尝试了默认生成的 Makefile 以及自定义的 Makefile。构建操作没有任何错误就失败了,这是怎么回事?
我正在使用以下软件:
OS: Ubuntu 14.04.01 LTS 64 位,作为虚拟机,Windows 7 作为主机
IDE: Trusty Tahr 的 CodeLite 7.0 (=Ubuntu 14.04)
编译器、工具: 我从命令行安装了 g++ 和 gdb,以防忘记,我列出了 output of apt list
在'Settings... -> Build Settings... -> Compiler : Make'
你应该有:
make -j 1
并确保您的机器上安装了 make。
我是 codelite 的新手,已经建立了一个新的 g++ 项目:
#include <stdio.h>
int main(int argc, char **argv)
{
printf("hello world\n");
return 0;
}
但是,如果我单击 'Build Active Project',构建输出会显示:
/bin/sh -c ' -j 1 -e -f Makefile'
/bin/sh: 1: -j: not found
0 errors, 0 warnings
我尝试了默认生成的 Makefile 以及自定义的 Makefile。构建操作没有任何错误就失败了,这是怎么回事?
我正在使用以下软件:
OS: Ubuntu 14.04.01 LTS 64 位,作为虚拟机,Windows 7 作为主机
IDE: Trusty Tahr 的 CodeLite 7.0 (=Ubuntu 14.04)
编译器、工具: 我从命令行安装了 g++ 和 gdb,以防忘记,我列出了 output of apt list
在'Settings... -> Build Settings... -> Compiler : Make'
你应该有:
make -j 1
并确保您的机器上安装了 make。