summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Loosen GCC modules enablement requirementsBoris Kolpackov2019-01-241-2/+1
|
* Add testscript sleep builtinKaren Arutyunov2019-01-2410-8/+165
|
* Update submodulesBoris Kolpackov2019-01-172-0/+0
|
* Update copyright yearKaren Arutyunov2019-01-16388-389/+389
|
* Diagnose target names with multiple trailing slashes as invalidBoris Kolpackov2019-01-144-7/+17
|
* Fix VC warningBoris Kolpackov2019-01-141-1/+1
|
* Adapt to standard version API changeKaren Arutyunov2019-01-122-8/+14
|
* Print list of available operations and meta-operations in infoBoris Kolpackov2019-01-102-9/+33
|
* Fix bug in cc rules matchingBoris Kolpackov2019-01-091-1/+1
|
* Tighten cc rules matchingBoris Kolpackov2019-01-096-28/+34
| | | | | Specifically, make sure the rule does not match if there is a c-common prerequisites that it doesn't recognize.
* Fix logic bug in pkg-config shared/static selectionBoris Kolpackov2018-12-271-11/+13
|
* Fix line counting in cc::lexerKaren Arutyunov2018-12-152-2/+4
|
* Fix bug in module interface unit preprocessingBoris Kolpackov2018-12-121-5/+9
|
* Adjust module tests to comply with the merged proposal (P1103)Boris Kolpackov2018-12-041-8/+5
| | | | Specifically, import can no longer be inside an export block.
* Remove unnecessary delete/default declarationsBoris Kolpackov2018-12-031-11/+0
|
* Suppress MSVC warnings at project levelBoris Kolpackov2018-12-033-1/+13
|
* Diagnose separated variable/function nameBoris Kolpackov2018-12-031-1/+3
|
* Add commented out builds value to manifestKaren Arutyunov2018-12-011-0/+1
|
* Various documentation updates, section on debugging build issuesBoris Kolpackov2018-11-301-96/+595
|
* Adapt to inventing path_match_flagsKaren Arutyunov2018-11-302-5/+6
|
* Regenerate options documentationBoris Kolpackov2018-11-281-3/+3
|
* Add note on potential future improvements to mtime checkBoris Kolpackov2018-11-281-0/+6
|
* Fix couple of man page formatting issuesBoris Kolpackov2018-11-281-4/+4
|
* Add --[no-]mtime-check options to control this behavior at runtimeBoris Kolpackov2018-11-2813-44/+127
| | | | By default the checks are enabled only for the staged toolchain.
* Add config.hxx.in config header, move stage status thereBoris Kolpackov2018-11-286-9/+43
|
* Add --dump <phase> option, omit state dumping from verbosity level 6Boris Kolpackov2018-11-277-17/+74
|
* Cleanup backwards modification time workaround codeBoris Kolpackov2018-11-262-118/+25
|
* Add back backwards modification time workaround for FreeBSDBoris Kolpackov2018-11-241-3/+7
| | | | Seems like it's still needed in some tight situations (e.g., in rule).
* Use \n instead of endl in in ruleBoris Kolpackov2018-11-241-2/+2
|
* Reimplement depdb with fdstreamsBoris Kolpackov2018-11-244-95/+149
|
* More backwards modification time experimentationBoris Kolpackov2018-11-231-0/+15
|
* Revert rename of .exe.d to .d (did not make any difference)Boris Kolpackov2018-11-231-5/+3
|
* Don't allow pattern characters in target names, scope directoriesBoris Kolpackov2018-11-231-16/+49
|
* Rename .exe.d to just .d to test Windows interference theoryBoris Kolpackov2018-11-221-3/+5
|
* Tweak in rule to ensure correct mtime orderBoris Kolpackov2018-11-221-1/+4
|
* Make backwards modification time check permanent, add another experimentBoris Kolpackov2018-11-227-51/+163
|
* Fix bug in dependency chain logicBoris Kolpackov2018-11-221-13/+15
|
* More backwards modification time experimentationBoris Kolpackov2018-11-213-15/+37
|
* Add support for target and prerequisite specific variable blocksBoris Kolpackov2018-11-2112-220/+553
| | | | | | | | | | | | | | | | | | | | | | | | For example, now instead of: lib{foo}: cxx.loptions += -static lib{foo}: cxx.libs += -lpthread We can write: lib{foo}: { cxx.loptions += -static cxx.libs += -lpthread } The same works for prerequisites as well as target type/patterns. For example: exe{*.test}: { test = true install = false }
* Improve workaround for backwards modification time issueBoris Kolpackov2018-11-203-25/+46
|
* Extend backwards modification time diagnosticsBoris Kolpackov2018-11-193-4/+7
|
* Fix expected diagnostics in testBoris Kolpackov2018-11-191-1/+1
|
* Workaround Apple ar fractional second truncation bug on APFSBoris Kolpackov2018-11-191-0/+16
|
* Finalize workaround for backwards modification time issueBoris Kolpackov2018-11-196-55/+69
|
* Minor diagnostics tweakBoris Kolpackov2018-11-191-1/+2
|
* Print id of failed testKaren Arutyunov2018-11-1711-13/+153
|
* Test workaround theory for backwards mtime issueBoris Kolpackov2018-11-161-5/+4
|
* Implement support for dependency chainsBoris Kolpackov2018-11-165-142/+227
| | | | | | | | | | | | | | | | | | | | Now instead of: ./: exe{foo} exe{foo}: cxx{*} We can write: ./: exe{foo}: cxx{*} Or even: ./: exe{foo}: libue{foo}: cxx{*} This can be combined with prerequisite-specific variables (which naturally only apply to the last set of prerequisites in the chain): ./: exe{foo}: libue{foo}: bin.whole = false
* Adjust tracing level for few noisy casesBoris Kolpackov2018-11-162-3/+9
|
* Fix GCC maybe used uninitialized warningKaren Arutyunov2018-11-161-1/+1
|