Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-08-23 | Disable dynamic build system module loading in bootstrap build | Boris Kolpackov | 3 | -8/+19 | |
We don't really need it so why jump through hoops like trying to portably link -ldl, etc. | |||||
2019-08-22 | Link -ldl in bootstrap script/makefile | Boris Kolpackov | 2 | -2/+2 | |
2019-08-22 | Make use of butl::sanitize_identifier() | Karen Arutyunov | 1 | -9/+2 | |
2019-08-21 | Make testscripts to ignore user's default options files | Karen Arutyunov | 12 | -137/+192 | |
2019-08-21 | Cleanup context.hxx and its usage | Boris Kolpackov | 32 | -341/+341 | |
2019-08-21 | Implement dynamic loading of build system modules | Boris Kolpackov | 11 | -107/+381 | |
2019-08-20 | Add build.version.interface | Boris Kolpackov | 4 | -6/+23 | |
This build system interface version should be embedded into build system modules as load_suffix. | |||||
2019-08-19 | Revert previous (erroneously pushed to master) commit | Karen Arutyunov | 7 | -14/+11 | |
2019-08-19 | Make testscripts to ignore user's default options files | Karen Arutyunov | 7 | -11/+14 | |
2019-08-19 | Minor cleanups | Boris Kolpackov | 3 | -172/+186 | |
2019-08-17 | Tweak deadlock detection thread wait time | Boris Kolpackov | 1 | -3/+3 | |
2019-08-17 | Revert testing code (link name on Windows) | Boris Kolpackov | 1 | -2/+1 | |
2019-08-17 | Add support for default options files | Karen Arutyunov | 8 | -8/+312 | |
2019-08-17 | Add '--std c++11' CLI option in buildfiles | Karen Arutyunov | 2 | -3/+4 | |
2019-08-16 | Fix bugs in derive_libs_paths() logic | Boris Kolpackov | 1 | -23/+29 | |
2019-08-16 | Minor cleanups | Boris Kolpackov | 3 | -25/+20 | |
2019-08-16 | Cosmetic changes | Boris Kolpackov | 1 | -2/+2 | |
2019-08-15 | Redo Windows implementation of install_l() to use uninstall_f() | Boris Kolpackov | 3 | -58/+64 | |
2019-08-15 | Fix bug in Windows implementation of install_l() | Boris Kolpackov | 1 | -3/+3 | |
2019-08-15 | Fix bug in mkanylink() usage | Boris Kolpackov | 2 | -6/+14 | |
2019-08-15 | Minor naming improvement | Boris Kolpackov | 2 | -6/+6 | |
2019-08-15 | Embed build core version into build system modules as load path | Boris Kolpackov | 3 | -12/+27 | |
2019-08-15 | Add support for bin.lib.load_suffix | Boris Kolpackov | 4 | -10/+39 | |
This allow the creation of yet another symlink to the shared library that is meant to be used for dynamic loading. For example, we may want to embed the main program interface number into its plugins to make sure that we only load compatible versions. | |||||
2019-08-15 | Fix bug in bin.lib.suffix handling | Boris Kolpackov | 1 | -19/+13 | |
2019-08-15 | Implement libs_paths symlinking support on Windows | Boris Kolpackov | 3 | -20/+70 | |
Also, temporarily enable libs_paths::link on Windows for testing. | |||||
2019-08-14 | Remove no longer used lambda capture | Boris Kolpackov | 1 | -1/+1 | |
2019-08-14 | Use new mkanylink() from libbutl | Boris Kolpackov | 3 | -90/+61 | |
2019-08-14 | Enable libs_paths symlinking logic on Windows | Boris Kolpackov | 2 | -25/+28 | |
This should currently be noop since all the paths are set to empty. | |||||
2019-08-14 | Make libs_path::link empty instead of import library path for Windows | Boris Kolpackov | 2 | -21/+24 | |
We don't really use this anywhere (in particular, the import library name cannot possibly match the clean pattern). | |||||
2019-08-12 | Use new fdstream constructor | Boris Kolpackov | 2 | -3/+3 | |
2019-08-12 | Adjust to fdstream constructor changes | Boris Kolpackov | 1 | -1/+1 | |
2019-08-07 | Improve deadlock diagnostics (suppress stack trace, reword) | Boris Kolpackov | 7 | -14/+32 | |
2019-08-07 | Tighten deadlock monitor notification logic | Boris Kolpackov | 2 | -24/+27 | |
2019-08-07 | Make deadlock detection loop more robust | Boris Kolpackov | 2 | -9/+26 | |
2019-08-07 | Distinguish between internal/external wait deactivation in scheduler | Boris Kolpackov | 3 | -22/+38 | |
This turns out to be necessary for the deadlock detection to work properly. | |||||
2019-08-06 | Implement general deadlock detection via monitoring thread | Boris Kolpackov | 2 | -56/+103 | |
2019-08-06 | Improve module name to file name heuristics | Boris Kolpackov | 2 | -25/+148 | |
2019-08-02 | Regenerate options parsing code | Boris Kolpackov | 4 | -2/+40 | |
2019-08-01 | Move bash build system module to separate library | Karen Arutyunov | 16 | -69/+189 | |
2019-08-01 | Move version build system module to separate library | Karen Arutyunov | 24 | -78/+192 | |
2019-08-01 | Fix linkage failure due to inline functions defined in ↵ | Karen Arutyunov | 9 | -84/+85 | |
libbuild2/algorithm.ixx and referred from libbuild2/target.txx | |||||
2019-08-01 | Combine multiple single-character flags into a single argument for ↵ | Karen Arutyunov | 5 | -8/+8 | |
testscript commands | |||||
2019-07-26 | Use .gcm extension for both modules and headers in GCC | Boris Kolpackov | 1 | -12/+1 | |
2019-07-26 | Remove no longer necessary workaround for GCC modules mode | Boris Kolpackov | 1 | -4/+0 | |
2019-07-25 | Implement pre-parse mode for parse_names_trailer() | Karen Arutyunov | 2 | -2/+25 | |
2019-07-25 | Fix parse_names_trailer() for 'cross with empty LHS' case ({$empty}{x y}) | Karen Arutyunov | 1 | -0/+1 | |
2019-07-25 | Work around GCC 4.9 deficiencies | Boris Kolpackov | 1 | -3/+3 | |
2019-07-24 | Use CLI-generated classes to parse testscript builtin options | Karen Arutyunov | 23 | -425/+5727 | |
2019-07-24 | Move in build system module to separate library | Boris Kolpackov | 32 | -146/+324 | |
2019-07-22 | Mention LDLIBS in addition to LIBS as analogous to *.libs | Boris Kolpackov | 1 | -3/+3 | |