Ian Ker-Seymer

Results 149 comments of Ian Ker-Seymer

`rb-sys` supports both msvc and the gnu toolchains on windows (at least on github actions). you may need to explicitly set the toolchain if you want to use gnu? I'm...

Can you try `CARGO_TARGET_X86_64_PC_WINDOWS_GNU_LINKER=gcc bundle exec rake compile`? PS: Thanks for bearing with me here, the only way I have to test windows currently is through CI so your help...

this looks like some sort of encoding issue: ``` cannot find \xff\xfe: No such file or directory ``` I believe that code is a [byte-order mark](https://en.wikipedia.org/wiki/Byte_order_mark), and it is being...

I also saw [this commit which explicitly marks the coding of Ruby's `mkmf`](https://github.com/ruby/ruby/commit/e54cd2bd97b4da5e9a02ab35cdb3f75f4b645b06). I wonder if rbsys should do the same?

@dsisnero can you test [this patch](https://github.com/oxidize-rb/rb-sys/pull/151/files) out? Update your gemfile to be: ```ruby gem "rb_sys", github: "oxidize-rb/rb-sys", branch: "binwrite" ``` Then: ```sh rm -rf tmp bundle install bundle exec rake...

We need to hunt down this rogue BOM that appearing. I'm not sure where its sneaking in, can you help track it down? 1. What is you default external encoding?...

FWIW: I tried to get into a windows VM to expedite this, but I'm stuck on https://github.com/oneclick/rubyinstaller2/issues/308

I'd love to drop Make dependency here, but unfortunately it's fairly entrenched in the Ruby ecosystem and opting-out is non-trivial. At the very least, we'd need to change rake-compiler and...

Hmm yeah that looks like a potential bug. Thanks for the excellent report, btw. Will take a look!

It should, if it doesnt then it would be a bug. Can you post a small repro?