I am developing software for working in an embedded environment where the use of dynamic memory is prohibited. Lex and Yacc are well suited for the application.
Can I customize Lex and Yacc to not use dynamic memory allocation at all?
Can I configure Lex and Yacc to use a predefined block of memory and therefore limit the use of dynamic memory to this predefined space?
Can I limit the use of dynamic memory to only initialize a program (i.e. when the program starts first)?
edit In response to TonyK, I want the analyzer not to use dynamic memory.
thanks
source share