Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cargo cross compile #5

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions eclass/cargo.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ cargo_gen_config() {
[source.crates-io]
replace-with = "gentoo"
local-registry = "/nonexistant"

[target.armv7-unknown-linux-gnueabihf]
linker = "armv7a-unknown-linux-gnueabihf-gcc"

EOF
}

Expand All @@ -122,7 +126,7 @@ cargo_src_compile() {

export CARGO_HOME="${ECARGO_HOME}"

cargo build -j $(makeopts_jobs) $(usex debug "" --release) "$@" \
cargo build -v --target=armv7-unknown-linux-gnueabihf -j $(makeopts_jobs) $(usex debug "" --release) "$@" \
|| die "cargo build failed"
}

Expand All @@ -132,7 +136,7 @@ cargo_src_compile() {
cargo_src_install() {
debug-print-function ${FUNCNAME} "$@"

cargo install -j $(makeopts_jobs) --root="${D}/usr" $(usex debug --debug "") "$@" \
cargo install --target=armv7-unknown-linux-gnueabihf -j $(makeopts_jobs) --root="${D}/usr" $(usex debug --debug "") "$@" \
|| die "cargo install failed"
rm -f "${D}/usr/.crates.toml"

Expand Down