1

当我发出类似 (for example) 的命令时make -j 4,我收到以下错误:

warning: jobserver unavailable: using -j1.  Add `+' to parent make rule

我在 RHEL6 下使用来自 Scientific Linux 6 的开发者工具包:

$ gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-2/root/usr/libexec/gcc/x86_64-redhat-linux/4.8.2/lto-wrapper
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/opt/rh/devtoolset-2/root/usr --mandir=/opt/rh/devtoolset-2/root/usr/share/man --infodir=/opt/rh/devtoolset-2/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --enable-languages=c,c++,fortran,lto --enable-plugin --with-linker-hash-style=gnu --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.2-20140120/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.2-20140120/obj-x86_64-redhat-linux/cloog-install --with-mpc=/builddir/build/BUILD/gcc-4.8.2-20140120/obj-x86_64-redhat-linux/mpc-install --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux
Thread model: posix
gcc version 4.8.2 20140120 (Red Hat 4.8.2-15) (GCC)

我安装了libmpc0.8.3:

$ rpm -qa | grep mpc
libmpcdec-1.2.6-6.1.el6.x86_64
libmpc-0.8-3.el6.x86_64

有没有办法对我的项目的 makefile 或 gcc 进行故障排除以确定导致警告的原因并修复它?通过 Clang/LLVM 从 OS X 构建时,我似乎不需要将+符号添加到规则中。谷歌搜索警告文本并没有返回很多显然有用的信息。

4

1 回答 1

3

每当您make从 makefile 内部运行时,您都应该始终使用该$(MAKE)变量。永远不要使用原始的文字命令make

于 2014-05-14T11:19:51.013 回答