Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-12-05 | Add comma, ternary, logical operators support in eval context | Boris Kolpackov | 1 | -0/+11 | |
2016-11-30 | Add support for typed/untyped concatenated expansion | Boris Kolpackov | 1 | -28/+41 | |
2016-11-26 | Add support for VC15 | Karen Arutyunov | 1 | -1/+1 | |
2016-11-23 | Implement value type propagation on expansion | Boris Kolpackov | 1 | -0/+5 | |
Currently, we only propagate types of sole, unquoted expansions (variable, function call, or eval context), similar to NULL. To untypify the value, simply quote it. | |||||
2016-11-21 | Add support for derived-to-base function overload resolution | Boris Kolpackov | 1 | -4/+4 | |
2016-11-18 | Add function machinery, implement path.normalize() | Boris Kolpackov | 1 | -8/+31 | |
Note that multi-argument functions are not yet "callable" since there is no support for value packs. | |||||
2016-11-18 | Make names and vector<name> different types, add typed value constructor | Boris Kolpackov | 1 | -2/+11 | |
2016-11-04 | Minor dependency cleanup | Boris Kolpackov | 1 | -2/+3 | |
2016-11-04 | Various design/implementation cleanups | Boris Kolpackov | 1 | -64/+102 | |
2016-08-30 | Add support for target visibility, use for dist, test, install | Boris Kolpackov | 1 | -2/+22 | |
This means we can no longer write: install = false Now it should be: *: install = false | |||||
2016-08-23 | Reverse empty simple values as an empty names sequence rather than empty name | Boris Kolpackov | 1 | -0/+2 | |
This way we get: config.import.foo = Rather than: config.import.foo = {} | |||||
2016-08-22 | Cache process_path, use fallback search directory for binutils | Boris Kolpackov | 1 | -0/+22 | |
2016-08-12 | Implement support for C compilation | Boris Kolpackov | 1 | -1/+5 | |
We now have two new modules: cc (c-common) and c. | |||||
2016-07-28 | Fix dump not to type target type/pattern-specific prepend/append | Boris Kolpackov | 1 | -0/+8 | |
2016-07-28 | Adjust to new path implementation, use to support reversibility | Boris Kolpackov | 1 | -10/+8 | |
2016-07-21 | Save config vars in order specified rather than alphabetically | Boris Kolpackov | 1 | -4/+5 | |
This way we can group them semantically which results in easier to understand config.build output. | |||||
2016-07-20 | Switch to dynamic empty() implementation in variable value | Boris Kolpackov | 1 | -48/+73 | |
The current model fell apart when we modified values directly. | |||||
2016-07-20 | Implement support for <, >, <=, >= in eval context | Boris Kolpackov | 1 | -2/+7 | |
Now can write: if ($build.version > 30000) | |||||
2016-07-16 | Add support for prepend/append in target type/pattern-specific vars | Boris Kolpackov | 1 | -11/+22 | |
Semantically, these are similar to variable overrides and are essentially treated as "templates" that are applied on lookup to the "stem" value that is specific to the target type/name. For example: x = [string] a file{f*}: x =+ b sub/: { file{*}: x += c print $(file{foo}:x) # abc print $(file{bar}:x) # ac } | |||||
2016-07-01 | Port to MSVC | Karen Arutyunov | 1 | -1/+4 | |
2016-06-28 | Work around static initialization order issue | Boris Kolpackov | 1 | -0/+14 | |
value_traits<T>::value_type initialization is not constexpr in VC because of pointers to function template instantiations (which apparently are not constexpr). | |||||
2016-06-27 | Add config.bin.target var/hint, use to decide libso{} install mode | Boris Kolpackov | 1 | -14/+22 | |
Normally the user doesn't need to specify config.bin.target explicitly since the cxx module will hint it. We now also have the whole set of target's components: bin.target.{cpu,vendor,system,version,class} | |||||
2016-06-26 | Add support for passing configuration hints via module init() | Boris Kolpackov | 1 | -1/+2 | |
2016-06-26 | Minor module interface cleanups | Boris Kolpackov | 1 | -0/+7 | |
2016-04-18 | Add support for using value attributes in eval context | Boris Kolpackov | 1 | -23/+29 | |
For example: if ($x == [null]) Or: if ([uint64] 01 == [uint64] 1) | |||||
2016-04-11 | Redo config inheritance logic | Boris Kolpackov | 1 | -2/+9 | |
2016-04-11 | Add basic support for variable value inheritance | Boris Kolpackov | 1 | -1/+9 | |
Currently, only abs_dir_path inherits from dir_path. | |||||
2016-04-11 | New configuration logic, iteration 1 | Boris Kolpackov | 1 | -0/+3 | |
2016-04-09 | Tweak override logic WRT location of overridden value | Boris Kolpackov | 1 | -3/+7 | |
2016-04-09 | Add abs_dir_path type, auto-complete if initialized from names | Boris Kolpackov | 1 | -0/+17 | |
2016-04-09 | Add overview of variable override implementation | Boris Kolpackov | 1 | -5/+18 | |
2016-04-06 | Add support for printing overrides in dump() | Boris Kolpackov | 1 | -0/+14 | |
2016-04-04 | Implement value typing, null support via value attributes | Boris Kolpackov | 1 | -2/+8 | |
For example: v = [null] v = [string] abc v += ABC # abcABC | |||||
2016-04-02 | Implement variable typing (via attributes) | Boris Kolpackov | 1 | -1/+1 | |
Now we can do: [string] str = foo | |||||
2016-04-01 | Get part of variable override implementation | Boris Kolpackov | 1 | -1/+16 | |
2016-03-31 | Clean up variable lookup interfaces | Boris Kolpackov | 1 | -35/+25 | |
2016-03-31 | Set part of variable override implementation | Boris Kolpackov | 1 | -19/+21 | |
2016-03-28 | Clean up variable usage | Boris Kolpackov | 1 | -0/+40 | |
2016-03-28 | Add variable cast from lookup | Boris Kolpackov | 1 | -1/+7 | |
2016-03-28 | New variable architecture | Boris Kolpackov | 1 | -477/+275 | |
2016-03-28 | Add support for pair representation reversibility | Boris Kolpackov | 1 | -5/+10 | |
2016-03-28 | Enable @-delimited pairs mode everywhere | Boris Kolpackov | 1 | -12/+8 | |
2016-03-28 | Add few notes, comment cleanups | Boris Kolpackov | 1 | -3/+3 | |
2016-03-16 | Cleanup variable typing | Boris Kolpackov | 1 | -0/+7 | |
2016-03-16 | Cleanup typed variable assignment | Boris Kolpackov | 1 | -7/+16 | |
2016-02-12 | <types>/<utility> scheme cleanup | Boris Kolpackov | 1 | -41/+37 | |
2016-01-27 | Extract target from C++ compiler, set as cxx.host.{cpu,vendor,system,version} | Boris Kolpackov | 1 | -2/+2 | |
2016-01-09 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2016-01-05 | Rename build directory/namespace to build2 | Boris Kolpackov | 1 | -0/+831 | |