Replies: 2 comments 1 reply
-
I ran into the same issue, I solved it by changing |
Beta Was this translation helpful? Give feedback.
0 replies
-
I get the same message at runtime even that when cross-compiling with Plus, it also builds the frontend to fetch the wasm file with |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to cross compile from linux x64 to aarch64. On the x64 machine I put
bin-target-triple="aarch64-unknown-linux-gnu"
and compiled frontend and server using:LEPTOS_BIN_CARGO_COMMAND=cross cargo leptos build --release
. This works so far.I am not sure how to correctly execute the resulting binary on the aarch64 machine. I tried to directly call the executable:
./target/aarch64-unknown-linux-gnu/release/leptos-binary-test
:It seems, that some config is not correctly passed to the binary also since the port is the default port (which I modified).
Or is there some way to run the cross compiled binary with cargo leptos?
Beta Was this translation helpful? Give feedback.
All reactions