Ingvar Stepanyan

Results 1089 comments of Ingvar Stepanyan

@bmeck Stage 3 is, not every codebase is using transpilers and edge features. I don't want to dig into that discussion, just explained why some codebases aren't migrated yet while...

`fn main()` doesn't make sense in raw Wasm (it only works for executables, so you need at least WASI). Regular `wasm32-unknown-unknown` is meant for libraries, and if you try exporting...

> Hey @d3lm, I'm sorry about that! I've opened up a draft PR, working on it. I'm guessing not, but have you had any luck?

> Which gets me back to one of the things I suggested: Make this an opt-in. That means on the other hand that such a flag could control three things:...

> Are there any reasons to use `build-std` for a tier 1 or 2 target that ships with official builds? Yes. `build-std` is also important/useful for WebAssembly, where you want...

Same here, I tried setting `always_configure(false)` but no effect, still rebuilds from scratch.

For now used a workaround ```rust let built_marker = out_dir.join(".built"); if !built_marker.exists() { cmake::/* ... */ std::fs::File::create(built_marker).unwrap(); } ``` this will likely cause issues when some flags change, but at...

Ahhh that's what's going on. Took a while to find out what's happening / find a relevant issue.

No, as mentioned in the last several comments, that one added WASI support not wasm-bindgen which this issue is about.

@pedrocr Are there plans to merge CR3 from the fork into mainstream?