aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-06-07Update NEWS filesBoris Kolpackov1-0/+104
2019-06-07Update module/header unit-related notesBoris Kolpackov1-2/+5
2019-06-07Reply with immediate BMI in case of include translationBoris Kolpackov1-31/+22
2019-06-07Complete and normalize paths in cxx.importable_headersBoris Kolpackov3-36/+170
Also add more header unit include/import tests.
2019-06-06Fix cc link rule matching ambiguity wrt to C/C++ sourcesBoris Kolpackov4-20/+30
Considering a C header as C++ source was definitely a bad idea.
2019-06-06Make preprocessing options order consistent across preprocessing and ↵Karen Arutyunov1-5/+5
compilation compiler runs
2019-06-06Add noteBoris Kolpackov1-0/+5
2019-06-06Redo header path normalization/realization logicBoris Kolpackov3-23/+72
We now try to use the normalized path (which preserves symlinks) if possible and fall back to realized otherwise.
2019-06-05Add test id verificationKaren Arutyunov2-4/+17
2019-06-05Cosmetic changeBoris Kolpackov1-4/+2
2019-06-05Tweak generated header heuristics, add more diagnosticsBoris Kolpackov3-3/+39
2019-06-05Tighten allowed character set in testscript test idsBoris Kolpackov1-2/+5
2019-06-05Adjust GCC module mapper to new protocolBoris Kolpackov2-48/+110
2019-06-04Fix header dependency generating with ClangKaren Arutyunov1-1/+1
2019-06-04Replace tags with topics/keywords in package manifestBoris Kolpackov1-1/+2
2019-06-03Fix `print $subprojects` failureKaren Arutyunov3-2/+14
This print directive was failing with the message like "error: invalid project_name element key 'tests/'".
2019-06-03Adapt to renaming traits alias to traits_type for basic_path, basic_url, and ↵Karen Arutyunov23-54/+62
string_table class templates
2019-06-03Add note on GCC optionsBoris Kolpackov1-0/+2
2019-05-30Default to libarchive's bsdtar for zip archives on WindowsBoris Kolpackov1-1/+12
2019-05-30Default to libarchive's bsdtar for tar archives on WindowsBoris Kolpackov1-4/+13
2019-05-28Print backtrace to stderr when terminating due to unhandled exceptionKaren Arutyunov4-4/+35
2019-05-25Fix previous workaroundKaren Arutyunov1-2/+2
2019-05-25Work around new is_unsigned_v VC 16.1 implementation in regexBoris Kolpackov1-0/+12
2019-05-25Update comment with VC version mappingBoris Kolpackov1-1/+4
2019-05-24Adapt version.hxx.in to increasing standard version major, minor, and patch ↵Karen Arutyunov1-15/+14
max values up to 99999
2019-05-24Adapt to increasing standard version major, minor, and patch max values up ↵Karen Arutyunov3-27/+27
to 99999
2019-05-23Make fake process exited successfully for safetyBoris Kolpackov1-0/+2
2019-05-22Update submodulesBoris Kolpackov2-0/+0
2019-05-21Fix typoBoris Kolpackov1-1/+1
2019-05-21Use POSIX tar format (ustar) when archiving distributionsBoris Kolpackov1-0/+3
2019-05-17Update manual with README.md generation by bdep-newBoris Kolpackov1-9/+11
2019-05-17Diagnose package/project name mismatch in version moduleBoris Kolpackov3-0/+20
2019-05-16Document generalized variable assignment blocksBoris Kolpackov1-5/+30
2019-05-15Cleanup clean_extra() mess (pun intended)Boris Kolpackov4-79/+110
2019-05-15Update ad hoc group semantics comment to reflect new functionalityBoris Kolpackov1-9/+13
2019-05-15Add notesBoris Kolpackov1-5/+7
2019-05-15Add noteBoris Kolpackov1-0/+3
2019-05-15Redo ad hoc group member matchingBoris Kolpackov1-54/+38
2019-05-15Add ability to depend on (declared) ad hoc group memberBoris Kolpackov8-115/+242
2019-05-14Fix pdb{} target clashBoris Kolpackov1-3/+10
2019-05-13Remove order dependence in ad hoc group handlingBoris Kolpackov9-108/+127
Also, don't match group_recipe since we neither execute nor access the state.
2019-05-10Change ad hoc group syntax from primary<...> to <primary ...>Boris Kolpackov1-22/+62
2019-05-10Minor cleanups and clarificationsBoris Kolpackov6-11/+13
2019-05-10Generalize target/prerequisite var block, initial ad hoc target workBoris Kolpackov8-307/+565
Target/prerequisite-specific variable blocks can now be present even if there are prerequisites. For example, now instead of: exe{foo}: cxx{foo} exe{foo}: cc.loptions += ... Or: exe{foo}: cxx{foo} exe{foo}: { cc.loptions += ... cc.libs += ... } We can write: exe{foo}: cxx{foo} { cc.loptions += ... cc.libs += ... } This also works with dependency chains in which case the block applies to the set of prerequisites (note: not targets) before the last ':'. For example: ./: exe{foo}: libue{foo}: cxx{foo} { bin.whole = false # Applies to the libue{foo} prerequisite. }
2019-05-07Work around issues in old compilersBoris Kolpackov2-6/+6
2019-05-07Convert UTF-8 tree characters to ASCII when producing PS from XHTML in ↵Karen Arutyunov1-2/+13
doc/cli.sh
2019-05-06Fix uninitialized variable bugBoris Kolpackov1-1/+1
2019-05-06Update and clarify target grouping terminology and semanticsBoris Kolpackov1-27/+32
2019-05-03Add config.{c,cxx}.stdBoris Kolpackov5-8/+26
These values override {c,cxx}.std specified at the project level. In particular, this allows us to force a specific standard for all the projects in a build configuration, for example: b create: conf/,cc config.cxx=g++ config.cxx.std=experimental
2019-05-03Support <>-style header specification in importable_headersBoris Kolpackov3-11/+53