When compiling the project I get an executable with not to many data.
When I now change the optimization from -OS to -O2 for the file render020.o, I get the relocation truncated error. Judging from the data size in picture above I would say that is wrong!?
To reproduce please try https://github.com/githubaf/SAM
Change optimization option in line 58 in Makefile.amiga
render020.o: src/render2.c
$(CC) $(CFLAGS) -m68020 -O2 -c $< -o render020.o
When compiling the project I get an executable with not to many data.
When I now change the optimization from -OS to -O2 for the file render020.o, I get the relocation truncated error. Judging from the data size in picture above I would say that is wrong!?
To reproduce please try https://github.com/githubaf/SAM Change optimization option in line 58 in Makefile.amiga render020.o: src/render2.c $(CC) $(CFLAGS) -m68020 -O2 -c $< -o render020.o