We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d0e1445 + 3c4930c commit a7c09b8Copy full SHA for a7c09b8
lib/ruby_wasm/build_system/product/zlib.rb
@@ -4,7 +4,7 @@ module RubyWasm
4
class ZlibProduct < AutoconfProduct
5
attr_reader :target
6
7
- ZLIB_VERSION = "1.2.13"
+ ZLIB_VERSION = "1.3"
8
9
def initialize(build_dir, target, toolchain)
10
@build_dir = build_dir
@@ -35,7 +35,8 @@ def build
35
FileUtils.rm_rf product_build_dir
36
37
system "curl -L https://zlib.net/zlib-#{ZLIB_VERSION}.tar.gz | tar xz",
38
- chdir: File.dirname(product_build_dir)
+ chdir: File.dirname(product_build_dir),
39
+ exception: true
40
41
system "#{tools_args.join(" ")} ./configure --static",
42
chdir: product_build_dir
0 commit comments