Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-03-27 | Fix bug in previous commit | Boris Kolpackov | 1 | -2/+2 | |
2020-03-27 | Implement project configuration reporting, similar to build system modules | Boris Kolpackov | 7 | -100/+368 | |
2020-03-27 | Share parser for loading root.build and pre/post hooks | Boris Kolpackov | 1 | -25/+43 | |
2020-03-26 | Make buildfile parser reset'able | Boris Kolpackov | 2 | -21/+55 | |
Note that the testscript parser (which derives from the buildfile parser) is (still) not reset'able (this functionality is currently not needed so why complicate things). | |||||
2020-03-25 | Enforce config directives only appearing in project's root.build | Boris Kolpackov | 3 | -39/+54 | |
2020-03-25 | Diagnose unnamed project in version module | Boris Kolpackov | 1 | -3/+6 | |
2020-03-20 | Generate common .pc file in addition to static/staged when installing lib{} | Boris Kolpackov | 8 | -27/+90 | |
The common .pc file is produced by ignoring any static/shared-specific poptions and splitting loptions/libs into Libs/Libs.private. It is "best effort", in a sense that it's not guaranteed to be sufficient in all cases, but it will probably cover the majority of cases, even on Windows, thanks to automatic dllimport'ing of functions. | |||||
2020-03-20 | Don't install ad hoc members with nonexistent timestamp | Boris Kolpackov | 1 | -3/+3 | |
2020-03-20 | Initial implementation of config directive for project-specific configuration | Boris Kolpackov | 5 | -7/+310 | |
2020-03-20 | Lexer support for default value assignment (?=) | Boris Kolpackov | 5 | -6/+65 | |
Note: not yet supported in the parser. | |||||
2020-03-20 | Don't install ad hoc members with unassigned paths | Boris Kolpackov | 1 | -8/+23 | |
2020-03-20 | Tighten add_adhoc_member() against races | Boris Kolpackov | 1 | -14/+17 | |
2020-03-20 | Add ability to query whether target has been matched for action | Boris Kolpackov | 2 | -3/+26 | |
2020-03-19 | Tweak lookup_config() semantics some more | Boris Kolpackov | 6 | -26/+82 | |
2020-03-18 | Cleanup variable type/visibility/overridability logic | Boris Kolpackov | 3 | -65/+89 | |
2020-03-18 | Pattern-type config.** variables with global visibility by default | Boris Kolpackov | 3 | -56/+62 | |
2020-03-18 | Fix variable pattern merging logic | Boris Kolpackov | 1 | -12/+31 | |
2020-03-18 | Add $visibility(<variable>) function for querying variable visibility | Boris Kolpackov | 3 | -11/+32 | |
2020-03-18 | Get rid of old and unused logic | Boris Kolpackov | 1 | -30/+5 | |
2020-03-17 | Adapt install_l() to mkanylink() semantics change | Karen Arutyunov | 1 | -8/+1 | |
Now mkanylink() always interprets a relative target from the link directory. | |||||
2020-03-17 | Fix backlinking code to follow symlinks in hardlink targets | Boris Kolpackov | 1 | -2/+11 | |
2020-03-17 | Adapt testscripts to ln builtin target path completion fix | Karen Arutyunov | 4 | -6/+7 | |
2020-03-17 | Add $defined(<variable>) function | Boris Kolpackov | 4 | -33/+52 | |
2020-03-17 | Rename all find*(variable) to lookup*(variable) | Boris Kolpackov | 19 | -146/+156 | |
Now we consistently use term "lookup" for variable value lookup. At some point we should also rename type lookup to binding and get rid of all the lookup_type aliases. | |||||
2020-03-17 | Rework config::{omitted,required,optional}() into unified config_lookup() | Boris Kolpackov | 15 | -256/+422 | |
2020-03-13 | Cleanup and make config/utility.?xx part of build system core | Boris Kolpackov | 13 | -257/+289 | |
2020-03-12 | Minor comment improvements | Boris Kolpackov | 2 | -2/+2 | |
2020-03-11 | Minor config variable lookup cleanups | Boris Kolpackov | 8 | -57/+69 | |
2020-03-11 | Optimize testscripts not to search for subprojects | Karen Arutyunov | 4 | -0/+5 | |
2020-03-10 | Force hard links inside backlinked DLL assembly directory | Boris Kolpackov | 2 | -4/+7 | |
Windows does not allow the manifest file inside to be a symlink for some (probably security) reasons. | |||||
2020-03-09 | Document UTF-8 encoding for buildfiles and testscripts | Boris Kolpackov | 2 | -1/+8 | |
2020-03-06 | Restrict buildfiles and testscripts with only Unicode graphic characters, ↵ | Karen Arutyunov | 1 | -4/+9 | |
'\t', '\r', and '\n' | |||||
2020-03-05 | Use utf8_validator for buildfile and testscript lexers | Karen Arutyunov | 1 | -2/+5 | |
2020-03-05 | Don't mention CONTRIBUTING.md in buildfile | Karen Arutyunov | 2 | -4/+4 | |
2020-03-04 | Fix bug in config.config.persist logic | Boris Kolpackov | 2 | -2/+10 | |
2020-02-28 | Add .gitattributes file | Karen Arutyunov | 2 | -1062/+1081 | |
2020-02-27 | Minor code clanup | Boris Kolpackov | 1 | -5/+4 | |
2020-02-27 | Revert recent Clang optimization bug workaround as it doesn't help | Karen Arutyunov | 1 | -7/+3 | |
2020-02-27 | Fix .pc files-based static linkage failing on macos | Karen Arutyunov | 1 | -0/+9 | |
Note that this is achieved by using the PKGCONF_PKG_PKGF_DONT_MERGE_SPECIAL_FRAGMENTS that we invented in the libpkgconf library. | |||||
2020-02-26 | Try to work around Clang optimization bug | Karen Arutyunov | 1 | -3/+7 | |
2020-02-26 | Adapt to adding validator to butl::char_scanner | Karen Arutyunov | 3 | -24/+34 | |
2020-02-25 | Disable global module fragment tests for MSVC due to issue 845845 | Boris Kolpackov | 1 | -0/+3 | |
2020-02-24 | Work around bug in Clang 10 targeting MSVC in c++2a (LLVM bug #44956) | Boris Kolpackov | 4 | -8/+34 | |
2020-02-24 | Disable /WHOLEARCHIVE workaround for lld-link 9.0.1 and later | Boris Kolpackov | 1 | -9/+16 | |
2020-02-24 | Extract version for lld-link | Boris Kolpackov | 3 | -8/+52 | |
2020-02-21 | Define __cpp_modules=201810 (merged modules) for MSVC 16.4 | Boris Kolpackov | 2 | -9/+12 | |
2020-02-18 | Update style submodule | Boris Kolpackov | 1 | -0/+0 | |
2020-02-18 | Fix copyright notice extraction for building and documentation generating | Karen Arutyunov | 2 | -5/+6 | |
2020-02-18 | Reformat LICENSE | Boris Kolpackov | 1 | -16/+15 | |
2020-02-18 | New LICENSE/AUTHORS arrangement | Boris Kolpackov | 6 | -23/+28 | |