diff options
author | Eli Zaretskii <eliz@gnu.org> | 2019-03-09 08:44:56 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2019-03-09 08:44:56 +0200 |
commit | e4adb93903d4ae0b7ab2b5004364e50627df95f7 (patch) | |
tree | 75e41ba3c39b128c7b0a8de192851dd4200da786 /gdb/posix-hdep.c | |
parent | 4639b61ae3bf7c959f35debcb2c6a204fa0b4f1c (diff) | |
download | gdb-e4adb93903d4ae0b7ab2b5004364e50627df95f7.zip gdb-e4adb93903d4ae0b7ab2b5004364e50627df95f7.tar.gz gdb-e4adb93903d4ae0b7ab2b5004364e50627df95f7.tar.bz2 |
Support styling on native MS-Windows console
gdb/ChangeLog:
2019-03-08 Eli Zaretskii <eliz@gnu.org>
PR/24315
* utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
on MS-Windows if $TERM is not defined.
* cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
* posix-hdep.c (gdb_console_fputs):
* mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
functions.
* ui-file.h (gdb_console_fputs): Add prototype.
* ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
back to fputs only if the former returns zero.
Diffstat (limited to 'gdb/posix-hdep.c')
-rw-r--r-- | gdb/posix-hdep.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/posix-hdep.c b/gdb/posix-hdep.c index 7911bc5..d0f467e 100644 --- a/gdb/posix-hdep.c +++ b/gdb/posix-hdep.c @@ -30,3 +30,11 @@ gdb_select (int n, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, { return select (n, readfds, writefds, exceptfds, timeout); } + +/* Host-dependent console fputs method. POSIX platforms always return + zero, to use the default C 'fputs'. */ +int +gdb_console_fputs (const char *buf, FILE *f) +{ + return 0; +} |