mirror of
https://github.com/mirror/make.git
synced 2025-01-14 22:30:39 +08:00
c5bfa40044
In this mode we still collect all the output from a given target and dump it at once. However we don't treat recursive lines any differently from non-recursive lines. Also we don't print enter/leave messages after every dump. However we do ensure that we always print them once to stdout, so the parent make will collect it properly.
48 lines
1.7 KiB
C
48 lines
1.7 KiB
C
/* Output to stdout / stderr for GNU make
|
|
Copyright (C) 2013 Free Software Foundation, Inc.
|
|
This file is part of GNU Make.
|
|
|
|
GNU Make is free software; you can redistribute it and/or modify it under the
|
|
terms of the GNU General Public License as published by the Free Software
|
|
Foundation; either version 3 of the License, or (at your option) any later
|
|
version.
|
|
|
|
GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
struct output
|
|
{
|
|
int out;
|
|
int err;
|
|
unsigned int syncout:1; /* True if we want to synchronize output. */
|
|
};
|
|
|
|
extern struct output *output_context;
|
|
|
|
#define OUTPUT_SET(_new) do{ if ((_new)->syncout) output_context = (_new); }while(0)
|
|
#define OUTPUT_UNSET() do{ output_context = NULL; }while(0)
|
|
|
|
FILE *output_tmpfile (char **, const char *);
|
|
|
|
/* Initialize and close a child output structure: if NULL do this program's
|
|
output (this should only be done once). */
|
|
void output_init (struct output *out);
|
|
void output_close (struct output *out);
|
|
|
|
/* In situations where output may be about to be displayed but we're not
|
|
sure if we've set it up yet, call this. */
|
|
void output_start (void);
|
|
|
|
/* Show a message on stdout or stderr. Will start the output if needed. */
|
|
void outputs (int is_err, const char *msg);
|
|
|
|
#ifdef OUTPUT_SYNC
|
|
int output_tmpfd (void);
|
|
/* Dump any child output content to stdout, and reset it. */
|
|
void output_dump (struct output *out);
|
|
#endif
|