Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-09-08 | More documentation fixes | Boris Kolpackov | 1 | -1/+1 | |
2018-09-08 | Documentation fix | Boris Kolpackov | 1 | -1/+1 | |
2018-09-08 | Documentation fixes | Boris Kolpackov | 1 | -466/+503 | |
2018-09-07 | Fix binless logic some more | Boris Kolpackov | 2 | -15/+16 | |
2018-09-07 | Explain subprojects and amalgamation in manual | Boris Kolpackov | 1 | -5/+245 | |
2018-09-06 | Fix issues with interaction between binless logic and Windows DLLs | Boris Kolpackov | 4 | -26/+46 | |
2018-09-06 | Explain unit test support implementation in manual | Boris Kolpackov | 1 | -4/+180 | |
2018-09-05 | Fix bug in pkgconfig_load() | Boris Kolpackov | 1 | -1/+1 | |
2018-09-05 | Only consider common .pc file for binless variant if there is no binfull | Boris Kolpackov | 3 | -15/+30 | |
2018-09-05 | Documentation fixes | Boris Kolpackov | 2 | -149/+178 | |
2018-09-05 | Add note on header-only/binless libraries in manual | Boris Kolpackov | 1 | -0/+14 | |
2018-09-05 | Adjust pkg-config logic to cover binless libraries | Boris Kolpackov | 3 | -131/+234 | |
2018-09-05 | Create .buildignore file in testscript root working directory | Karen Arutyunov | 8 | -15/+136 | |
2018-09-04 | Check for binless-ness after seeing through to import library member | Boris Kolpackov | 1 | -11/+16 | |
This makes a difference for installed libraries since the DLL location might be unknown (empty path). | |||||
2018-09-04 | Document .buildignore | Boris Kolpackov | 1 | -3/+4 | |
2018-09-04 | Initial work on binless (binary-less aka header-only) library support | Boris Kolpackov | 9 | -354/+514 | |
2018-09-04 | Rename .test/test{} to .testscript/testscript{} | Boris Kolpackov | 121 | -259/+261 | |
2018-09-03 | Ignore directories with .buildignore file when generating names with ↵ | Karen Arutyunov | 1 | -9/+11 | |
wildcard patterns | |||||
2018-09-03 | Write introduction (still WIP) | Boris Kolpackov | 2 | -22/+3068 | |
2018-09-03 | Update to match new pre-formatter fragment escape semantics in CLI | Boris Kolpackov | 1 | -5/+5 | |
2018-09-03 | Use (native) C and C++ compilers we were built with as defaults | Boris Kolpackov | 5 | -7/+49 | |
2018-08-31 | Add ability to print cc compiler_id value | Boris Kolpackov | 2 | -0/+24 | |
2018-08-31 | Adjust terminology in diagnostic and comments | Boris Kolpackov | 1 | -5/+5 | |
2018-08-30 | Handle missing export directive in export stub | Boris Kolpackov | 2 | -2/+14 | |
If none were executed, then we assume the requested target is not exported. | |||||
2018-08-29 | Fix typo in diagnostics | Boris Kolpackov | 1 | -1/+1 | |
2018-08-28 | Diagnose NULL test.target variable value | Boris Kolpackov | 1 | -9/+19 | |
2018-08-27 | Don't insist on install rules for non-file targets | Boris Kolpackov | 7 | -26/+51 | |
This helps with (not) installing libu*{} groups. | |||||
2018-08-27 | Fix diagnostics bug | Boris Kolpackov | 1 | -2/+1 | |
2018-08-27 | Use butl::path_match() for pattern-specific variable matching | Boris Kolpackov | 1 | -25/+10 | |
2018-08-25 | Implement missing pieces in utility libraries support | Boris Kolpackov | 14 | -313/+624 | |
In particular, we can now build static libraries out of utility libraries. | |||||
2018-08-22 | Define BUILD2_BOOTSTRAP when compiling libbutl sources | Boris Kolpackov | 1 | -1/+1 | |
2018-08-22 | Rework code to sidestep Clang 3.8 on FreeBSD 11.0 mis-compilation | Boris Kolpackov | 1 | -2/+1 | |
2018-08-22 | Remove unnecessary move()'s | Boris Kolpackov | 1 | -2/+2 | |
2018-08-21 | Unset CL and _CL_ environment variables when detecting MSVC | Boris Kolpackov | 5 | -18/+37 | |
2018-08-21 | Print 'ar' instead of 'ld' when building static libraries | Boris Kolpackov | 1 | -1/+1 | |
2018-08-14 | Use thin archives if available for utility libraries | Boris Kolpackov | 5 | -44/+166 | |
Thin archives are supported by GNU ar since binutils 2.19.1 and LLVM ar since LLVM 3.8.0. | |||||
2018-08-09 | Fix tests some more | Boris Kolpackov | 1 | -3/+3 | |
2018-08-09 | Fix test failures on Windows | Boris Kolpackov | 2 | -8/+23 | |
2018-08-09 | Add functions for decomposing name as parget/prerequisite name | Boris Kolpackov | 1 | -1/+82 | |
2018-08-09 | Handle few corner cases in concatenated expansion | Boris Kolpackov | 2 | -23/+70 | |
2018-08-09 | Add support for name patterns without wildcard characters | Boris Kolpackov | 4 | -28/+35 | |
In particular, this allows the "if-exists" specification of prerequisites, for example: for t: $tests exe{$t}: cxx{$t} test{+$t} | |||||
2018-08-09 | Add support for returning optional<T> from (buildfile) function implementations | Boris Kolpackov | 3 | -1/+32 | |
2018-08-09 | Fix issue with concatenating empty typed LHS | Boris Kolpackov | 1 | -3/+14 | |
2018-08-07 | Add support for default extension specification, trailing dot escaping | Boris Kolpackov | 14 | -188/+457 | |
For example: cxx{*}: extension = cxx cxx{foo} # foo.cxx cxx{foo.test} # foo.test (probably what we want...) cxx{foo.test...} # foo.test.cxx (... is this) cxx{foo..} # foo. cxx{foo....} # foo.. cxx{foo.....} # error (must come in escape pair) | |||||
2018-07-30 | Fortify cli detection against "other" cli's (like Mono JIT compiler) | Boris Kolpackov | 1 | -12/+25 | |
2018-07-30 | Make project variable to be of project_name type | Karen Arutyunov | 32 | -116/+271 | |
2018-07-28 | Add build.version.stage boolean variable | Boris Kolpackov | 1 | -0/+14 | |
It can be used to detection (for example, in tests) whether this is a staged toolchain. | |||||
2018-07-26 | Pass extension supplied by rule to target type default extension function | Boris Kolpackov | 6 | -25/+38 | |
Also revert the precedence back to target type over rule. But now the target type is able to customize this logic (see exe{} for a use case). | |||||
2018-07-25 | Remove unnecessary initialization (which also helps GCC 4.9 and VC 14u3) | Boris Kolpackov | 1 | -1/+1 | |
2018-07-25 | Add note to bash module documentation | Boris Kolpackov | 1 | -1/+3 | |