diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/m/tek4300.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/m/tek4300.h b/src/m/tek4300.h index 59acacb8f54..3fe5b6c9c5c 100644 --- a/src/m/tek4300.h +++ b/src/m/tek4300.h | |||
| @@ -92,3 +92,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 92 | /* The entry-point label (start of text segment) is `start', not `__start'. */ | 92 | /* The entry-point label (start of text segment) is `start', not `__start'. */ |
| 93 | 93 | ||
| 94 | #define DEFAULT_ENTRY_ADDRESS start | 94 | #define DEFAULT_ENTRY_ADDRESS start |
| 95 | |||
| 96 | /* Use the system's malloc calls, gmalloc.c won't work for us. */ | ||
| 97 | |||
| 98 | #define SYSTEM_MALLOC | ||
| 99 | |||
| 100 | /* In building xmakefile, "cc -E -g" forcibly reads from stdin. Since we | ||
| 101 | can't remove the CFLAGS from that "cc -E" invocation, make sure we | ||
| 102 | never pass -g. If you want to debug, remove the following, and fix | ||
| 103 | src/Makefile.in so it doesn't pass ${CFLAGS} when creating xmakefile. */ | ||
| 104 | |||
| 105 | #define C_DEBUG_SWITCH | ||