We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59f593d commit 7e1a0ddCopy full SHA for 7e1a0dd
1 file changed
configs/components/runtime-openbolt.rb
@@ -3,8 +3,12 @@
3
pkg.environment 'PROJECT_SHORTNAME', 'bolt'
4
5
if platform.is_windows?
6
+ # Runtime dependencies of Ruby
7
lib_type = platform.architecture == 'x64' ? 'seh' : 'sjlj'
8
pkg.install_file "#{settings[:gcc_bindir]}/libgcc_s_#{lib_type}-1.dll",
9
"#{settings[:bindir]}/libgcc_s_#{lib_type}-1.dll"
10
+ pkg.install_file "#{settings[:gcc_bindir]}/libstdc++-6.dll", "#{settings[:bindir]}/libstdc++-6.dll"
11
+ pkg.install_file "#{settings[:gcc_bindir]}/libwinpthread-1.dll", "#{settings[:bindir]}/libwinpthread-1.dll"
12
+ pkg.install_file "#{settings[:tools_root]}/bin/zlib1.dll", "#{settings[:bindir]}/zlib1.dll"
13
end
14
0 commit comments