Workaround: edit the file https://github.com/jacius/nice-ffi/blob/master/lib/nice-ffi/pathset.rb:456 ``` paths = @paths.collect{ |regexp,ps| regexp =~ os ? ps : [] }.flatten ``` replace by ``` paths = @paths.collect{ |regexp,ps| regexp =~ "windows" ? ps : [] }.flatten ```