- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
假设您有一个表示 make 文件中定义的依赖关系的图表。什么(一个?)算法用于确定应该以什么顺序构建依赖关系以及什么是可并行化的(当使用 -jX 标志时)。
例如如果您有以下部门:
A: B C
B: D
C: D
D:
“D”显然需要先构建,但构建完成后,B 和 C 可以并行构建,当它们都完成后,再构建 A。
最佳答案
通过使用make -d
打印调试信息,您可以准确地看到 make 使用的算法。对于您的示例(我添加了 echo
命令以实际导致某事发生):
$ make -r -d -j
GNU Make 3.81
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
This program built for i386-apple-darwin11.3.0
Reading makefiles...
Reading makefile `Makefile'...
Updating makefiles....
Considering target file `Makefile'.
Looking for an implicit rule for `Makefile'.
No implicit rule found for `Makefile'.
Finished prerequisites of target file `Makefile'.
No need to remake target `Makefile'.
Updating goal targets....
Considering target file `A'.
File `A' does not exist.
Considering target file `B'.
File `B' does not exist.
Considering target file `D'.
File `D' does not exist.
Finished prerequisites of target file `D'.
Must remake target `D'.
Putting child 0x7fdae2c08110 (D) PID 71724 on the chain.
Commands of `D' are being run.
Finished prerequisites of target file `B'.
The prerequisites of `B' are being made.
Considering target file `C'.
File `C' does not exist.
Pruning file `D'.
Finished prerequisites of target file `C'.
The prerequisites of `C' are being made.
Finished prerequisites of target file `A'.
The prerequisites of `A' are being made.
Live child 0x7fdae2c08110 (D) PID 71724
D
Reaping winning child 0x7fdae2c08110 PID 71724
Removing child 0x7fdae2c08110 PID 71724 from chain.
Considering target file `A'.
File `A' does not exist.
Considering target file `B'.
File `B' does not exist.
Considering target file `D'.
File `D' was considered already.
Finished prerequisites of target file `B'.
Must remake target `B'.
Putting child 0x7fdae2c083c0 (B) PID 71729 on the chain.
Commands of `B' are being run.
Considering target file `C'.
File `C' does not exist.
Pruning file `D'.
Finished prerequisites of target file `C'.
Must remake target `C'.
Live child 0x7fdae2c083c0 (B) PID 71729
Putting child 0x7fdae2c09020 (C) PID 71734 on the chain.
Commands of `C' are being run.
Finished prerequisites of target file `A'.
The prerequisites of `A' are being made.
Live child 0x7fdae2c09020 (C) PID 71734
Live child 0x7fdae2c083c0 (B) PID 71729
B
Reaping winning child 0x7fdae2c083c0 PID 71729
Removing child 0x7fdae2c083c0 PID 71729 from chain.
Live child 0x7fdae2c09020 (C) PID 71734
Considering target file `A'.
File `A' does not exist.
Considering target file `B'.
File `B' was considered already.
Considering target file `C'.
Still updating file `C'.
Finished prerequisites of target file `A'.
The prerequisites of `A' are being made.
Live child 0x7fdae2c09020 (C) PID 71734
C
Reaping winning child 0x7fdae2c09020 PID 71734
Removing child 0x7fdae2c09020 PID 71734 from chain.
Considering target file `A'.
File `A' does not exist.
Considering target file `B'.
File `B' was considered already.
Considering target file `C'.
File `C' was considered already.
Finished prerequisites of target file `A'.
Must remake target `A'.
Putting child 0x7fdae2c090c0 (A) PID 71739 on the chain.
Commands of `A' are being run.
Live child 0x7fdae2c090c0 (A) PID 71739
A
Reaping winning child 0x7fdae2c090c0 PID 71739
Removing child 0x7fdae2c090c0 PID 71739 from chain.
Considering target file `A'.
File `A' was considered already.
同时注意这两行:
Live child 0x7fdae2c09020 (C) PID 71734
Live child 0x7fdae2c083c0 (B) PID 71729
同时显示 B
和 C
配方。
关于algorithm - "make -jX"算法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17286460/
我并不总是编写 make 文件,但当我这样做时,我喜欢尝试并写好它们。试图使界面与其他开发人员的期望一致始终是一项艰巨的任务。我正在寻找的是所有常见的 make some clean (GNU) ma
例如,我在运行 makefile 时收到这样的错误: make[3]: *** [/home/ziga/Downloads/openwrt/rakun_openwrt/staging_dir/ho
我必须创建一个 Makefile,它从不同文件夹中的 .c 文件创建单个可执行文件。 .c 文件包含来自任何这些文件夹的头文件。根目录有3个子目录x/y、x/z、a,所有这些子目录都有一些.c和.h文
您好,我有一个简单的 MakeFile,其中包含: clean: rm -f ex1 但是当我运行命令make clean 时,出现以下错误: make: *** No rule to mak
我已经为一些软件安装了它,但现在我根本不使用那个软件,所以我需要移除MinGW才能使用Cygwin进行Android开发。。我使用的是64位Windows 7
以下是针对我遇到的问题的简化生成文件: all: /tmp/makey/../filey @echo All done /tmp/filey: @echo Filey 当我运行 mak
获取错误: make: *** No rule to make target all. Stop." 在安装nagios主机期间运行此命令make all 最佳答案 可能的常见错误: 确保将文件命名为
当使用 -jN 运行 gnu-make 规则时,make 会创建 jobserver用于管理跨子制造商的工作数量。此外,您可以通过在 make 配方前添加 + 前缀来“将作业服务器环境传递”到 mak
使用 GNU Make 4.1 概括 我调用一个子品牌 b.mk来自生成文件 a.mk .b.mk被调用以确保构建子系统。 有时我想强制一个目标为 a.mk重制: make -f a.mk --al
这个问题与问题 2543127 的精神相似。 . 我有一个带有头文件列表的 gnu makefile。每个头文件可能位于不同的目录中,例如, HEADERS = $(wildcard *.h) $(w
假设我有以下 GNU make 目标: create_dir: @mkdir objects build_asm: $(ASM_FILES) @echo
我有一个具有以下结构的 Makefile(工作示例)。 .PHONY: image flashcard put-files put-files: @echo "=== put-files" i
我想要一个这样的makefile: cudaLib : # Create shared library with nvcc ocelotLib : # Create shared li
有没有比更好的方法来获取 GNU make 变量的第一个字符 FIRST=$(shell echo $(VARIABLE) | head -c 1) (不仅笨重而且还要调用外部shell)? 最佳答案
我通常使用像 cmake 这样的高级构建系统来构建我的 C/C++ 代码。但是由于各种原因,我直接使用 GNU make。 我正在进行递归构建,其中每个目录都有一个 makefile。 我最近不得不将
我通常使用像 cmake 这样的高级构建系统来构建我的 C/C++ 代码。但是由于各种原因,我直接使用 GNU make。 我正在进行递归构建,其中每个目录都有一个 makefile。 我最近不得不将
我安装了最新的mingw,发现没有mingw32-make了。有make.exe,所以我想知道最近是否将mingw32-make重命名为make.exe。 最佳答案 我不知道您从哪里获得 MinGW,
我正在使用 CentOS,但由于一个错误,许多软件包被删除了。所以我没有 yum 和 rpm。所以我想从源代码手动制作 yum,但我也没有制作。我知道一切都会用“制作包”制作。但是 make 自己呢?
考虑这个Makefile: .PHONY: all all: main.txt main.txt: build/main.txt cp build/main.txt . %/main.txt:
假设目录输入中有 1000 个扩展名为 .xhtml 的文件,并且这些文件的某个子集(输出路径在 $(FILES) 中)需要通过 xslt 转换为目录输出中具有相同名称的文件.一个简单的 make 规
我是一名优秀的程序员,十分优秀!