Temporary remove zfunc test on ARM which generates a relocation error. Waiting for a fix

This commit is contained in:
Christian Jullien 2018-12-20 08:44:47 +01:00
parent 8494f2c318
commit adfcf3b1dd
1 changed files with 9 additions and 1 deletions

View File

@ -15,10 +15,18 @@ void qfunc()
printf("qfunc()\n");
}
#if !defined(__ARMEL__)
/*
* At least on ARM (like RPi), zfunc below fails with something like:
* +tcc: error: can't relocate value at 1ef93bc,1
* Test is temporary removed for this architecture until ARM maintainers
* see what happens with this test.
*/
void zfunc()
{
((void (*)(void))0) ();
((void (*)(void))0) ();
}
#endif
int main()
{