Forum Discussion
Altera_Forum
Honored Contributor
19 years agoIf you have any large local data structures try making them global to see if the problem goes away.
So instead of this: int main() int big_array[1024*1024]; ..... Make the array global: int big_array[1024*1024]; int main() ..... I hope that helps