diff options
author | Tor Lillqvist <tml@collabora.com> | 2019-02-12 15:28:53 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2019-02-12 15:30:47 +0200 |
commit | b1fc81bed49dfa5b3aa6efa225273e1c0c873139 (patch) | |
tree | 9c13b93deee0d6305c09df1a8a9acb6cbbedf540 /external | |
parent | 7f71294ba699e509e64d03878c2dddbad62264eb (diff) |
The ARM Neon stuff is needed for ARM64, too (iOS at least)
Not sure why the code has now started to require that, even if have
used the same bundled libpng as for a long time.
Change-Id: I2da223bc46c24563ce9d170643c28cc5c93f7d56
Diffstat (limited to 'external')
-rw-r--r-- | external/libpng/StaticLibrary_libpng.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/libpng/StaticLibrary_libpng.mk b/external/libpng/StaticLibrary_libpng.mk index f500720616a2..dbbc3848c541 100644 --- a/external/libpng/StaticLibrary_libpng.mk +++ b/external/libpng/StaticLibrary_libpng.mk @@ -33,7 +33,7 @@ $(eval $(call gb_StaticLibrary_add_generated_cobjects,libpng,\ UnpackedTarball/libpng/pngwrite \ UnpackedTarball/libpng/pngwtran \ UnpackedTarball/libpng/pngwutil \ - $(if $(filter ARM,$(CPUNAME)),\ + $(if $(filter ARM ARM64,$(CPUNAME)),\ UnpackedTarball/libpng/arm/arm_init \ UnpackedTarball/libpng/arm/filter_neon_intrinsics \ ) \ |