Bison and embedded systems

2005-04-25 Thread Julian Gryffin
Hi, I need some help with Bison on embedded Systems. I have a ROM with only few memory. Bison is using dynamic memory in the C-file it built. Is there a possibility to prevent it using dynamic memory? Greetings, Julian P.S: Sorry for my bad English ;) -- +++ Sparen beginnt mit GMX DSL: http

Re: Bison and embedded systems

2005-04-25 Thread Hans Aberg
At 11:29 +0200 2005/04/25, Julian Gryffin wrote: I need some help with Bison on embedded Systems. I have a ROM with only few memory. Bison is using dynamic memory in the C-file it built. Is there a possibility to prevent it using dynamic memory? My guess is that you do not use Bison on the embedded

Re: Bison and embedded systems

2005-04-25 Thread Paul Eggert
At 11:29 +0200 2005/04/25, Julian Gryffin wrote: >Bison is using dynamic memory in the C-file it built. Is there a >possibility to prevent it using dynamic memory? If by "dynamic memory" you mean "malloc or alloca", then yes, it's easy: #define YYSTACK_ALLOC(size) 0

Re: Bison and embedded systems

2005-04-25 Thread Alfonso Urdaneta
Paul Eggert wrote: If by "dynamic memory" you mean "malloc or alloca", then yes, it's easy: #define YYSTACK_ALLOC(size) 0 that _is_ easy. ;] -- alfonso e. urdaneta www.red82.com - are you ready ? ___ Help-bison@gnu.org http://lists.gnu.org/mailman/listin