Skip to content

Commit

Permalink
messing with build output verbosity
Browse files Browse the repository at this point in the history
Change-Id: I859f0ab2b90eb5f5d86178254068f74fda06d1fc
  • Loading branch information
cooljeanius committed Jan 10, 2024
1 parent 81e00be commit fcd086f
Show file tree
Hide file tree
Showing 27 changed files with 3,333 additions and 3,017 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/apple-gdb-1824-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
else \
echo "error, unhandled compiler!" >&2 && exit 1; \
fi
- run: cd src && make check-opcodes && sync && make check-intl
- run: cd src && sync && make check-opcodes && sync && make check-intl && sync
- run: cd src && make check-binutils
- run: cd src && make check-utils
- run: time (pwd && sync && ls && sync)
Expand Down
4 changes: 4 additions & 0 deletions libcheckpoint/cptest.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <errno.h> /* for errno */
#include <signal.h> /* for kill() */
#include <stdio.h> /* for fprintf() */
#include <string.h> /* for strerror() */

/* prototypes: */
extern int _gdbcp_cg_save(pid_t);
Expand Down Expand Up @@ -68,6 +69,9 @@ int main(void)
} else if (errno == ESRCH) {
fprintf(stderr,
"Uh oh, something must have happened to the child...\n");
} else {
fprintf(stderr, "Unhandled errno value: %d (%s).\n",
errno, strerror(errno));
}
} else {
printf("Killed.\n");
Expand Down
5 changes: 4 additions & 1 deletion macsbug/gdb_plugin_support/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,16 @@ $(SYMROOT)/gdb_plugin_support.o : $(OBJS)
du $(SYMROOT)/gdb_plugin_support.o; \
if test -x "`which sync`"; then sync; fi; \
if test -x "`which nm`"; then \
echo "`nm gdb_plugin_support.o | wc -l` symbols in gdb_plugin_support.o"; \
echo "`nm $@ | wc -l` symbols in $@"; \
fi; \
if test -x ../../src/binutils/size; then \
../../src/binutils/size $(SYMROOT)/gdb_plugin_support.o; \
elif test -x "`which size`"; then \
size $(SYMROOT)/gdb_plugin_support.o; \
fi; \
if test -x "`which strings`"; then \
echo "`strings $@ | wc -l` strings in $@"; \
fi; \
elif test -n "$(OBJS)"; then \
echo "OBJS are $(OBJS)"; \
fi
Expand Down
Loading

0 comments on commit fcd086f

Please sign in to comment.