aboutsummaryrefslogtreecommitdiff
path: root/configs/make64_defconfig (follow)
Commit message (Collapse)AuthorAgeFilesLines
* join: new appletmbartlett212026-01-021-0/+1
| | | | | | | | Join joins two sorted input files on matching fields. It supports the options required by POSIX, including the combinatorial output for equal fields. Adds 3 KiB
* ash: add options to control globbing of hidden filesRon Yorston2023-09-201-2/+2
| | | | | | | | | | | | | | | | | | | | | Add shell options: - 'nohiddenglob' excludes files with the hidden attribute from globbing - 'nohidsysglob' excludes files with the hidden and system attributes from globbing If both options are enabled 'nohiddenglob' takes precedence. These options also affect tab completion. Files that are hidden because they start with a period aren't affected (unless they also have the hidden attribute). Costs 160-208 bytes. (GitHub issue #367)
* win32: include our manifests in default configurationsRon Yorston2023-09-151-3/+3
| | | | | | | | | | | | | The default configurations now include the provided standard or UTF-8 manifest. This works best if the build toolchain doesn't provide a default manifest (which Fedora and w64devkit don't, by default). If the toolchain does have a default manifest some bloat will result. (GitHub issue #366)
* win32: improved support for manifestsRon Yorston2023-09-141-1/+3
| | | | | | | | | | The UTF-8 manifest has been updated to include features from the standard application manifest. Include a copy of the standard application manifest for toolchains that don't provide one. (GitHub issue #366)
* Update default configurationsRon Yorston2023-08-101-1/+3
|
* Update default configurationsRon Yorston2023-07-161-2/+6
|
* ash: remove ASH_IGNORE_CR config optionRon Yorston2023-04-091-1/+0
| | | | | | | | | | | | No further problems with CRLF handling have been reported. Remove the configuration option that allowed some recent changes to be turned off. Also, prevent some WIN32 code from being included in the POSIX build. The faulty code is from commit 64c8f5f3d (ash: add support for INT trap). These changes don't alter the default WIN32 build.
* drop: cdrop and pdrop don't need shellRon Yorston2023-03-231-2/+10
| | | | | | | | | The cdrop and pdrop variants don't require the binary to include a shell. Removing this dependency makes it possible to build cdrop/pdrop as a much smaller standalone binaries. Update the default configuration to build a standalone make binary to exclude drop/cdrop/pdrop.
* win32: changes to console mode handlingRon Yorston2023-03-051-1/+1
| | | | | | | | | | | | | | | | | | | Add the environment variable BB_TERMINAL_MODE as a more general way of controlling console/terminal mode setting. The default remains unchanged: use virtual terminal mode for output if possible but fall back to the console API with emulated ANSI escape sequences. Currently valid settings are: 0 Force use of console mode 1 Force use of virtual terminal mode for output 5 Prefer virtual terminal mode for output, fall back to console Other values won't do anything useful until code elsewhere has been updated. BB_SKIP_ANSI_EMULATION remains available for backwards compatibility. If both variables are set BB_TERMINAL_MODE takes precedence.
* make: make + sh configurationRon Yorston2022-11-101-0/+1223
Add a configuration that just includes make and a shell. Add 'pdpmake' as an alias for 'make'.