aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2023-08-25Fix few minor grammatical nits in manualChristopher Head1-5/+5
2023-08-23Replace assert with diagnostics in bootstrap_src() (GH issue #322)Boris Kolpackov1-0/+9
2023-08-22Document installed library search semantics and pkg-config integrationBoris Kolpackov1-16/+123
2023-08-22Consider *_inc{} target types as headers for rule match purposesBoris Kolpackov7-18/+26
2023-08-22Add abstract c_inc{} and cxx_inc{} target typesBoris Kolpackov7-4/+71
These abstract base target types are meant for deriving additional target types (for example, Qt moc{}) that can be #include'd in C and C++ translation units, respectively. In particular, only such targets will be considered to reverse-lookup extensions to target types (see dyndep_rule::map_extension() for background).
2023-08-09Auto-extract function documentation from functions-*.cxxBoris Kolpackov5-370/+849
2023-08-09Complete and cleanup function documentation in preparation for auto-extractionBoris Kolpackov15-309/+537
Also: - Move the $target.*() function family from functions-name.cxx to separate functions-target.cxx. - Get rid of the separate $process_path_ex.*() family, merging it with $process_path.*().
2023-08-03Document target types in manual (GH issue #309)Boris Kolpackov2-16/+606
2023-08-02Diagnose declarations of targets/prerequisites with abstract target typesBoris Kolpackov2-1/+26
2023-07-31Add CCC_OVERRIDE_OPTIONS to list of Clang env vars to track/saveBoris Kolpackov1-2/+5
2023-07-27Recognize cNN/c++NN in addition to NN in c.std/cxx.stdBoris Kolpackov2-34/+72
Also recognize 23 in addition to 2x for C23.
2023-07-24Add setupapi.lib to list of Windows system librariesBoris Kolpackov1-0/+1
2023-07-21Fix incorrect documentation in dyndep_rule APIBoris Kolpackov1-1/+1
2023-07-20Don't treat unmatched prerequisites as implicitly ad hocBoris Kolpackov3-9/+32
It was surprising and inconvenient that they didn't end up in $<. Plus, such prerequisites can always be marked as ad hoc explicitly.
2023-07-20Consider unmatched prerequisites in updated_during_match() checkBoris Kolpackov4-13/+45
2023-07-20Change inner rule/prerequisites match order in install::file_ruleBoris Kolpackov7-4/+82
The old order messed up the for-install signaling logic. See the long comment in install::file_rule::apply_impl() for background and details.
2023-07-20Improve diagnosticsBoris Kolpackov1-3/+16
2023-07-05Change version to 0.17.0-a.0.zBoris Kolpackov3-4/+4
2023-06-30Release version 0.16.0v0.16.0Boris Kolpackov3-7/+7
2023-06-30Tweak NEWS fileBoris Kolpackov1-2/+3
2023-06-29Update example diagnostics in build system manualBoris Kolpackov1-25/+30
2023-06-28Minor NEWS file cleanupsKaren Arutyunov1-6/+6
2023-06-28Update NEWS filesBoris Kolpackov1-9/+317
2023-06-28Minor tweaks and cleanupsBoris Kolpackov2-0/+4
2023-06-27Update config submodule (config.guess and config.sub scripts)Boris Kolpackov1-0/+0
2023-06-26Suppress -Wdangling-reference GCC 13 warningKaren Arutyunov2-0/+10
2023-06-26Suppress -Wunqualified-std-cast-call Clang 15 warningKaren Arutyunov2-0/+4
2023-06-26Update .gitignore fileKaren Arutyunov1-0/+6
2023-06-26Regenerate options parsing filesKaren Arutyunov2-26/+26
2023-06-26Omit dangling symlink warning for backlinked executablesBoris Kolpackov1-13/+44
2023-06-22Map cxx.std=26 to -std=c++2c for GCC and ClangBoris Kolpackov2-4/+13
2023-06-22Fix wraparound in task_count logicBoris Kolpackov3-18/+20
2023-06-22Filter out subsequent occurrences of library itself in .pc files (GH issue #283)Boris Kolpackov1-18/+28
Failed that we will end up with a dependency cycle.
2023-06-22Omit -Wno-gnu-line-marker for Apple Clang 14.0.3Boris Kolpackov1-2/+9
2023-06-19Update Apple Clang to vanilla Clang version mappingBoris Kolpackov1-21/+27
2023-06-15Remove stray whitespace from "uninstall" command nameBoris Kolpackov1-3/+3
2023-06-15Fix incorrect memory order in target::matched() callBoris Kolpackov2-2/+2
2023-06-14Use dry_run_option instead of dry_run during matchBoris Kolpackov2-3/+3
2023-06-14Don't fail in dyndep_rule::enter_file() if target is in srcBoris Kolpackov1-4/+24
2023-06-14Improve dyndep_rule::{inject,verify}_existing_file() documentationBoris Kolpackov2-7/+11
2023-06-13Disable -Wgnu-line-marker in Clang 15 triggered by -frewrite-includesBoris Kolpackov1-6/+43
See llvm-project issue 63284 for details.
2023-06-12Hack around GCC 13 -Wdangling-reference false positivesBoris Kolpackov5-16/+17
See GCC bugs 107532, 110213.
2023-06-09Add explicit move as recommended by Clang warningBoris Kolpackov1-1/+1
2023-06-09Diagnose multiple values in typed concatenation (GH issue #263)Boris Kolpackov1-26/+41
2023-06-08Add support for buildfile importationBoris Kolpackov13-194/+728
2023-06-07Re-disable C++20 modules tests for MinGW GCCBoris Kolpackov1-3/+1
Several tests (other than the expected symexport) are still failing due to what looks like Windows-specific bugs in the compiler.
2023-06-07Try to enable C++20 modules tests for MinGW GCCBoris Kolpackov1-1/+3
2023-06-07Implement GCC module mapper protocol quoting/escaping (GH issues #203, #228)Boris Kolpackov1-14/+223
2023-06-05Remap Clang -Wunqualified-std-cast-call warning to -Wextra (GH issue #259)Boris Kolpackov1-0/+40
2023-06-02Fix another race in library metadata protocol logicBoris Kolpackov1-0/+8