| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 73c0a24 commit 320b576
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -67,15 +67,10 @@ source_set("zlib_common_headers") { | |||
| 67 | 67 | ] | |
| 68 | 68 | } | |
| 69 | 69 | ||
| 70 | - use_arm_neon_optimizations = false | ||
| 71 | - if ((current_cpu == "arm" || current_cpu == "arm64") && | ||
| 72 | - !(is_win && !is_clang)) { | ||
| 73 | - # TODO(ritownsend@google.com): Optimizations temporarily disabled for | ||
| 74 | - # Windows on Arm MSVC builds, see http://crbug.com/v8/10012. | ||
| 75 | - if (arm_use_neon) { | ||
| 76 | - use_arm_neon_optimizations = true | ||
| 77 | - } | ||
| 78 | - } | ||
| 70 | + # TODO(ritownsend@google.com): Optimizations temporarily disabled for | ||
| 71 | + # Windows on Arm MSVC builds, see http://crbug.com/v8/10012. | ||
| 72 | + use_arm_neon_optimizations = | ||
| 73 | + (current_cpu == "arm" || current_cpu == "arm64") && !(is_win && !is_clang) | ||
| 79 | 74 | ||
| 80 | 75 | use_x86_x64_optimizations = | |
| 81 | 76 | (current_cpu == "x86" || current_cpu == "x64") && !is_ios | |
@@ -367,7 +362,7 @@ component("zlib") { | |||
| 367 | 362 | configs -= [ "//build/config/compiler:chromium_code" ] | |
| 368 | 363 | configs += [ "//build/config/compiler:no_chromium_code" ] | |
| 369 | 364 | ||
| 370 | - if (zlib_symbols_visible) { | ||
| 365 | + if (is_posix && zlib_symbols_visible) { | ||
| 371 | 366 | configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] | |
| 372 | 367 | configs += [ "//build/config/gcc:symbol_visibility_default" ] | |
| 373 | 368 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,5 +2,5 @@ | |||
| 2 | 2 | // Refer to tools/dep_updaters/update-zlib.sh | |
| 3 | 3 | #ifndef SRC_ZLIB_VERSION_H_ | |
| 4 | 4 | #define SRC_ZLIB_VERSION_H_ | |
| 5 | - #define ZLIB_VERSION "1.3.1-63d7e16" | ||
| 5 | + #define ZLIB_VERSION "1.3.1-e00f703" | ||
| 6 | 6 | #endif // SRC_ZLIB_VERSION_H_ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments