Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-03-08 | Add recognition of *-apple-ios* target triplets, ios target class | Boris Kolpackov | 1 | -0/+19 | |
2020-12-08 | Add proper support for option files option to load_default_options() | Karen Arutyunov | 2 | -29/+68 | |
2020-11-30 | Canonicalize arm64 to aarch64 in target triplet, similar to config.sub | Boris Kolpackov | 1 | -0/+5 | |
2020-11-25 | Allow multiple -e options for sed builtin | Karen Arutyunov | 1 | -16/+39 | |
2020-11-06 | Add fdselect() overload that also takes timeout | Karen Arutyunov | 1 | -6/+31 | |
2020-11-06 | Add builtin::timed_wait(), builtin::try_wait(), and pseudo_builtin() | Karen Arutyunov | 3 | -18/+166 | |
2020-11-05 | Add process::term() and implement process::kill() on Windows | Karen Arutyunov | 3 | -0/+423 | |
2020-11-05 | Fix 'unresolved external symbol' for process::timed_wait(milliseconds) on ↵ | Karen Arutyunov | 1 | -2/+8 | |
Windows | |||||
2020-11-04 | Add test for wasm32-unknown-emscripten target triplet | Boris Kolpackov | 1 | -0/+4 | |
2020-10-01 | Add ext_mods parameter to b_info() | Karen Arutyunov | 1 | -3/+4 | |
2020-09-11 | Add support for arguments in default options files helpers | Karen Arutyunov | 2 | -126/+264 | |
2020-09-07 | Add normalize() function to host/URL class templates | Karen Arutyunov | 2 | -96/+213 | |
Also add IPv6 verification to host constructor. | |||||
2020-08-24 | Recognize *-nto-qnx target triplets, extract version | Boris Kolpackov | 1 | -1/+7 | |
2020-08-24 | Add target_triplet::representation() in addition to string() | Boris Kolpackov | 1 | -9/+9 | |
Also stop stripping `none-` prefix from the system component. | |||||
2020-06-30 | Expose command_run()'s @-substitution functionality | Boris Kolpackov | 1 | -3/+3 | |
Also add support for different opening and closing substitution characters. | |||||
2020-06-29 | Add path::combine(string,separator) | Boris Kolpackov | 1 | -0/+19 | |
In particular, this can be used to recombine a path during iteration: dir_path r; for (auto i (d.begin ()); i != d.end (); ++i) r.combine (*i, i.separator ()); | |||||
2020-06-26 | Improve std::optional to better deal with lack of copy/move constructors | Karen Arutyunov | 2 | -0/+49 | |
2020-06-24 | Don't use utime() on Windows | Boris Kolpackov | 1 | -1/+1 | |
It has the seconds precision even if the time is unspecified. | |||||
2020-06-23 | Add note that access time tests may fail with if running on noatime mount | Boris Kolpackov | 2 | -0/+6 | |
For example, this happens on NetBSD. | |||||
2020-06-19 | Adapt mv builtin tests to terminology change | Karen Arutyunov | 1 | -6/+6 | |
2020-06-18 | Complete NetBSD compatibility | Boris Kolpackov | 2 | -1/+12 | |
2020-06-11 | Add date builtin | Karen Arutyunov | 1 | -0/+48 | |
2020-06-11 | Add workaround for MinGW GCC bug so to_stream(timestamp) properly handles %e ↵ | Karen Arutyunov | 1 | -0/+3 | |
specifier | |||||
2020-06-03 | Add builtin weight | Karen Arutyunov | 1 | -3/+9 | |
Also invent the notion of external builtin (builtin_info::function is NULL). | |||||
2020-04-07 | Add ability to print process_env environment | Boris Kolpackov | 1 | -0/+36 | |
2020-04-01 | Add daytime() function | Karen Arutyunov | 1 | -0/+12 | |
2020-03-17 | Fix ln builtin not to complete relative target against working directory | Karen Arutyunov | 4 | -6/+6 | |
Now it preserves the relative path when creates a symlink and completes it against the link directory when creates a hardlink or a copy. | |||||
2020-03-17 | Add readsymlink(), followsymlink(), and try_followsymlink() | Karen Arutyunov | 5 | -19/+203 | |
2020-03-10 | Fix directory symlink tests failing on Windows in Developer Mode | Karen Arutyunov | 3 | -92/+86 | |
2020-03-09 | Add more support for symlinks on Windows | Karen Arutyunov | 8 | -179/+676 | |
See mksymlink() for details of the symlinks support on Windows. | |||||
2020-03-09 | Add workaround for MinGW GCC bug #84583 (produces CRCRLF sequences in ↵ | Karen Arutyunov | 1 | -34/+17 | |
preprocessed files) | |||||
2020-03-03 | Revert previous (erroneously pushed to master) commit | Karen Arutyunov | 4 | -62/+17 | |
2020-03-02 | Backup | Karen Arutyunov | 4 | -17/+62 | |
2020-02-26 | Add notion of validator to char_scanner and make sure manifest is UTF-8 | Karen Arutyunov | 4 | -12/+257 | |
This involves implementing utf8_validator and UTF-8 utility functions and using them during the manifest parsing, serialization, and rewriting. | |||||
2020-02-12 | Fix curl testscript | Karen Arutyunov | 1 | -8/+8 | |
2020-02-12 | Rename fdnull() to fdopen_null() | Karen Arutyunov | 4 | -10/+11 | |
2020-02-06 | Drop copyright notice from source code | Boris Kolpackov | 123 | -123/+0 | |
2020-01-28 | Add utf8() predicate | Karen Arutyunov | 2 | -0/+164 | |
2019-11-14 | Add to_stream(ostream, path, bool) | Karen Arutyunov | 1 | -6/+22 | |
2019-10-29 | Only enable backtrace support on Linux if using glibc | Boris Kolpackov | 1 | -1/+1 | |
Other libc implementations, for example musl, don't support this out of the box. | |||||
2019-10-08 | Fix 'unused variable' warning issued by Clang on Windows | Karen Arutyunov | 1 | -0/+3 | |
2019-10-07 | Adapt tests for building with Clang on Windows | Karen Arutyunov | 1 | -3/+3 | |
2019-10-01 | Move path match to path-pattern.?xx | Karen Arutyunov | 1 | -0/+2 | |
2019-09-28 | Swap entry and pattern parameters in path_match() | Karen Arutyunov | 2 | -165/+168 | |
2019-09-28 | Rename casecmp() function and case_compare_[c_]string structs to icasecmp() ↵ | Karen Arutyunov | 1 | -14/+14 | |
and icase_compare_[c_]string | |||||
2019-09-27 | Add support for bracket expressions in wildcard pattern matching | Karen Arutyunov | 1 | -2/+68 | |
2019-09-27 | Add support for builtin escaping to command running API | Karen Arutyunov | 1 | -0/+10 | |
2019-09-27 | Add builtins support to command running API | Karen Arutyunov | 2 | -2/+37 | |
2019-09-27 | Add builtins support | Karen Arutyunov | 15 | -0/+1992 | |
2019-08-27 | Fix backslash escaping in windows process arguments | Karen Arutyunov | 1 | -8/+64 | |