View source code
Display the source code in dmd/deps.d from which thispage was generated on github.
Report a bug
If you spot a problem with this page, click here to create aBugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.Requires a signed-in GitHub account. This works well for small changes.If you'd like to make larger changes you may want to consider usinglocal clone.
Module dmd.deps
Implement the -deps
and -makedeps
switches, which output dependencies of modules for build tools.
The grammar of the -deps
output is:
ImportDeclaration
::= BasicImportDeclaration [ " : " ImportBindList ] [ " -> "
ModuleAliasIdentifier ] "\n"
BasicImportDeclaration
::= ModuleFullyQualifiedName " (" FilePath ") : " Protection|"string"
" [ " static" ] : " ModuleFullyQualifiedName " (" FilePath ")"
FilePath
- any string with '(', ')' and escaped with the character
Make dependencies as generated by -makedeps
look like this:
source/app .d:
source/importa .d \
source/importb .d
Documentation
https://dlang.org/phobos/dmd_deps.html
Coverage
https://codecov.io/gh/dlang/dmd/src/master/compiler/src/dmd/deps.d
Functions
Name | Description |
---|---|
addImportDep(moduleDeps, imp, imod)
|
Add an import statement to module dependencies |
addImportExpDep(moduleDeps, makeDeps, fileNameZ, importString, imod)
|
Add an import expression to module dependencies |
writeEscapedMakePath(buf, fname)
|
Takes a path, and make it compatible with GNU Makefile format. |
writeMakeDeps(buf, params, link, lib, libExt)
|
Output the makefile dependencies for the -makedeps switch |
Authors
License
Copyright © 1999-2025 by the D Language Foundation | Page generated by ddox.