bentorkington/sf2ww

Compilation fails with GCC-11

xcom169 opened this issue · 10 comments

Hello All,

Compilation fails with GCC-11 on Arch Linux:

RedHammer/redhammer.c:193:15: error: expected ‘;’ before ‘}’ token
193 | return num
| ^
| ;
194 | #endif
195 | }
| ~

RedHammer/redhammer.c:202:15: error: expected ‘;’ before ‘}’ token
202 | return num
| ^
| ;
203 | #endif
204 | }
| ~

thanks @xcom169, I've added the missing semicolons, and it should build now.

This escaped detection so far because I haven't tested a build on a big-endian machine, so that code that failed is #ifdef'd out. Can you confirm you're actually building on a big-endian CPU? Otherwise, if you're building on x86 for example, the __LITTLE_ENDIAN__ flag should be set, and that code should not have actually been encountered.

[cont'd] if you do have a big endian machine, it'd be good to know if that build runs okay and has no bugs that the little endian build doesn't also. The last time I tested this on big endian was about 10 years ago. I've got an old G4 iMac in storage with a dead hard drive I've been meaning to resurrect to test the BE build

Okay, I guess something's wrong with the script if it's trying to compile for BE, will have a look, thanks

Can't repro this with gcc-10 on Debian. Check your compiler is defining either __i386__ or __amd64__ I guess

I need to update the docs to include the cmocka dependency (for unit tests) and also allow the project to build without tests if this dep is not found. In the meantime, cmocha is available for Arch Linux, so you should be able to install that to get the build working

@xcom169 to help figure out what caused the initial issue, can you please run gcc -march=native -dM -E - </dev/null and paste the output here? Thanks.

Thanks! Installing cmocka helped.

@xcom169 thanks for that Timár

Looks like compilers aren't consistent about defining __LITTLE_ENDIAN__ so I need to use a more reliable way