Jorge Villatoro

Results 24 comments of Jorge Villatoro
trafficstars

Hm this is what I did, I have compiled `app.wasm` and it currently exists in that directory. ``` jorge@jorge-devbox:~/tmp/go-app-bug$ tree /tmp/goappweb/ /tmp/goappweb/ └── app.wasm 0 directories, 1 file ``` I...

Ahh I see now, you mean that I need a `web` subdirectory in there ok, I will try that thanks! In the screenshot it looks like the browser is attempting...

So with this change, I see a few new errors in the web console: ``` jorge@jorge-devbox:~/tmp/go-app-bug$ tree /tmp/goappweb/ /tmp/goappweb/ └── web └── app.wasm 1 directory, 1 file ```

The following change to the original code here seems to get this working: ```go package main import ( "log" "net/http" "github.com/maxence-charriere/go-app/v9/pkg/app" ) type hello struct { app.Compo } func (h...

Walk is useful for sure and enables someone to implement this themselves if necessary. I'm not sure what the best API would be, maybe an `EnvUsage bool` flag in the...

I can confirm that adding an `--output_base` flag works around this issue for us. The way this issue materialized for us was that some editor integrations were invoking tools that...

Interesting, we did the same but we used the `external/go_sdk` from our main output base (probably incorrectly). Things seem to still work just fine though.

I'm assuming you're hitting some kind of a chicken and egg problem. When the editor boots it probably is looking for that external go_sdk which hasn't been set up yet...

I ran into the same thing with libx264 (although in my case I was just allowing a system installed nasm to run) and I solved it by setting `configure_prefix` like...

ffmpeg builds relatively easily with `rules_foreign_cc`, I've gotten something like the following to work: ``` configure_make( name = "ffmpeg", args = ["-j16"], configure_options = [ "--disable-shared", "--enable-static", "--disable-doc", "--x86asmexe=$$EXT_BUILD_DEPS/nasm/bin/nasm", ],...