From: David Edelsohn Date: Thu, 17 Apr 1997 12:41:19 +0000 (+0000) Subject: * sim-config.h (WITH_DEBUG): Provide default value of zero. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4b364b00cfb153d2371dc0b9f74d29dec432dbb6;p=binutils-gdb.git * sim-config.h (WITH_DEBUG): Provide default value of zero. --- diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 27e29153993..9ebf3e3bd53 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,6 +1,7 @@ Thu Apr 17 02:25:11 1997 Doug Evans * sim-options.c, sim-options.h: New files. + * sim-config.h (WITH_DEBUG): Provide default value of zero. * run.c (main): Check return value of sim_open. diff --git a/sim/common/sim-config.h b/sim/common/sim-config.h index 1205920ab88..7278b3ba604 100644 --- a/sim/common/sim-config.h +++ b/sim/common/sim-config.h @@ -416,7 +416,13 @@ extern int current_floating_point; /* Debugging: - Control the inclusion of debugging code. */ + Control the inclusion of debugging code. + Debugging is only turned on in rare circumstances [say during development] + and is not intended to be turned on otherwise. */ + +#ifndef WITH_DEBUG +#define WITH_DEBUG 0 +#endif /* Include the tracing code. Disabling this eliminates all tracing code */