You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear Developer,
The below errors are output when attempting to build ("RELEASE=1 make"). The build system is a PowerPC 970 x4 running a derivative of Debian Bookworm 32-bit userland on 64-bit kernel 6.0.
src/mdsprite.c:590:64: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]
590 | if (kread(fil,(char *)m->uvs,m->numuv*sizeof(md2uv_t)) != m->numuv*sizeof(md2uv_t))
| ^~
src/mdsprite.c:596:68: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]
596 | if (kread(fil,(char *)m->tris,m->numtris*sizeof(md2tri_t)) != m->numtris*sizeof(md2tri_t))
| ^~
src/mdsprite.c:613:43: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
613 | for (i = m->numframes-1; i>=0; i--) {
| ^~
src/mdsprite.c:625:14: warning: comparison of unsigned expression in '< 0' is always false [-Wtype-limits]
625 | if (i<0) i=0;
| ^
src/mdsprite.c: In function 'md3load':
src/mdsprite.c:936:30: error: 'i' undeclared (first use in this function)
936 | for (i=s->numtris-1;i>=0;i--) {
| ^
src/mdsprite.c:936:30: note: each undeclared identifier is reported only once for each function it appears in
src/mdsprite.c:937:38: error: 'j' undeclared (first use in this function)
937 | for (j=2;j>=0;j--) s->tris[i].i[j] = B_LITTLE32(s->tris[i].i[j]);
| ^
make[1]: *** [Makefile:224: src/mdsprite.o] Error 1
make[1]: Leaving directory '/media/fienix/MediaDrive/fienix/evo_6.0/Packages-TODO/8-NewBuilds/jfsw/jfbuild'
make: *** [Makefile:226: jfbuild/libengine.a] Error 2
The text was updated successfully, but these errors were encountered:
Dear Developer,
The below errors are output when attempting to build ("RELEASE=1 make"). The build system is a PowerPC 970 x4 running a derivative of Debian Bookworm 32-bit userland on 64-bit kernel 6.0.
The text was updated successfully, but these errors were encountered: