Update to latest builds fixing "Insecure world writable dir" warnings

* Update to Rubinius 4.14 which fixes some segfaults.
This commit is contained in:
Benoit Daloze
2020-02-02 16:33:46 +01:00
parent 623e527949
commit 48481806ad
6 changed files with 20 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
require 'rbconfig'
require 'stringio'
puts "CPPFLAGS: #{RbConfig::CONFIG["CPPFLAGS"]}"
$stderr = StringIO.new
begin
system RbConfig.ruby, "-e", "p :OK"
out = $stderr.string
ensure
$stderr = STDERR
end
abort out unless out.empty?