0001-Fix-runtime-error-with-uClibc.patch 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. Fix runtime error with uClibc
  2. Patch inspired by
  3. https://www.winehq.org/pipermail/wine-bugs/2011-September/288987.html
  4. http://git.alpinelinux.org/cgit/aports/tree/main/wine/uclibc-fmaxf-fminf.patch?id=c9b491b6099eec02a835ffd05539b5c783c6c43a
  5. Starting an app using mesa3d 10.5.x, Kodi for example, fails:
  6. /usr/lib/kodi/kodi.bin: symbol 'fminf': can't resolve symbol in lib '/usr/lib/dri/i965_dri.so'.
  7. libGL error: unable to load driver: i965_dri.so
  8. libGL error: driver pointer missing
  9. libGL error: failed to load driver: i965
  10. libGL error: unable to load driver: swrast_dri.so
  11. libGL error: failed to load driver: swrast
  12. This patch was rejected by upstream mesa3d:
  13. http://lists.freedesktop.org/archives/mesa-dev/2015-March/079436.html
  14. The real fix was committed to uClibc:
  15. http://git.uclibc.org/uClibc/commit/?id=6c4538905e65ceb203f59aaa9a61728e81c6bc0a
  16. Until the external toolchains do not contain this uClibc patch we keep this
  17. patch: http://lists.busybox.net/pipermail/buildroot/2015-March/123410.html
  18. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
  19. ---
  20. diff -uNr mesa-10.5.3.org/src/glsl/nir/nir_constant_expressions.c mesa-10.5.3/src/glsl/nir/nir_constant_expressions.c
  21. --- mesa-10.5.3.org/src/compiler/nir/nir_constant_expressions.c 2015-04-12 23:31:29.000000000 +0200
  22. +++ mesa-10.5.3/src/compiler/nir/nir_constant_expressions.c 2015-04-13 19:59:37.819786541 +0200
  23. @@ -48,6 +48,18 @@
  24. }
  25. #endif
  26. +#ifdef __UCLIBC__
  27. +float fmaxf(float a, float b)
  28. +{
  29. + return (a > b) ? a : b;
  30. +}
  31. +
  32. +float fminf(float a, float b)
  33. +{
  34. + return (a < b) ? a : b;
  35. +}
  36. +#endif
  37. +
  38. /**
  39. * Evaluate one component of packSnorm4x8.
  40. */