aboutsummaryrefslogtreecommitdiff
path: root/configs/make64_defconfig (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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'.