Last active
February 20, 2016 15:07
-
-
Save panyamin/8d7c03cfbf8d558b1e3f to your computer and use it in GitHub Desktop.
Ruby 2.3.0 on Cygwin x64 with backport patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: extmk.rb | |
=================================================================== | |
--- ext/extmk.rb (revision 53867) | |
+++ ext/extmk.rb (revision 53868) | |
@@ -494,7 +494,10 @@ | |
ext_prefix = "#{$top_srcdir}/ext" | |
exts = $static_ext.sort_by {|t, i| i}.collect {|t, i| t} | |
default_exclude_exts = | |
- if $mswin or $mingw | |
+ case | |
+ when $cygwin | |
+ %w'' | |
+ when $mswin, $mingw | |
%w'pty syslog' | |
else | |
%w'*win32*' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This new patch is the correct way to fix the issue with gem installation. Patch will be backported. See https://bugs.ruby-lang.org/issues/12071