Replies: 1 comment
-
I ran into the same issue, I solved it by changing |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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