Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-05-04 | Add config.install.root with data_root/etc/ default | Boris Kolpackov | 1 | -0/+2 | |
2021-04-22 | Add <version> install directory substitution in addition to <project> | Boris Kolpackov | 1 | -5/+20 | |
2021-04-07 | Register environment variables for hermetic build configurations | Boris Kolpackov | 1 | -0/+34 | |
2021-02-09 | Minor simplification | Boris Kolpackov | 1 | -2/+2 | |
2020-12-04 | Mark Buildfile functions as pure or impure | Boris Kolpackov | 1 | -1/+3 | |
2020-12-01 | Add clarifying comment | Boris Kolpackov | 1 | -2/+3 | |
2020-11-30 | Don't fail if unable to remove empty directory on uninstall | Boris Kolpackov | 1 | -3/+15 | |
2020-10-20 | Add operation callback for adhoc rule match and apply | Boris Kolpackov | 1 | -1/+7 | |
2020-08-25 | Add missing move() call | Boris Kolpackov | 1 | -1/+3 | |
2020-08-16 | Add ability to initialize bootstrapped modules after loading root.build | Boris Kolpackov | 1 | -3/+1 | |
2020-07-13 | Add ability to extend rule interface in source-compatible manner | Boris Kolpackov | 1 | -3/+3 | |
2020-07-10 | Tweak rule names | Boris Kolpackov | 1 | -1/+1 | |
2020-07-09 | Make sure update-for-{test,install} works for files out of any project | Boris Kolpackov | 1 | -0/+6 | |
2020-07-09 | Relax prerequisite filtering semantics of aliases in test and install rules | Boris Kolpackov | 2 | -4/+2 | |
2020-07-01 | Add support for private installations | Boris Kolpackov | 1 | -42/+109 | |
2020-07-01 | Use <project> substitution in install directories | Boris Kolpackov | 1 | -21/+24 | |
2020-06-30 | Add support for <var>-substitutions in config.install.* values | Boris Kolpackov | 1 | -8/+66 | |
For now, the only recognized variable name is <project> which is substituted with the project name. This can be used along these lines: $ b config.install.libexec='exec_root/lib/<project>/' install | |||||
2020-06-29 | Add config.install.share variable | Boris Kolpackov | 1 | -4/+6 | |
Its default value is data_root/share/ and it is now used as a common root for config.install.{data,doc,man} variables. | |||||
2020-06-29 | Add legal{} target type and config.install.legal variable | Boris Kolpackov | 1 | -10/+14 | |
This allows separation of legal files (LICENSE, AUTHORS, etc) from other documentation. For example: ./: ... doc{README} legal{LICENSE} $ b install ... config.install.legal=/usr/share/licenses/hello/ | |||||
2020-06-25 | Add more instrumentation for unassigned path race | Boris Kolpackov | 1 | -2/+2 | |
2020-06-16 | Add $bin.link_member() function | Boris Kolpackov | 1 | -2/+0 | |
Given a linker output target type ("exe", "lib[as]", or "libu[eas]") return the target type of lib{} group member ("liba" or "libs") that will be picked when linking a lib{} group to this target type. | |||||
2020-04-30 | Rename target::member to target::adhoc_member | Boris Kolpackov | 1 | -2/+6 | |
2020-03-31 | Use find instead of insert for variable lookup in install_{path,mode}() | Boris Kolpackov | 1 | -2/+4 | |
2020-03-31 | Switch to project variable visibility by default | Boris Kolpackov | 1 | -12/+6 | |
2020-03-20 | Don't install ad hoc members with nonexistent timestamp | Boris Kolpackov | 1 | -3/+3 | |
2020-03-20 | Don't install ad hoc members with unassigned paths | Boris Kolpackov | 1 | -8/+23 | |
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 | Rework config::{omitted,required,optional}() into unified config_lookup() | Boris Kolpackov | 1 | -5/+9 | |
2020-02-07 | Drop copyright notice from source code | Karen Arutyunov | 8 | -8/+0 | |
2020-01-29 | Rename module_base to module, redo module boot/init argument passing | Boris Kolpackov | 2 | -17/+2 | |
2020-01-28 | Use scope::var_pool() | Boris Kolpackov | 2 | -19/+18 | |
2020-01-28 | Use scope::insert_rule() | Boris Kolpackov | 1 | -10/+8 | |
2019-11-04 | Add $config.export() function | Boris Kolpackov | 1 | -4/+3 | |
This is similar to the config.export variable functionality except it can be called from within buildfiles. Note that this function can only be used during configure unless the config module creation was forced for other meta-operations with config.module=true in bootstrap.build. | |||||
2019-10-29 | Regularize and make accessible install/uninstall primitives | Boris Kolpackov | 2 | -36/+70 | |
2019-10-23 | Un-tune scheduler when building build system modules | Boris Kolpackov | 1 | -2/+2 | |
2019-08-28 | Add/update some module descriptions | Karen Arutyunov | 1 | -0/+6 | |
2019-08-26 | Add support for for_install prerequisite-specific var in link rule | Boris Kolpackov | 1 | -0/+1 | |
Also reserve for_test. | |||||
2019-08-23 | Introduce notion of build context | Boris Kolpackov | 5 | -20/+31 | |
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-21 | Cleanup context.hxx and its usage | Boris Kolpackov | 1 | -0/+1 | |
2019-08-15 | Redo Windows implementation of install_l() to use uninstall_f() | Boris Kolpackov | 2 | -56/+62 | |
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 | 1 | -1/+9 | |
2019-08-15 | Implement libs_paths symlinking support on Windows | Boris Kolpackov | 1 | -3/+41 | |
Also, temporarily enable libs_paths::link on Windows for testing. | |||||
2019-07-24 | Move in build system module to separate library | Boris Kolpackov | 2 | -3/+9 | |
2019-07-05 | Move config, dist, test, and install modules into library | Karen Arutyunov | 8 | -0/+1983 | |