mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-04 16:06:49 +02:00
fix mips2 build target
tested with mips1 and mips2; this should cover 3/4 as well. fixes an ftbfs reported on the debian issue tracker: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785000 (cherry picked from commit bf46d0acffd0c7e2e70757e42090ad273639435a) Change-Id: I2458487c92bd638589fdfec5adb4f22102a5960c
This commit is contained in:
parent
326b5fb863
commit
2ff633c938
@ -73,7 +73,8 @@ extern "C" {
|
|||||||
#define WEBP_USE_NEON
|
#define WEBP_USE_NEON
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__mips__) && !defined(__mips64) && (__mips_isa_rev < 6)
|
#if defined(__mips__) && !defined(__mips64) && \
|
||||||
|
defined(__mips_isa_rev) && (__mips_isa_rev >= 1) && (__mips_isa_rev < 6)
|
||||||
#define WEBP_USE_MIPS32
|
#define WEBP_USE_MIPS32
|
||||||
#if (__mips_isa_rev >= 2)
|
#if (__mips_isa_rev >= 2)
|
||||||
#define WEBP_USE_MIPS32_R2
|
#define WEBP_USE_MIPS32_R2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user