I'm having an issue running commands with spaces, e.g.:
cmake -G "MinGW Makefiles" .
From a quick google and reading of, I believe the $@ at the bottom of the crossbuild script just needs to be enclosed in quotes in order to resolve:
exec "${binary}" "$@"
I'm having an issue running commands with spaces, e.g.:
cmake -G "MinGW Makefiles" .
From a quick google and reading of, I believe the
$@
at the bottom of the crossbuild script just needs to be enclosed in quotes in order to resolve:exec "${binary}" "$@"