Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-06-26 | Minor module interface cleanups | Boris Kolpackov | 8 | -27/+33 | |
2016-06-26 | Add notion of ad hoc group, use to handle DLL/import library | Boris Kolpackov | 17 | -302/+611 | |
2016-06-20 | Fix some more MinGW .dll.a search | Boris Kolpackov | 1 | -15/+43 | |
2016-06-18 | Port to MinGW | Karen Arutyunov | 28 | -71/+249 | |
2016-06-18 | Fix MinGW .dll.a search | Boris Kolpackov | 1 | -8/+15 | |
2016-06-18 | Cosmetic changes | Boris Kolpackov | 2 | -6/+5 | |
2016-06-17 | Initial take on DLL support for MinGW toolchain | Boris Kolpackov | 6 | -65/+157 | |
2016-06-11 | Temporarily add --strip-trailing-cr to diff options in test module | Boris Kolpackov | 2 | -0/+3 | |
2016-06-11 | Initial VC++ support (static libraries only) | Boris Kolpackov | 12 | -335/+840 | |
2016-06-03 | Treat trailing backslash as directory indicator | Boris Kolpackov | 1 | -13/+36 | |
Note that with this change we broke reversibility for such names, i.e., 'foo\' name will be reversed to 'foo/'. | |||||
2016-05-21 | Recursively link prerequisite libraries of static libraries | Boris Kolpackov | 1 | -4/+52 | |
2016-04-26 | Bump version to 0.4.0-a1, master is open for business | Boris Kolpackov | 5 | -10/+10 | |
2016-04-26 | Add imported library rpaths before user-supplied0.3.0 | Boris Kolpackov | 1 | -9/+13 | |
This way we don't accidentally prefer old (installed) versions. | |||||
2016-04-25 | Suppress Clang warning | Boris Kolpackov | 1 | -1/+1 | |
2016-04-25 | Fix bug in C++ compiler guessing logic | Boris Kolpackov | 1 | -1/+1 | |
2016-04-25 | Add missing variable assignments | Boris Kolpackov | 1 | -4/+4 | |
2016-04-25 | Add workaround for GCC 4.8 bug in default initialization of union member | Boris Kolpackov | 1 | -3/+9 | |
It appears to silently ignore this C++11 feature and leave the data uninitialized. | |||||
2016-04-23 | Add missing file to buildfile | Boris Kolpackov | 1 | -1/+1 | |
2016-04-23 | Backwards-compatibility fixes | Boris Kolpackov | 1 | -1/+7 | |
2016-04-23 | Revert back to using root scope in src_out()/out_src() | Boris Kolpackov | 6 | -20/+22 | |
Relaxing it to base was not wise since we can have "sideways" prerequisites (those from parallel directories such as brep's ../web/*). | |||||
2016-04-22 | Fix test | Boris Kolpackov | 2 | -2/+2 | |
2016-04-22 | NEWS file proofreading fixes | Boris Kolpackov | 1 | -8/+8 | |
2016-04-22 | Bump version to 0.3.0 | Boris Kolpackov | 5 | -9/+9 | |
2016-04-22 | Clarify few @@ notes | Boris Kolpackov | 2 | -2/+2 | |
2016-04-22 | Update NEWS file | Boris Kolpackov | 1 | -22/+35 | |
2016-04-21 | Move target state reset back to recipe() | Boris Kolpackov | 4 | -10/+8 | |
Doing it in target::reset() (which is called by match()) didn't play well with delegated recipes. | |||||
2016-04-21 | Update submodules | Boris Kolpackov | 2 | -0/+0 | |
2016-04-21 | Fix legacy stuff in tests | Boris Kolpackov | 13 | -39/+12 | |
2016-04-21 | Implement short-circuiting to group state | Boris Kolpackov | 7 | -65/+90 | |
This is necessary to get rid of bogus restarts in inject_prerequisites() where it think a group member was updated since its state changed from unknown to (group's) changed. | |||||
2016-04-21 | Delete target_key assignment operators since we need tracking references | Boris Kolpackov | 1 | -3/+14 | |
2016-04-21 | Use hash map/set for targets/prerequisites to resolve key change issue | Boris Kolpackov | 7 | -38/+127 | |
2016-04-20 | Print variable/value attributes in dump() | Boris Kolpackov | 1 | -16/+45 | |
2016-04-20 | Add missing cast() specialization | Boris Kolpackov | 1 | -0/+9 | |
2016-04-20 | Type install.mode variable | Boris Kolpackov | 1 | -1/+2 | |
2016-04-19 | Redesign src/out scoping | Boris Kolpackov | 29 | -478/+544 | |
We no longer enter paths from the src tree into scope map. Instead, targets from the src tree now include their out tree directory (in essence their "configuration"). This is then used to find a target's scope. See the comment in class target for details. The result of this change is that we can now again build multiple configurations (out trees) for same project at once. | |||||
2016-04-18 | Add support for using value attributes in eval context | Boris Kolpackov | 12 | -275/+526 | |
For example: if ($x == [null]) Or: if ([uint64] 01 == [uint64] 1) | |||||
2016-04-17 | Update NEWS file | Boris Kolpackov | 1 | -0/+101 | |
2016-04-12 | Change text.exe to exe{*}:test (BC change) | Boris Kolpackov | 1 | -1/+2 | |
2016-04-12 | Change BACK to BC (backwards-compatibility) marker | Boris Kolpackov | 1 | -1/+1 | |
2016-04-12 | Add support for scope-qualification of overrides, scope visibility | Boris Kolpackov | 2 | -19/+93 | |
2016-04-12 | Mark non-BC changes for future | Boris Kolpackov | 2 | -6/+4 | |
2016-04-12 | Update INSTALL file | Boris Kolpackov | 2 | -7/+6 | |
2016-04-11 | Simplify unconfigured module interface | Boris Kolpackov | 4 | -27/+47 | |
2016-04-11 | Separate config variable for different modules with blanks | Boris Kolpackov | 1 | -0/+32 | |
2016-04-11 | Cleanup find_override() implementation | Boris Kolpackov | 1 | -69/+91 | |
2016-04-11 | Redo config inheritance logic | Boris Kolpackov | 9 | -27/+118 | |
2016-04-11 | Adjust abs_dir_path usage to take advantage of inheritance | Boris Kolpackov | 2 | -19/+19 | |
2016-04-11 | Add basic support for variable value inheritance | Boris Kolpackov | 4 | -7/+34 | |
Currently, only abs_dir_path inherits from dir_path. | |||||
2016-04-11 | New configuration logic, iteration 1 | Boris Kolpackov | 31 | -257/+338 | |
2016-04-09 | Tweak override logic WRT location of overridden value | Boris Kolpackov | 4 | -35/+62 | |