Nathan Daly
Nathan Daly
> maybe `autosnoop` should simply add the following line to your program: `precompile(julia_main, (Array{String, 1},))` Unfortunately, it doesn't look like this simple precompile trick will work.. If I generalize correctly...
Cool!! So just simply adding `compile=all` at build-time, and `compile=no` at run-time, I was able to get a fully statically compiled binary working! And it did, indeed, start rendering its...
Haha damn, these apps are half a Gig each... yeesh. What's Electron 350MB for?? Anyway, i've uploaded them here for anyone following along, if you want to compare them yourself!...
Yeah that would be really awesome. So, I already have included a mechanism for listing the files you need: I meant to have the `-R` and `-L` serve this purpose....
But yes, i am definitely hoping to have this be generalizable!! My goal is that you can simply run this tool against your julia code (maybe having to make a...
And actually another thing that would be good to do would be to automatically update the dependency paths on any `.dylib`s you copy over, so you don't have to do...
!! That's amazing!! I'm glad to hear you got the bundle to work!! :D if you want anyone to beta test it, feel free to send it to me! :)...
> I would also like my app to work on Windows and Linux and I shall provide updates on those two as well. I'll try to get those two platforms...
> We also have to define and run [this](https://github.com/NHDaly/PaddleBattleJL/blob/master/main.jl#L484) function so that when we open the app, the PWD is appropriately changed. Hmm, are you also adding this `JULIA_HOME` fix?:...
(Also, i've made this a package, and called it `ApplicationBuilder.jl`. I copied `change_dir_if_bundle()` in there, but I'm still not sure it will work as-is, given the above problem I mentioned.)