Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(rtextures): TCC not being able to compile due to: 'emmintrin.h' n…
…ot found (#4707) define STBIR_NO_SIMD when __TINYC__ is defined so stb_image_resize2 will not include *mmintrin which are not supported by all compilers. There are similar checks for __TINYC__ already elswere in raylib and they are also mostly there to disable SIMD headers. Additionally, move similar check for stb_image, to be a little bit deeper. Before it was defining STBI_NO_SIMD without including stb_image It was also clashing with note, causing said note to make no sense. Fixes: #2994 Reference: nothings/stb#1738
- Loading branch information