error: Something went wrong bootstrapping makefile fragments

树莓派下载安装libcurl时报错
编译阶段:./configure --prefix=$PWD/_install --with-ssl
报错
config.status: executing depfiles commands
config.status: error: in /home/pi/xiaowei/libcurl/curl-7.71.1’:
config.status: error: Something went wrong bootstrapping makefile fragments
for automatic dependency tracking. If GNU make was not used, consider
re-running the configure script with MAKE=“gmake” (or whatever is
necessary). You can also try re-running configure with the
‘–disable-dependency-tracking’ option to at least be able to build
the package (albeit without support for automatic dependency tracking).
See `config.log’ for more details
解决方法

输入指令: less config.log
查看config.log日志
输入/curl-7.71.1找到报错地点curl-7.71.1

config.status:1777: cd src && sed -e ‘/# am–include-marker/d’ Makefile | make -f - am–depfiles
config.status:1782: $? = 0
config.status:1777: cd lib && sed -e ‘/# am–include-marker/d’ Makefile | make -f - am–depfiles
config.status:1782: $? = 0
config.status:1777: cd tests/server && sed -e ‘/# am–include-marker/d’ Makefile | make -f - am–depfiles
/bin/bash: line 0: echo: write error: No space left on device
/tmp/GmRdAxRn:1140: recipe for target ‘.deps/sws-sws.Po’ failed
make: *** [.deps/sws-sws.Po] Error 1
config.status:1782: $? = 2
config.status:1777: cd tests/libtest && sed -e ‘/# am–include-marker/d’ Makefile | make -f - am–depfiles
make: *** fwrite (temporary file): No space left on device. Stop.
config.status:1782: $? = 2
config.status:1777: cd tests/unit && sed -e ‘/# am–include-marker/d’ Makefile | make -f - am–depfiles
make: *** fwrite (temporary file): No space left on device. Stop.
config.status:1782: $? = 2
/bin/bash: line 0: echo: write error: No space left on device
/tmp/GmRdAxRn:1140: recipe for target ‘.deps/sws-sws.Po’ failed
make: *** [.deps/sws-sws.Po] Error 1
config.status:1782: $? = 2
config.status:1777: cd tests/libtest && sed -e ‘/# am–include-marker/d’ Makefile | make -f - am–depfiles
make: *** fwrite (temporary file): No space left on device. Stop.
config.status:1782: $? = 2
config.status:1777: cd tests/unit && sed -e ‘/# am–include-marker/d’ Makefile | make -f - am–depfiles
make: *** fwrite (temporary file): No space left on device. Stop.
config.status:1782: $? = 2
config.status:1786: error: in /home/pi/xiaowei/libcurl/curl-7.71.1’:
config.status:1788: error: Something went wrong bootstrapping makefile fragments
for automatic dependency tracking. If GNU make was not used, consider
re-running the configure script with MAKE=“gmake” (or whatever is
necessary). You can also try re-running configure with the
‘–disable-dependency-tracking’ option to at least be able to build
the package (albeit without support for automatic dependency tracking).
See `config.log’ for more details

发现报错:是因为内存不足
make: *** fwrite (temporary file): No space left on device. Stop.
make:**fwrite(临时文件):设备上没有剩余空间。停下。

删除东西,或者扩容内存,继续配置成功

你可能感兴趣的:(报错解决)