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.
1 parent cfd8df7 commit 63b3ac8Copy full SHA for 63b3ac8
lib/ruby_wasm/build_system/product/openssl.rb
@@ -31,6 +31,7 @@ def name
31
32
def configure_args
33
args = %w[
34
+ gcc
35
-static
36
-no-asm
37
-no-threads
@@ -64,7 +65,7 @@ def build
64
65
system "./Configure #{configure_args.join(" ")}", chdir: product_build_dir
66
# Use "install_sw" instead of "install" because it tries to install docs and it's very slow.
67
# OpenSSL build system doesn't have well support for parallel build, so force -j1.
- system "make -j1 install_sw DESTDIR=#{destdir} CNF_CFLAGS='' CNF_LDFLAGS=''", chdir: product_build_dir
68
+ system "make -j1 install_sw DESTDIR=#{destdir}", chdir: product_build_dir
69
end
70
71
0 commit comments