- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 Makefile:
.PHONY: test%
test1:
# jobserver is UNavailable
make -C sub
test2:
# jobserver is available, ok
+make -C sub
test3:
# jobserver is available, ok
$(MAKE) -C sub
test4:
# jobserver is available, ok
+$(MAKE) -C sub
sub
是包含另一个Makefile(子make)的子目录。
test1
规则:
$ make -j8 test1
make -C sub
make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
sub/Makefile
确实在单线程中运行(好像
-j1
)。
+
所以我运行了一个
test2
包含
+
的目标之前
make
命令。现在我没有看到警告和
sub/Makefile
真的是并行运行。但据
this answer ,
+
标志不是用于并行运行,而是用于强制运行命令,即使
make
使用
-n
运行,
-t
,
-q
旗帜。但是为什么
+
启用作业服务器?
test3
不使用的目标
+
但使用
$(MAKE)
运行用
sub/Makefile
,它也不会发出作业服务器警告(并行执行有效)。那么
make
和有什么区别?和
$(MAKE)
?我认为这只是为了允许用用户定义的 make 替换默认 make。当我不覆盖
MAKE
变量,我看到相同
make
我在
test1
中看到的命令目标。但是为什么
$(MAKE)
启用作业服务器和
make
才不是?
test4
目标也不会发出作业服务器警告(并行工作)。
最佳答案
GNU make 手册很不错 explanation对于这个错误。关键是:'make' 不会将有关 jobserver 的信息传递给被调用的进程,除非确定被调用的进程也是 'make'。
‘warning: jobserver unavailable: using -j1. Add `+' to parent make rule.’
In order for make processes to communicate, the parent will pass information to the child. Since this could result in problems if the child process isn’t actually a make, the parent will only do this if it thinks the child is a make. The parent uses the normal algorithms to determine this (see How the MAKE Variable Works). If the makefile is constructed such that the parent doesn’t know the child is a make process, then the child will receive only part of the information necessary. In this case, the child will generate this warning message and proceed with its build in a sequential manner.
$(MAKE)
或
+
.
$(MAKE)
在配方中调用 'make' 时的变量。Recursive make commands should always use the variable MAKE, not the explicit command name ‘make’, as shown here:
subsystem:
cd subdir && $(MAKE)
$(MAKE)
并放置一个 +
在配方中调用'make'的行之前具有相同的效果。Using the MAKE variable has the same effect as using a ‘+’ character at the beginning of the recipe line.
MAKE
时才会发生在食谱中。如果不是这种情况,请使用 +
.This special feature is only enabled if the MAKE variable appears directly in the recipe: it does not apply if the MAKE variable is referenced through expansion of another variable. In the latter case you must use the ‘+’ token to get these special effects.
关于makefile - 警告 : jobserver unavailable: using -j1. 将 '+' 添加到父规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60702726/
我正在尝试使用应用内结算: mIabHelper = new IabHelper(this, BILLING_KEY); mIabHelper.startSetup(new IabHe
我找不到 contentsOfURL 的任何替代方法来解决此问题。 这是我的 Swift 代码: import Foundation import MapKit class MapHelper{ fu
我正在尝试通过运行客户端-服务器套接字程序来测试本地个人计算机和虚拟机之间的连接。 这就是我正在做的事情: 1) 我正在 vm 播放器上运行 Kubuntu 10.10。2)安装java 63)通过k
当我尝试对在我的机器上(在同一网络上)运行的 python RPC 服务器进行 RPC 调用时,我一整天都在为 Android 上 gRPC 的以下问题而苦苦挣扎。 我的 android gRPC a
我已按照教程将 .net core Web 应用程序构建到 Docker 镜像中,发布到 azure 容器注册表,然后设置了 VSTS 发布模板以将容器部署到应用服务。 这一切似乎都有效,我可以在容器
我在我的 flutter 应用程序中使用 Firebase Firestore。 debug 模式下一切正常。但是,在 release 模式下,我收到以下错误。我看到了一个类似的问题,但它并没有解决我
每次我尝试发布网站时,它都运行良好,但是当网站打开时,它给我一个, “HTTP 错误 503。服务不可用。” 我在互联网上到处都在谈论它是我的应用程序池,但它似乎运行良好。我认为它可能是我的 web.
我有一个写到SQL Server数据库的log4net ado附加程序。我喜欢它,我认为它很整洁。在将其发送到生产环境之前,我想知道如果数据库关闭,行为将会如何。 我不希望应用程序停止,因为日志数据库
我使用YouTube分享按钮中的youtube iframe嵌入代码,得到了此代码 我已在网页中运行它,并且缩略图也加载了微调器加载,然后出现错误“视频不可用” 屏幕截图: 最佳答案 如果您直接从磁
我在HTML 5媒体播放器播放列表中有YouTube视频的汇总列表(从mySql数据库查询)。但是随着时间的流逝,由于版权或判断问题,YouTube将禁用某些视频,但是这些链接仍在我的列表中。任何人都
我有一个使用 ARM 模板创建的 python 函数应用程序。当我尝试使用 azure Devops 管道部署函数时,我遇到以下错误, “无法将Web包部署到应用服务。服务暂时不可用代码503” 最佳
有没有办法定义自定义 HTML 页面或在站点离线时重定向到另一个站点,而不是使用通用的 Site unavailable page ? 我发现网站离线有 2 个原因: 管理员在 Azure 门户中停止
我正在使用灯泡。我所做的是我有一个 php 页面,其中包含向 ajax 中的所有按钮发送消息。当我单击该按钮时,它会调用后端功能并向 10 个用户发送消息,然后显示每 10 个用户发送一次的结果。它工
我的应用程序启动后,我在日志中看到这条消息: Started Application in 22.609 seconds (JVM running for 24.342) 但是当我在浏览器中访问该应用
我正在使用 knockout ,我想比较某个值是否不可用。 JavaScript/knockout 有没有办法可以做到这一点? Your defined 我已经尝试过未定义,但这不起
我正在使用 IAR(版本:6.60.1.5104)来运行我的 C 项目。 我看到了一个奇怪的行为。 在调试时,我正在获取本地定义为 zero 的变量值 例如。 int a = 0 但对于分配非零值的变
最近我将我的 Nginx/Gunicorn/Django 网站“mysite”转换为 SSL,并且 SSL 连接工作正常。对于该站点以前的非 SSL 版本,我在我的 Nginx 配置文件中创建了一些指
如果我在 Python 解释器中创建了一个包含大量进程的池,它显然会出错,但是在这样做之前似乎并没有清理 fork 进程,因此留下了环境脏,系统的其余部分无法 fork 进程。 >>> from mu
我有一些带有 class='class_name' 的 div,并且还声明了 var A = document.getElementsByClassName('class_name'); consol
我正在将我的应用程序从 Swift“升级”到 Swift 2 并遇到以下错误:'deviceInputWithDevice' 不可用:使用对象构造 'AVCaptureDeviceInput(devi
我是一名优秀的程序员,十分优秀!