From 7abf2c03d69bdc523acdcd708b710532a4c0d861 Mon Sep 17 00:00:00 2001 From: Detlef Riekenberg Date: Sat, 11 Mar 2023 14:13:23 +0100 Subject: [PATCH] fix: Do not define INCLUDE_STACK_SIZE twice We have that define already in tcc.h and changing the define in tcc.h breaks compilation of tcc without this fix. -- Regards ... Detlef --- tccrun.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tccrun.c b/tccrun.c index 8e851ee2..a6a82b93 100644 --- a/tccrun.c +++ b/tccrun.c @@ -535,7 +535,6 @@ static char *rt_elfsym(rt_context *rc, addr_t wanted_pc, addr_t *func_addr) return NULL; } -#define INCLUDE_STACK_SIZE 32 /* print the position in the source file of PC value 'pc' by reading the stabs debug information */