diff options
| -rw-r--r-- | meta/classes-recipe/cargo_common.bbclass | 6 | ||||
| -rw-r--r-- | meta/classes-recipe/rust-common.bbclass | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/meta/classes-recipe/cargo_common.bbclass b/meta/classes-recipe/cargo_common.bbclass index 509aa195c5..48cdd69bca 100644 --- a/meta/classes-recipe/cargo_common.bbclass +++ b/meta/classes-recipe/cargo_common.bbclass | |||
| @@ -28,10 +28,10 @@ export PKG_CONFIG_ALLOW_CROSS = "1" | |||
| 28 | # Don't instruct cargo to use crates downloaded by bitbake. Some rust packages, | 28 | # Don't instruct cargo to use crates downloaded by bitbake. Some rust packages, |
| 29 | # for example the rust compiler itself, come with their own vendored sources. | 29 | # for example the rust compiler itself, come with their own vendored sources. |
| 30 | # Specifying two [source.crates-io] will not work. | 30 | # Specifying two [source.crates-io] will not work. |
| 31 | CARGO_DISABLE_BITBAKE_VENDORING ?= "0" | 31 | CARGO_DISABLE_BITBAKE_VENDORING ??= "0" |
| 32 | 32 | ||
| 33 | # Used by libstd-rs to point to the vendor dir included in rustc src | 33 | # Used by libstd-rs to point to the vendor dir included in rustc src |
| 34 | CARGO_VENDORING_DIRECTORY ?= "${CARGO_HOME}/bitbake" | 34 | CARGO_VENDORING_DIRECTORY ??= "${CARGO_HOME}/bitbake" |
| 35 | 35 | ||
| 36 | # The directory of the Cargo.toml relative to the root directory, per default | 36 | # The directory of the Cargo.toml relative to the root directory, per default |
| 37 | # assume there's a Cargo.toml directly in the root directory | 37 | # assume there's a Cargo.toml directly in the root directory |
| @@ -40,7 +40,7 @@ CARGO_SRC_DIR ??= "" | |||
| 40 | # The actual path to the Cargo.toml | 40 | # The actual path to the Cargo.toml |
| 41 | CARGO_MANIFEST_PATH ??= "${S}/${CARGO_SRC_DIR}/Cargo.toml" | 41 | CARGO_MANIFEST_PATH ??= "${S}/${CARGO_SRC_DIR}/Cargo.toml" |
| 42 | 42 | ||
| 43 | CARGO_RUST_TARGET_CCLD ?= "${RUST_TARGET_CCLD}" | 43 | CARGO_RUST_TARGET_CCLD ??= "${RUST_TARGET_CCLD}" |
| 44 | cargo_common_do_configure () { | 44 | cargo_common_do_configure () { |
| 45 | mkdir -p ${CARGO_HOME}/bitbake | 45 | mkdir -p ${CARGO_HOME}/bitbake |
| 46 | 46 | ||
diff --git a/meta/classes-recipe/rust-common.bbclass b/meta/classes-recipe/rust-common.bbclass index ae96d9c5b1..6940093e59 100644 --- a/meta/classes-recipe/rust-common.bbclass +++ b/meta/classes-recipe/rust-common.bbclass | |||
| @@ -16,8 +16,8 @@ FILES:${PN}-dbg += "${rustlibdir}/.debug" | |||
| 16 | RUSTLIB = "-L ${STAGING_DIR_HOST}${rustlibdir}" | 16 | RUSTLIB = "-L ${STAGING_DIR_HOST}${rustlibdir}" |
| 17 | RUST_DEBUG_REMAP = "--remap-path-prefix=${WORKDIR}=${TARGET_DBGSRC_DIR}" | 17 | RUST_DEBUG_REMAP = "--remap-path-prefix=${WORKDIR}=${TARGET_DBGSRC_DIR}" |
| 18 | RUSTFLAGS += "${RUSTLIB} ${RUST_DEBUG_REMAP}" | 18 | RUSTFLAGS += "${RUSTLIB} ${RUST_DEBUG_REMAP}" |
| 19 | RUSTLIB_DEP ?= "libstd-rs" | 19 | RUSTLIB_DEP ??= "libstd-rs" |
| 20 | RUST_PANIC_STRATEGY ?= "unwind" | 20 | RUST_PANIC_STRATEGY ??= "unwind" |
| 21 | 21 | ||
| 22 | def target_is_armv7(d): | 22 | def target_is_armv7(d): |
| 23 | '''Determine if target is armv7''' | 23 | '''Determine if target is armv7''' |
