Koute
Koute
> Why does it print so much verbose rustc stuff only when run from justfile? It looks like either *something* is setting `RUST_LOG`, or perhaps `env_logger` turns the logging on...
Hmm... can you explain this in more detail? Or preferably make a minimal reproduction of the problem. Assuming a crate like this: ``` #[macro_use] extern crate stdweb; #[cfg(not(test))] fn a()...
@CryZe Hmm.... looks like it works for me? * `livesplit` `de920cd90a3a718e37697f709d2f6fcdbf6cc9d1` * `rustc `1.29.0-nightly (64f7de921 2018-07-12)` * newest `cargo-web` from `master` ``` diff --git a/src/platform/wasm/mod.rs b/src/platform/wasm/mod.rs index f7a7176..10a1cdb 100644 ---...
Definitely! Although instead of putting those on the command line they should be specified in `Web.toml`. (In general I'd like to *never* have to require the users to pass any...
I don't see why not, although it would probably be better to have this as a `Web.toml` attribute?
Yep. This is something I was planning on adding myself anyway. (: Right now I'm switching gears a little to `stdweb` so it will take some time until I can...
The `emcc.bat` needs to be in your `PATH` for it to work, so I guess you should check whenever it really is? Also on a side note - I'd love...
1. I have no idea. Does `emsdk_env.bat` set up the PATH properly? 2. That's interesting; it looks like it thinks the `main` symbol is not defined for some reason...? Do...
Hmm... can you try making a new crate with `cargo new --bin foobar` and then try to `cargo web build` it?
Can you now try to add a `Web.toml`, add a `prepend-js` key (Look at `cargo-web`'s README on how to do it.) and try to compile that?