Error:#11:Global symbol table overflow

Bug reports (if you don't/won't have a Github account)
Post Reply
joaopa
Member
Posts: 46
Joined: Sat Mar 15, 2014 5:42 pm

Error:#11:Global symbol table overflow

Post by joaopa »

I received this error when compiling eigenmath. I did all the changes to be a C program instead of a C++ one. With gcc, everything is fine. Compiling and running the programm is OK with gcc.

What means this error and how can I fix it?

Thanks in advance
alvin
Well known member
Posts: 1872
Joined: Mon Jul 16, 2007 7:39 pm

Post by alvin »

joaopa wrote:I received this error when compiling eigenmath. I did all the changes to be a C program instead of a C++ one. With gcc, everything is fine. Compiling and running the programm is OK with gcc.
What means this error and how can I fix it?
The global symbol table is statically created and can hold a max of 1024 symbols. So this program has more than 1024 global symbols.

I've doubled the size. If you're running windows you can replace sccz80.exe in z88dk/bin with this:
https://drive.google.com/file/d/0B6XhJJ ... sp=sharing

or you can wait for the next nightly build for updated files.
Post Reply