aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/make-parser.test.cxx
AgeCommit message (Collapse)AuthorFilesLines
2022-02-21Factor process-wide initialization to init_process() functionBoris Kolpackov1-1/+1
2021-12-06Recognize absolute Windows paths in make parserBoris Kolpackov1-3/+1
2021-12-06Redo make_parser interface to return path, handle invalid_path exceptionBoris Kolpackov1-1/+1
2021-11-23Add support for dynamic dependencies in ad hoc Buildscript recipesBoris Kolpackov1-0/+90
Specifically, add the new `depdb dyndep` builtin that can be used to extract dynamic dependencies from a program run or a file. For example: obje{hello.o}: cxx{hello} {{ s = $path($<[0]) depdb dyndep $cxx.poptions $cc.poptions --what=header --default-prereq-type=h -- $cxx.path $cxx.poptions $cc.poptions $cxx.mode -M -MG $s diag c++ ($<[0]) o = $path($>) $cxx.path $cxx.poptions $cc.poptions $cc.coptions $cxx.coptions $cxx.mode -o $o -c $s }} Currently only the `make` dependency format is supported.