Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-09-18 | Temporarily force c++17 if using GCC modules branch | Boris Kolpackov | 1 | -1/+5 | |
The use of 2a-isms in the standard library are breaking things on a regular basic. | |||||
2019-09-05 | Improve /showIncludes parsing to handle internal (debug?) builds of MSVC | Boris Kolpackov | 1 | -5/+17 | |
2019-09-05 | Tighten versioned shared library cleanup logic | Boris Kolpackov | 1 | -12/+23 | |
2019-09-04 | Add support for native shared library versioning on Linux | Boris Kolpackov | 3 | -30/+126 | |
Now we can do: lib{foo}: bin.lib.version = linux@1.2 And end up with libfoo.so.1.2 libfoo.so.1 -> libfoo.so.1.2 | |||||
2019-08-30 | Make build_installed const | Boris Kolpackov | 3 | -5/+4 | |
2019-08-30 | Cutoff diagnostics stack when switching to nested context | Boris Kolpackov | 3 | -26/+51 | |
2019-08-29 | Work around VC14 miscompilation | Karen Arutyunov | 1 | -0/+8 | |
2019-08-28 | Export dependency on -lpthread | Boris Kolpackov | 1 | -0/+6 | |
2019-08-28 | Make lib{build2} "implied interface dependency" of modules | Boris Kolpackov | 8 | -44/+30 | |
This makes our compilation and linking command lines a little bit saner. | |||||
2019-08-28 | Cleanup buildfiles some more | Boris Kolpackov | 2 | -31/+10 | |
2019-08-28 | Reduce repetition in buildfiles | Boris Kolpackov | 3 | -17/+4 | |
2019-08-28 | Add/update some module descriptions | Karen Arutyunov | 7 | -3/+25 | |
2019-08-28 | Add build2_cli_load() | Karen Arutyunov | 3 | -26/+26 | |
2019-08-28 | Move cxx build system module to separate library | Karen Arutyunov | 19 | -91/+211 | |
2019-08-28 | Move c build system module to separate library | Karen Arutyunov | 16 | -68/+196 | |
2019-08-28 | Move cc build system module to separate library | Karen Arutyunov | 56 | -242/+350 | |
2019-08-28 | Move bin build system module to separate library | Karen Arutyunov | 36 | -179/+271 | |
2019-08-28 | Redo build_installed without requiring linking whole archive | Boris Kolpackov | 6 | -24/+21 | |
2019-08-27 | Temporary fix for multiple whole archive linking issue | Boris Kolpackov | 1 | -9/+3 | |
2019-08-27 | Force use of RPATH instead of RUNPATH on Linux | Boris Kolpackov | 2 | -4/+19 | |
RUNPATH messes up our use of dlopen(). | |||||
2019-08-27 | Propagate global var overrides to module build context | Boris Kolpackov | 3 | -6/+14 | |
2019-08-27 | Redo module context pointer | Boris Kolpackov | 2 | -9/+11 | |
2019-08-27 | Reorder dependencies in buildfile | Boris Kolpackov | 1 | -4/+6 | |
2019-08-27 | Change bootstrap target on Windows from i686 to x86_64 | Boris Kolpackov | 3 | -4/+4 | |
Seeing that we have dropped 32-bit baseutils, this feels like the correct default. | |||||
2019-08-27 | Tweak cross-compilation detection in buildfile | Boris Kolpackov | 1 | -4/+11 | |
2019-08-27 | Don't set import.build2 variable in cross-compiled build2 | Karen Arutyunov | 2 | -7/+8 | |
2019-08-26 | Implement auto-import of development build2 build | Boris Kolpackov | 10 | -11/+96 | |
2019-08-26 | Add support for for_install prerequisite-specific var in link rule | Boris Kolpackov | 4 | -0/+31 | |
Also reserve for_test. | |||||
2019-08-26 | Improve diagnostics in import_module() | Boris Kolpackov | 1 | -20/+25 | |
2019-08-26 | Fix bug in import_search() | Boris Kolpackov | 1 | -2/+2 | |
2019-08-26 | Fix bug in scope::find_target_key() | Boris Kolpackov | 1 | -1/+8 | |
2019-08-26 | Improve diagnostics | Boris Kolpackov | 1 | -1/+1 | |
2019-08-26 | Fix typo | Karen Arutyunov | 1 | -1/+2 | |
2019-08-26 | Suppress gcc's 'control reaches end of non-void function' warning | Karen Arutyunov | 1 | -1/+1 | |
2019-08-26 | Implement updating build system modules | Boris Kolpackov | 11 | -34/+211 | |
2019-08-26 | Factor target name processing code from parser to scope | Boris Kolpackov | 4 | -50/+91 | |
2019-08-26 | Make target types project-wide | Boris Kolpackov | 12 | -99/+124 | |
2019-08-25 | Split import into search and load steps | Boris Kolpackov | 3 | -49/+89 | |
This allows us to load things in a separate context. | |||||
2019-08-23 | Introduce notion of build context | Boris Kolpackov | 111 | -2096/+2444 | |
All non-const global state is now in class context and we can now have multiple independent builds going on at the same time. | |||||
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 | |