书栈网 · BookStack 本次搜索耗时 0.027 秒,为您找到 2345 个相关结果.
  • include 指令

    1513 2019-07-06 《Makefile 基础教程》
    include 指令 include 指令 include 指令指示make 在执行的过程中读取一个或多个其他 Makefile 到当前 Makefile。该指令是 Makefile 中的一行,看起来如下所示 - include filenames ... 文件名可以包含 shell 格式的文件名匹配。额外的空格是允许的,并且在行的开始处...
  • How the kernel is compiled

    Process of the Linux kernel building Introduction Preparation before the kernel compilation Directly to the kernel build Building bzImage Conclusion Links Process of the ...
  • Updating Helm-based projects

    Updating Helm-based projects for newer Operator SDK versions Updating Helm-based Operator projects for Operator SDK 1.22.0 Additional resources Updating Helm-based projects fo...
  • Updating Go-based projects

    Updating Go-based Operator projects for newer Operator SDK versions Updating Go-based Operator projects for Operator SDK 1.22.0 Additional resources Updating Go-based Operator...
  • make 的运行

    make 的运行 make的退出码 指定Makefile 指定目标 检查规则 make的参数 make 的运行 一般来说,最简单的就是直接在命令行下输入make命令,make命令会找当前目录的makefile来执行,一切都是自动的。但也有时你也许只想让make重编译某些文件,而不是整个工程,而又有的时候你有几套编译规则,你想在不同的时候使用...
  • v1.16.0

    v1.16.0 Ansible-based operators: add resource limits Bump operator_sdk.util in requirements.yml Add annotation to specify the default container Add PHONY targets to Makefile Fo...
  • Updating Ansible-based projects

    Updating projects for newer Operator SDK versions Updating Ansible-based Operator projects for Operator SDK 1.22.0 Additional resources Updating projects for newer Operator SD...
  • 使用变量

    使用变量 使用变量 在Makefile中的定义的变量,就像是C/C++语言中的宏一样,他代表了一个文本字串,在Makefile中执行的时候其会自动原模原样地展开在所使用的地方。其与C/C++所不同的是,你可以在Makefile中改变其值。在Makefile中,变量可以使用在“目标”,“依赖目标”, “命令”或是Makefile的其它部分中。 变量的...
  • 4. 自动处理头文件的依赖关系

    4. 自动处理头文件的依赖关系 4. 自动处理头文件的依赖关系 现在我们的Makefile写成这样: all : main   main : main . o stack . o maze . o gcc $ ^ - o $@   main . o : main . h stack . h maze . h stack...
  • 书写命令

    书写命令 显示命令 命令执行 命令出错 嵌套执行make 定义命令包 书写命令 每条规则中的命令和操作系统Shell的命令行是一致的。make会一按顺序一条一条的执行命令,每条命令的开头必须以 Tab 键开头,除非,命令是紧跟在依赖规则后面的分号后的。在命令行之间中的空格或是空行会被忽略,但是如果该空格或空行是以Tab键开头的,那么mak...