Azure / meta-iotedge

Yocto layer for Azure IoT Edge
MIT License
52 stars 59 forks source link

thud not compatible with meta-rust HEAD? #37

Closed holagvk closed 4 years ago

holagvk commented 4 years ago

Describe the bug Unable to compile with meta-rust HEAD (be88d857a6ba9134abb795b3a34d3a839196335f)

To Reproduce

  1. Add the layers
  2. Compile

Expected behavior iotedge-cli should compile normally.

Logs

$ bitbake iotedge-cli
[...]
[...]
[...]
ERROR: iotedge-cli-1.0.8-r0 do_compile: Function failed: do_compile (log file is located at /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/temp/log.do_compile.24782)
ERROR: Logfile of failure stored in: /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/temp/log.do_compile.24782
Log data follows:
| DEBUG: Executing shell function do_compile
| NOTE: cargo = /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot-native/usr/bin/cargo
| NOTE: rustc =
| NOTE: cargo build -v --target arm-poky-linux-gnueabi --release
|     Updating git repository `https://github.com/Azure/hyperlocal-windows`
|     Updating git repository `https://github.com/Azure/mio-uds-windows.git`
|     Updating git repository `https://github.com/Azure/tokio-uds-windows.git`
|    Compiling libc v0.2.42
|    Compiling cfg-if v0.1.2
|    Compiling cc v1.0.15
|    Compiling byteorder v1.3.1
|    Compiling futures v0.1.24
|    Compiling lazy_static v1.3.0
|    Compiling unicode-xid v0.1.0
|    Compiling serde v1.0.84

[....]
[....]
[....]

|    Compiling linked-hash-map v0.3.0
|      Running `rustc --crate-name linked_hash_map /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/linked-hash-map-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 --cfg 'feature="serde"' --cfg 'feature="serde_impl"' --cfg 'feature="serde_test"' -C metadata=9ddf1d1d6ce60bc4 -C extra-filename=-9ddf1d1d6ce60bc4 --out-dir /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps --target arm-poky-linux-gnueabi -C linker=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps -L dependency=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern serde=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libserde-a93048c59156fa3c.rmeta --extern serde_test=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libserde_test-70db6facd39fab8b.rmeta --cap-lints allow -L /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
| error[E0713]: borrow may still be in use when destructor runs
|    --> /usr/src/debug/iotedge-cli/1.0.8-r0/cargo_home/bitbake/url-1.7.0/src/form_urlencoded.rs:261:40
|     |
| 259 | impl<'a> Target for ::UrlQuery<'a> {
|     |      -- lifetime `'a` defined here
| 260 |     fn as_mut_string(&mut self) -> &mut String { &mut self.url.serialization }
| 261 |     fn finish(self) -> &'a mut ::Url { self.url }
|     |                                        ^^^^^^^^ - here, drop of `self` needs exclusive access to `*self.url`, because the type `UrlQuery<'_>` implements the `Drop` trait
|     |                                        |
|     |                                        returning this value requires that `*self.url` is borrowed for `'a`
| 
|    Compiling tokio-threadpool v0.1.6
|      Running `rustc --crate-name tokio_threadpool /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/tokio-threadpool-0.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C metadata=7f2666776fd09d03 -C extra-filename=-7f2666776fd09d03 --out-dir /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps --target arm-poky-linux-gnueabi -C linker=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps -L dependency=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern crossbeam_deque=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libcrossbeam_deque-682cde0e99f8f571.rmeta --extern crossbeam_utils=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libcrossbeam_utils-2d44eac8bd722b16.rmeta --extern futures=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libfutures-a015e1792da071bb.rmeta --extern log=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/liblog-b8905e89877938b7.rmeta --extern num_cpus=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libnum_cpus-faced388d885ee1b.rmeta --extern rand=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/librand-b97aedc7c95a3d1b.rmeta --extern tokio_executor=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libtokio_executor-f94ea6b3952cada8.rmeta --cap-lints allow -L /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
| error: aborting due to previous error
| 
| For more information about this error, try `rustc --explain E0713`.
| error: could not compile `url`.
| 
| Caused by:
|   process didn't exit successfully: `rustc --crate-name url /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/url-1.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C metadata=e798a36d88fd2d07 -C extra-filename=-e798a36d88fd2d07 --out-dir /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps --target arm-poky-linux-gnueabi -C linker=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps -L dependency=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern idna=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libidna-8cc502f8d3b50bce.rmeta --extern matches=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libmatches-e2e6399699e7561c.rmeta --extern percent_encoding=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libpercent_encoding-1620468045528910.rmeta --cap-lints allow -L /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0` (exit code: 1)
| warning: build failed, waiting for other jobs to finish...
| error: build failed

Build System (please complete the following information):

Build Configuration:
BB_VERSION           = "1.40.0"
BUILD_SYS            = "x86_64-linux"
NATIVELSBSTRING      = "universal"
TARGET_SYS           = "arm-poky-linux-gnueabi"
MACHINE              = "raspberrypi3"
DISTRO               = "seesv"
DISTRO_VERSION       = "2.6.4"
TUNE_FEATURES        = "arm armv7ve vfp thumb neon vfpv4 callconvention-hard cortexa7"
TARGET_FPU           = "hard"
SDKMACHINE           = "x86_64"
meta                 
meta-poky            = "HEAD:51f6145f8f99a02df1dad937684f014b0172e72a"
meta-raspberrypi     = "HEAD:89bdf97beaf3b136c24c4d6f86c0bcbb47fe3043"
meta-oe              
meta-python          
meta-networking      
meta-initramfs       
meta-multimedia      
meta-filesystems     = "HEAD:446bd615fd7cb9bc7a159fe5c2019ed08d1a7a93"
meta-boot2qt         
meta-boot2qt-distro  
meta-raspberrypi-extras = "HEAD:6912408e3508d2dac2f9a26638b0db8fd3a0da74"
meta-mingw           = "HEAD:fa4ea76d93c87a2ad3ce88b052c282106b2761e4"
meta-qt5             = "HEAD:f7afa0a4e1348db01be88b9c36372842fb902136"
meta-mender-core     
meta-mender-raspberrypi = "HEAD:4014636a4684194d68e7d480b749211e7ab0c02a"
meta-rust            = "HEAD:be88d857a6ba9134abb795b3a34d3a839196335f"
meta-virtualization  = "HEAD:7685c7d415e0002c448007960837ae8898cd57a5"
meta-iotedge         = "HEAD:ffd829d144eef4e255af9f8b4bd814567114a700"
meta-seesv           = "azure-iot:820235a7b6908dffb3458b3466fff0e57eb37eb4"

Additional context It seems like a dependency error on url. However, the documentation of meta-iotedge recommends HEAD revision of meta-rust.

Should meta-rust be pinned to some other compatible revision?

Relevant issues on Github:

  1. https://github.com/servo/rust-url/commit/2efa106431e6fb15b73478f67e37cb307bac2be6
  2. https://github.com/MrAlex94/Waterfox/issues/1315
  3. https://github.com/rust-lang/rust/pull/64221 (Rust no longer downgrade NLL errors)
holagvk commented 4 years ago

With meta-rust pinned at 0f950f5e333a1c8999320bf18232144f3dd9c80e, iotedge-cli compiles. However, iotedge-daemon fails with:

[...]
Build Configuration:
BB_VERSION           = "1.40.0"
BUILD_SYS            = "x86_64-linux"
NATIVELSBSTRING      = "ubuntu-16.04"
TARGET_SYS           = "arm-poky-linux-gnueabi"
MACHINE              = "raspberrypi3"
DISTRO               = "seesv"
DISTRO_VERSION       = "2.6.4"
TUNE_FEATURES        = "arm armv7ve vfp thumb neon vfpv4 callconvention-hard cortexa7"
TARGET_FPU           = "hard"
SDKMACHINE           = "x86_64"
meta                 
meta-poky            = "HEAD:51f6145f8f99a02df1dad937684f014b0172e72a"
meta-raspberrypi     = "HEAD:89bdf97beaf3b136c24c4d6f86c0bcbb47fe3043"
meta-oe              
meta-python          
meta-networking      
meta-initramfs       
meta-multimedia      
meta-filesystems     = "HEAD:446bd615fd7cb9bc7a159fe5c2019ed08d1a7a93"
meta-boot2qt         
meta-boot2qt-distro  
meta-raspberrypi-extras = "HEAD:6912408e3508d2dac2f9a26638b0db8fd3a0da74"
meta-mingw           = "HEAD:fa4ea76d93c87a2ad3ce88b052c282106b2761e4"
meta-qt5             = "HEAD:f7afa0a4e1348db01be88b9c36372842fb902136"
meta-mender-core     
meta-mender-raspberrypi = "HEAD:4014636a4684194d68e7d480b749211e7ab0c02a"
meta-rust            = "HEAD:0f950f5e333a1c8999320bf18232144f3dd9c80e"
meta-virtualization  = "HEAD:7685c7d415e0002c448007960837ae8898cd57a5"
meta-iotedge         = "HEAD:ffd829d144eef4e255af9f8b4bd814567114a700"
meta-seesv           = "azure-iot:fc4e41c4594373240607e7d9cf395ab0b73ff816"
[...]
[...]
ERROR: iotedge-daemon-1.0.8-r0 do_compile: Function failed: do_compile (log file is located at /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/temp/log.do_compile.27013)
ERROR: Logfile of failure stored in: /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/temp/log.do_compile.27013
Log data follows:
| DEBUG: Executing shell function do_compile
| NOTE: cargo = /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/recipe-sysroot-native/usr/bin/cargo
| NOTE: rustc =
| NOTE: cargo build -v --target arm-poky-linux-gnueabi --release
|     Updating git repository `https://github.com/Azure/hyperlocal-windows`
|     Updating git repository `https://github.com/Azure/mio-uds-windows.git`
|     Updating git repository `https://github.com/Azure/tokio-uds-windows.git`
|    Compiling libc v0.2.42
|    Compiling cfg-if v0.1.2
|    Compiling futures v0.1.24
|    Compiling cc v1.0.15
|    Compiling byteorder v1.3.1
|    Compiling lazy_static v1.3.0
|    Compiling slab v0.4.1
|    Compiling unicode-xid v0.1.0
[...]
[...]
[...]
|      Running `rustc --crate-name workload workload/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C metadata=b6c5e4d7a884afd5 -C extra-filename=-b6c5e4d7a884afd5 --out-dir /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps --target arm-poky-linux-gnueabi -C linker=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps -L dependency=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern base64=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libbase64-7718d933690cd576.rmeta --extern failure=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libfailure-b29c70362ceba458.rmeta --extern futures=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libfutures-9445e420a627eb7c.rmeta --extern hyper=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libhyper-677148a312ad3684.rmeta --extern serde=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libserde-ded32a7c0e559431.rmeta --extern serde_derive=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libserde_derive-de98041c38a7353f.so --extern serde_json=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libserde_json-bdc52b52ab08d3af.rmeta --extern serde_yaml=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libserde_yaml-f1403bac445029ee.rmeta --extern typed_headers=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libtyped_headers-e0407becaf947723.rmeta --extern url=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/liburl-3694bac726337ba2.rmeta -L /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0=/usr/src/debug/iotedge-daemon/1.0.8-r0 -L native=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/build/backtrace-sys-829f3094567b1d14/out/.libs`
| error: trait objects without an explicit `dyn` are deprecated
|   --> workload/src/apis/workload_api.rs:37:14
|    |
| 37 |     ) -> Box<Future<Item = ::models::CertificateResponse, Error = Error<serde_json::Value>>>;
|    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future<Item = ::models::CertificateResponse, Error = Error<serde_json::Value>>`
|    |
| note: lint level defined here
|   --> workload/src/lib.rs:3:31
|    |
| 3  | #![deny(unused_extern_crates, warnings)]
|    |                               ^^^^^^^^
|    = note: `#[deny(bare_trait_objects)]` implied by `#[deny(warnings)]`
| 
| error: trait objects without an explicit `dyn` are deprecated
|   --> workload/src/apis/workload_api.rs:44:14
|    |
| 44 |     ) -> Box<Future<Item = ::models::CertificateResponse, Error = Error<serde_json::Value>>>;
|    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future<Item = ::models::CertificateResponse, Error = Error<serde_json::Value>>`
| 
| error: trait objects without an explicit `dyn` are deprecated
|   --> workload/src/apis/workload_api.rs:51:14
|    |
| 51 |     ) -> Box<Future<Item = ::models::DecryptResponse, Error = Error<serde_json::Value>>>;
|    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future<Item = ::models::DecryptResponse, Error = Error<serde_json::Value>>`
| 
| error: trait objects without an explicit `dyn` are deprecated
|   --> workload/src/apis/workload_api.rs:58:14
|    |
| 58 |     ) -> Box<Future<Item = ::models::EncryptResponse, Error = Error<serde_json::Value>>>;
|    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future<Item = ::models::EncryptResponse, Error = Error<serde_json::Value>>`
| 
| error: trait objects without an explicit `dyn` are deprecated
|   --> workload/src/apis/workload_api.rs:65:14
|    |
| 65 |     ) -> Box<Future<Item = ::models::SignResponse, Error = Error<serde_json::Value>>>;
|    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future<Item = ::models::SignResponse, Error = Error<serde_json::Value>>`
| 
| error: trait objects without an explicit `dyn` are deprecated
|   --> workload/src/apis/workload_api.rs:69:14
|    |
| 69 |     ) -> Box<Future<Item = ::models::TrustBundleResponse, Error = Error<serde_json::Value>>>;
|    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future<Item = ::models::TrustBundleResponse, Error = Error<serde_json::Value>>`
| 
| error: trait objects without an explicit `dyn` are deprecated
|   --> workload/src/apis/workload_api.rs:83:14
|    |
| 83 |     ) -> Box<Future<Item = ::models::CertificateResponse, Error = Error<serde_json::Value>>> {
|    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future<Item = ::models::CertificateResponse, Error = Error<serde_json::Value>>`
| 
| error: trait objects without an explicit `dyn` are deprecated
|    --> workload/src/apis/workload_api.rs:151:14
|     |
| 151 |     ) -> Box<Future<Item = ::models::CertificateResponse, Error = Error<serde_json::Value>>> {
|     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future<Item = ::models::CertificateResponse, Error = Error<serde_json::Value>>`
| 
| error: trait objects without an explicit `dyn` are deprecated
|    --> workload/src/apis/workload_api.rs:220:14
|     |
| 220 |     ) -> Box<Future<Item = ::models::DecryptResponse, Error = Error<serde_json::Value>>> {
|     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future<Item = ::models::DecryptResponse, Error = Error<serde_json::Value>>`
| 
| error: trait objects without an explicit `dyn` are deprecated
|    --> workload/src/apis/workload_api.rs:289:14
|     |
| 289 |     ) -> Box<Future<Item = ::models::EncryptResponse, Error = Error<serde_json::Value>>> {
|     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future<Item = ::models::EncryptResponse, Error = Error<serde_json::Value>>`
| 
| error: trait objects without an explicit `dyn` are deprecated
|    --> workload/src/apis/workload_api.rs:358:14
|     |
| 358 |     ) -> Box<Future<Item = ::models::SignResponse, Error = Error<serde_json::Value>>> {
|     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future<Item = ::models::SignResponse, Error = Error<serde_json::Value>>`
| 
| error: trait objects without an explicit `dyn` are deprecated
|    --> workload/src/apis/workload_api.rs:423:14
|     |
| 423 |     ) -> Box<Future<Item = ::models::TrustBundleResponse, Error = Error<serde_json::Value>>> {
|     |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future<Item = ::models::TrustBundleResponse, Error = Error<serde_json::Value>>`
| 
| error: trait objects without an explicit `dyn` are deprecated
|  --> workload/src/apis/client.rs:7:23
|   |
| 7 |     workload_api: Box<::apis::WorkloadApi>,
|   |                       ^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn (::apis::WorkloadApi)`
| 
| error: trait objects without an explicit `dyn` are deprecated
|   --> workload/src/apis/client.rs:22:36
|    |
| 22 |     pub fn workload_api(&self) -> &::apis::WorkloadApi {
|    |                                    ^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn (::apis::WorkloadApi)`
| 
| error: trait objects without an explicit `dyn` are deprecated
|   --> workload/src/apis/configuration.rs:19:27
|    |
| 19 |     pub uri_composer: Box<Fn(&str, &str) -> Result<Uri, Error>>,
|    |                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&str, &str) -> Result<Uri, Error>`
| 
| error: aborting due to 15 previous errors
| 
| error: could not compile `workload`.
| 
| Caused by:
|   process didn't exit successfully: `rustc --crate-name workload workload/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C metadata=b6c5e4d7a884afd5 -C extra-filename=-b6c5e4d7a884afd5 --out-dir /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps --target arm-poky-linux-gnueabi -C linker=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps -L dependency=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern base64=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libbase64-7718d933690cd576.rmeta --extern failure=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libfailure-b29c70362ceba458.rmeta --extern futures=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libfutures-9445e420a627eb7c.rmeta --extern hyper=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libhyper-677148a312ad3684.rmeta --extern serde=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libserde-ded32a7c0e559431.rmeta --extern serde_derive=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libserde_derive-de98041c38a7353f.so --extern serde_json=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libserde_json-bdc52b52ab08d3af.rmeta --extern serde_yaml=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libserde_yaml-f1403bac445029ee.rmeta --extern typed_headers=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/libtyped_headers-e0407becaf947723.rmeta --extern url=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/deps/liburl-3694bac726337ba2.rmeta -L /mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0=/usr/src/debug/iotedge-daemon/1.0.8-r0 -L native=/mnt/seesv-distro/build-raspberrypi3/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/iotedge-daemon/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-poky-linux-gnueabi/release/build/backtrace-sys-829f3094567b1d14/out/.libs` (exit code: 1)
| warning: build failed, waiting for other jobs to finish...
| error: build failed
kbumsik commented 4 years ago

I got the same issue. Even I switched to a quite old commit:

commit 969467c029422123aa5c445a1579ce23ff200795
Merge: 4c9068b 665213a
Author: Steven Walter <stevenrwalter@gmail.com>
Date:   Mon Dec 17 13:05:37 2018 -0500

    Merge pull request #222 from YoeDistro/yoe/mut

    libstd-rs: Depend on libunwind on musl builds

But I still get error:

DEBUG: Executing shell function do_compile
NOTE: cargo = /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot-native/usr/bin/cargo
NOTE: rustc = 
NOTE: cargo build -v --target arm-ostl-linux-gnueabi --release 
   Compiling proc-macro2 v0.4.19
   Compiling byteorder v1.3.1
   Compiling unicode-xid v0.1.0
   Compiling nodrop v0.1.12
   Compiling libc v0.2.42
   Compiling cfg-if v0.1.2
   Compiling cc v1.0.15
   Compiling memoffset v0.2.1
   Compiling crossbeam-utils v0.5.0
   Compiling lazy_static v1.3.0
   Compiling scopeguard v0.3.3
   Compiling lazycell v0.6.0
   Compiling typenum v1.10.0
   Compiling rand_core v0.2.1
   Compiling slab v0.4.1
   Compiling futures v0.1.24
   Compiling pkg-config v0.3.11
   Compiling version_check v0.1.3
   Compiling ryu v0.2.7
   Compiling failure_derive v0.1.2
   Compiling serde v1.0.84
   Compiling itoa v0.4.1
   Compiling fnv v1.0.6
   Compiling rustc-demangle v0.1.7
   Compiling openssl v0.10.12
   Compiling matches v0.1.6
   Compiling foreign-types-shared v0.1.1
   Compiling arrayref v0.3.4
   Compiling byte-tools v0.2.0
   Compiling bitflags v1.0.3
   Compiling native-tls v0.2.1
   Compiling unicode-normalization v0.1.5
     Running `rustc --crate-name build_script_build /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/proc-macro2-0.4.19/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="proc-macro"' -C metadata=63ae86250170909c -C extra-filename=-63ae86250170909c --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/proc-macro2-63ae86250170909c -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
     Running `rustc --crate-name build_script_build /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/byteorder-1.3.1/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=1952b976fe34ac33 -C extra-filename=-1952b976fe34ac33 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/byteorder-1952b976fe34ac33 -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
     Running `rustc --crate-name unicode_xid /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/unicode-xid-0.1.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' -C metadata=e884412bfa15afb7 -C extra-filename=-e884412bfa15afb7 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
     Running `rustc --crate-name nodrop /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/nodrop-0.1.12/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=8fb387bdc922aa82 -C extra-filename=-8fb387bdc922aa82 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name cfg_if /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/cfg-if-0.1.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=cca40f60b8a3c718 -C extra-filename=-cca40f60b8a3c718 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name cc /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/cc-1.0.15/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=3f51a5c15acea7f9 -C extra-filename=-3f51a5c15acea7f9 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
     Running `rustc --crate-name libc /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/libc-0.2.42/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="use_std"' -C metadata=4dfe3d115678ff89 -C extra-filename=-4dfe3d115678ff89 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name memoffset /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/memoffset-0.2.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=f3932dae53927221 -C extra-filename=-f3932dae53927221 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name crossbeam_utils /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/crossbeam-utils-0.5.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="use_std"' -C metadata=f64c2aa5906301c1 -C extra-filename=-f64c2aa5906301c1 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name lazy_static /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/lazy_static-1.3.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=20b7785c797f278d -C extra-filename=-20b7785c797f278d --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name scopeguard /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/scopeguard-0.3.3/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="use_std"' -C metadata=69a2de4d2dbd432e -C extra-filename=-69a2de4d2dbd432e --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name lazycell /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/lazycell-0.6.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=50aec98da0e00dfd -C extra-filename=-50aec98da0e00dfd --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name build_script_main /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/typenum-1.10.0/build/main.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 -C metadata=560f8627b08938bb -C extra-filename=-560f8627b08938bb --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/typenum-560f8627b08938bb -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
     Running `rustc --crate-name rand_core /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/rand_core-0.2.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="alloc"' --cfg 'feature="std"' -C metadata=6a8815b342611c17 -C extra-filename=-6a8815b342611c17 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name slab /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/slab-0.4.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=10e2a1f9297be9e0 -C extra-filename=-10e2a1f9297be9e0 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name futures /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/futures-0.1.24/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="use_std"' --cfg 'feature="with-deprecated"' -C metadata=a0e2df2b6f8f151d -C extra-filename=-a0e2df2b6f8f151d --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name pkg_config /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/pkg-config-0.3.11/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=c96fc1e4546aed60 -C extra-filename=-c96fc1e4546aed60 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
     Running `rustc --crate-name version_check /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/version_check-0.1.3/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=c1ea619551372a1c -C extra-filename=-c1ea619551372a1c --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
     Running `rustc --crate-name build_script_build /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/ryu-0.2.7/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 -C metadata=25086e3cab00bcef -C extra-filename=-25086e3cab00bcef --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/ryu-25086e3cab00bcef -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
     Running `rustc --crate-name build_script_build /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/failure_derive-0.1.2/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 -C metadata=670f1f832c7f1c26 -C extra-filename=-670f1f832c7f1c26 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/failure_derive-670f1f832c7f1c26 -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
     Running `rustc --crate-name build_script_build /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/serde-1.0.84/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=11341f7f3c6ffd3a -C extra-filename=-11341f7f3c6ffd3a --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/serde-11341f7f3c6ffd3a -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
     Running `rustc --crate-name itoa /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/itoa-0.4.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=606bc90fc486ee83 -C extra-filename=-606bc90fc486ee83 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name fnv /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/fnv-1.0.6/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=aea324208119e339 -C extra-filename=-aea324208119e339 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name build_script_build /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/openssl-0.10.12/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 -C metadata=2e0c39fc4e4a70c2 -C extra-filename=-2e0c39fc4e4a70c2 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/openssl-2e0c39fc4e4a70c2 -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
     Running `rustc --crate-name rustc_demangle /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/rustc-demangle-0.1.7/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=a61faccde669b9db -C extra-filename=-a61faccde669b9db --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name arrayref /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/arrayref-0.3.4/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=106b058178d83b41 -C extra-filename=-106b058178d83b41 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name matches /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/matches-0.1.6/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=810073fdb81da2a2 -C extra-filename=-810073fdb81da2a2 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name byte_tools /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/byte-tools-0.2.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=a1551b84611b3988 -C extra-filename=-a1551b84611b3988 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name foreign_types_shared /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/foreign-types-shared-0.1.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=a1a01b1a1eccfccb -C extra-filename=-a1a01b1a1eccfccb --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name bitflags /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/bitflags-1.0.3/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' -C metadata=3a76687c3b201571 -C extra-filename=-3a76687c3b201571 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name unicode_normalization /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/unicode-normalization-0.1.5/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=c4ed7236e39b602c -C extra-filename=-c4ed7236e39b602c --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name build_script_build /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/native-tls-0.2.1/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 -C metadata=a77fc7e021a8c10f -C extra-filename=-a77fc7e021a8c10f --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/native-tls-a77fc7e021a8c10f -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
   Compiling try-lock v0.2.2
   Compiling string v0.1.1
     Running `rustc --crate-name try_lock /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/try-lock-0.2.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=b40f6c3c8da52613 -C extra-filename=-b40f6c3c8da52613 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name string /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/string-0.1.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=7f7df0d06cb31ec5 -C extra-filename=-7f7df0d06cb31ec5 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling constant_time_eq v0.1.3
     Running `rustc --crate-name constant_time_eq /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/constant_time_eq-0.1.3/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=df354c092f7c1ac8 -C extra-filename=-df354c092f7c1ac8 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling indexmap v1.0.1
   Compiling num-traits v0.2.2
     Running `rustc --crate-name num_traits /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/num-traits-0.2.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=475fdc5fa85b2849 -C extra-filename=-475fdc5fa85b2849 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name indexmap /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/indexmap-1.0.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=462db3bfcdfa07f6 -C extra-filename=-462db3bfcdfa07f6 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling safemem v0.2.0
     Running `rustc --crate-name safemem /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/safemem-0.2.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=fe72a4b81de912ed -C extra-filename=-fe72a4b81de912ed --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling nix v0.11.0
     Running `rustc --crate-name build_script_build /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/nix-0.11.0/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 -C metadata=4a1d65c8931e3e15 -C extra-filename=-4a1d65c8931e3e15 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/nix-4a1d65c8931e3e15 -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
   Compiling httparse v1.2.4
     Running `rustc --crate-name httparse /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/httparse-1.2.4/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=dc2450bb7bc016c6 -C extra-filename=-dc2450bb7bc016c6 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling openssl-probe v0.1.2
   Compiling percent-encoding v1.0.1
     Running `rustc --crate-name openssl_probe /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/openssl-probe-0.1.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=d3cd4d6a5218ea5f -C extra-filename=-d3cd4d6a5218ea5f --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name percent_encoding /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/percent-encoding-1.0.1/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=32ede725253c8e0c -C extra-filename=-32ede725253c8e0c --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling void v1.0.2
     Running `rustc --crate-name void /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/void-1.0.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=2a341a8f262209d5 -C extra-filename=-2a341a8f262209d5 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling fake-simd v0.1.2
     Running `rustc --crate-name fake_simd /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/fake-simd-0.1.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=d5d03226a659c2e0 -C extra-filename=-d5d03226a659c2e0 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling consistenttime v0.2.0
     Running `rustc --crate-name consistenttime /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/consistenttime-0.2.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=6d241a2ad7ab1054 -C extra-filename=-6d241a2ad7ab1054 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling ucd-util v0.1.1
     Running `rustc --crate-name ucd_util /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/ucd-util-0.1.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=dfde782536f2498c -C extra-filename=-dfde782536f2498c --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling regex v0.2.11
     Running `rustc --crate-name build_script_build /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/regex-0.2.11/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' -C metadata=ffcb309c1e7ee5f7 -C extra-filename=-ffcb309c1e7ee5f7 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/regex-ffcb309c1e7ee5f7 -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
   Compiling hex v0.3.2
     Running `rustc --crate-name hex /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/hex-0.3.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=9c4923fd4e82a189 -C extra-filename=-9c4923fd4e82a189 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling utf8-ranges v1.0.0
   Compiling regex v1.0.2
     Running `rustc --crate-name utf8_ranges /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/utf8-ranges-1.0.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=ce04a2033141852a -C extra-filename=-ce04a2033141852a --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling linked-hash-map v0.5.1
   Compiling serde v0.8.23
     Running `rustc --crate-name linked_hash_map /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/linked-hash-map-0.5.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=08aa149f5198d4d9 -C extra-filename=-08aa149f5198d4d9 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name build_script_build /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/regex-1.0.2/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="use_std"' -C metadata=5271ba128fe5d6f6 -C extra-filename=-5271ba128fe5d6f6 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/regex-5271ba128fe5d6f6 -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow`
     Running `rustc --crate-name serde /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/serde-0.8.23/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=20529fcb56c4b91a -C extra-filename=-20529fcb56c4b91a --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling dtoa v0.4.2
     Running `rustc --crate-name dtoa /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/dtoa-0.4.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=864a141284e0a8a2 -C extra-filename=-864a141284e0a8a2 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling lazy_static v0.2.11
   Compiling unicode-width v0.1.4
     Running `rustc --crate-name lazy_static /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/lazy_static-0.2.11/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=f5257e1534b07353 -C extra-filename=-f5257e1534b07353 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name unicode_width /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/unicode-width-0.1.4/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' -C metadata=5d00de76200fd95a -C extra-filename=-5d00de76200fd95a --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling strsim v0.7.0
     Running `rustc --crate-name strsim /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/strsim-0.7.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=4278a519e066c71e -C extra-filename=-4278a519e066c71e --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling ansi_term v0.11.0
     Running `rustc --crate-name ansi_term /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/ansi_term-0.11.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=b3ac58b1a2133c3c -C extra-filename=-b3ac58b1a2133c3c --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling vec_map v0.8.0
   Compiling termcolor v0.3.6
     Running `rustc --crate-name termcolor /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/termcolor-0.3.6/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=2cbeb5963e54a82b -C extra-filename=-2cbeb5963e54a82b --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name vec_map /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/vec_map-0.8.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=7ab4cf82e6339fd5 -C extra-filename=-7ab4cf82e6339fd5 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling log v0.4.5
     Running `rustc --crate-name log /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/log-0.4.5/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=307797d9e038ff5c -C extra-filename=-307797d9e038ff5c --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern cfg_if=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libcfg_if-cca40f60b8a3c718.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling arrayvec v0.4.7
     Running `rustc --crate-name arrayvec /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/arrayvec-0.4.7/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=3347c520d830cccd -C extra-filename=-3347c520d830cccd --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern nodrop=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libnodrop-8fb387bdc922aa82.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling foreign-types v0.3.2
     Running `rustc --crate-name foreign_types /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/foreign-types-0.3.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=d0d588f1bc1d0bad -C extra-filename=-d0d588f1bc1d0bad --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern foreign_types_shared=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libforeign_types_shared-a1a01b1a1eccfccb.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling unicode-bidi v0.3.4
     Running `rustc --crate-name unicode_bidi /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/unicode-bidi-0.3.4/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' -C metadata=b87f30b62ba0b9f6 -C extra-filename=-b87f30b62ba0b9f6 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern matches=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libmatches-810073fdb81da2a2.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling proc-macro2 v0.3.8
     Running `rustc --crate-name proc_macro2 /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/proc-macro2-0.3.8/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="proc-macro"' -C metadata=d66c9e17958ad2fa -C extra-filename=-d66c9e17958ad2fa --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern unicode_xid=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libunicode_xid-e884412bfa15afb7.rlib --cap-lints allow`
   Compiling block-buffer v0.3.3
   Compiling unreachable v1.0.0
     Running `rustc --crate-name unreachable /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/unreachable-1.0.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=dea012feb0143ffb -C extra-filename=-dea012feb0143ffb --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern void=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libvoid-2a341a8f262209d5.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name block_buffer /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/block-buffer-0.3.3/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=6a61934f26d26af3 -C extra-filename=-6a61934f26d26af3 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern arrayref=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libarrayref-106b058178d83b41.rlib --extern byte_tools=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libbyte_tools-a1551b84611b3988.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/nix-4a1d65c8931e3e15/build-script-build`
     Running `/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/serde-11341f7f3c6ffd3a/build-script-build`
     Running `/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/ryu-25086e3cab00bcef/build-script-build`
   Compiling iovec v0.1.2
   Compiling net2 v0.2.32
     Running `rustc --crate-name net2 /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/net2-0.2.32/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="duration"' -C metadata=e27a6ec18ff4c522 -C extra-filename=-e27a6ec18ff4c522 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern cfg_if=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libcfg_if-cca40f60b8a3c718.rlib --extern libc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblibc-4dfe3d115678ff89.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name iovec /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/iovec-0.1.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=fa6d5f072ebe7820 -C extra-filename=-fa6d5f072ebe7820 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern libc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblibc-4dfe3d115678ff89.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling rand v0.5.4
     Running `rustc --crate-name rand /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/rand-0.5.4/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="alloc"' --cfg 'feature="cloudabi"' --cfg 'feature="default"' --cfg 'feature="fuchsia-zircon"' --cfg 'feature="libc"' --cfg 'feature="rand_core"' --cfg 'feature="std"' --cfg 'feature="winapi"' -C metadata=107f0c188e516af5 -C extra-filename=-107f0c188e516af5 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern libc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblibc-4dfe3d115678ff89.rlib --extern rand_core=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/librand_core-6a8815b342611c17.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling num_cpus v1.8.0
     Running `rustc --crate-name num_cpus /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/num_cpus-1.8.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=d455b0f739c7dee6 -C extra-filename=-d455b0f739c7dee6 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern libc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblibc-4dfe3d115678ff89.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling time v0.1.39
     Running `rustc --crate-name time /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/time-0.1.39/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=da30f74f3d965fc2 -C extra-filename=-da30f74f3d965fc2 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern libc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblibc-4dfe3d115678ff89.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling memchr v2.0.1
     Running `rustc --crate-name memchr /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/memchr-2.0.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="libc"' --cfg 'feature="use_std"' -C metadata=f017cb0380b6b659 -C extra-filename=-f017cb0380b6b659 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern libc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblibc-4dfe3d115678ff89.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling memchr v1.0.2
     Running `rustc --crate-name memchr /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/memchr-1.0.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="libc"' --cfg 'feature="use_std"' -C metadata=156263a3c1c915bc -C extra-filename=-156263a3c1c915bc --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern libc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblibc-4dfe3d115678ff89.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling atty v0.2.10
     Running `rustc --crate-name atty /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/atty-0.2.10/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=e456f904e00758c6 -C extra-filename=-e456f904e00758c6 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern libc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblibc-4dfe3d115678ff89.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/failure_derive-670f1f832c7f1c26/build-script-build`
     Running `/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/proc-macro2-63ae86250170909c/build-script-build`
     Running `/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/typenum-560f8627b08938bb/build-script-main`
   Compiling textwrap v0.9.0
   Compiling tabwriter v1.0.4
   Compiling unicase v2.1.0
     Running `rustc --crate-name textwrap /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/textwrap-0.9.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=206e5ff4518f77f2 -C extra-filename=-206e5ff4518f77f2 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern unicode_width=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libunicode_width-5d00de76200fd95a.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name build_script_build /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/unicase-2.1.0/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 -C metadata=b27c6a2292712282 -C extra-filename=-b27c6a2292712282 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/unicase-b27c6a2292712282 -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern version_check=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libversion_check-c1ea619551372a1c.rlib --cap-lints allow`
     Running `rustc --crate-name tabwriter /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/tabwriter-1.0.4/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' -C metadata=a7a7d19ce9254f85 -C extra-filename=-a7a7d19ce9254f85 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern unicode_width=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libunicode_width-5d00de76200fd95a.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/byteorder-1952b976fe34ac33/build-script-build`
   Compiling yaml-rust v0.4.0
   Compiling regex-syntax v0.5.6
   Compiling regex-syntax v0.6.6
   Compiling thread_local v0.3.5
     Running `rustc --crate-name yaml_rust /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/yaml-rust-0.4.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=b016d7855c6f0d7e -C extra-filename=-b016d7855c6f0d7e --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern linked_hash_map=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblinked_hash_map-08aa149f5198d4d9.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name thread_local /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/thread_local-0.3.5/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=9f7a8cbb7cfefde2 -C extra-filename=-9f7a8cbb7cfefde2 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern lazy_static=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblazy_static-20b7785c797f278d.rlib --extern unreachable=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libunreachable-dea012feb0143ffb.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name serde /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/serde-1.0.84/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=c4eb2815960dd924 -C extra-filename=-c4eb2815960dd924 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0 --cfg de_boxed_c_str --cfg de_rc_dst --cfg core_duration --cfg integer128 --cfg range_inclusive`
     Running `rustc --crate-name regex_syntax /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/regex-syntax-0.6.6/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=5bb852c92143b44f -C extra-filename=-5bb852c92143b44f --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern ucd_util=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libucd_util-dfde782536f2498c.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name nix /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/nix-0.11.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=d3869e8d2fad73ef -C extra-filename=-d3869e8d2fad73ef --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern bitflags=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libbitflags-3a76687c3b201571.rlib --extern cfg_if=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libcfg_if-cca40f60b8a3c718.rlib --extern libc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblibc-4dfe3d115678ff89.rlib --extern void=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libvoid-2a341a8f262209d5.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name regex_syntax /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/regex-syntax-0.5.6/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=a900b9b0df5851ff -C extra-filename=-a900b9b0df5851ff --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern ucd_util=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libucd_util-dfde782536f2498c.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name ryu /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/ryu-0.2.7/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=8e95fe7626fbef78 -C extra-filename=-8e95fe7626fbef78 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0 --cfg integer128 --cfg must_use_return`
   Compiling num-integer v0.1.36
     Running `rustc --crate-name num_integer /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/num-integer-0.1.36/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=44359a6ee7f1205e -C extra-filename=-44359a6ee7f1205e --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern num_traits=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libnum_traits-475fdc5fa85b2849.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling num-traits v0.1.43
     Running `rustc --crate-name num_traits /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/num-traits-0.1.43/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=5b06640093b65183 -C extra-filename=-5b06640093b65183 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern num_traits=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libnum_traits-475fdc5fa85b2849.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name proc_macro2 /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/proc-macro2-0.4.19/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="proc-macro"' -C metadata=dfb7040b7ee67b2a -C extra-filename=-dfb7040b7ee67b2a --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern unicode_xid=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libunicode_xid-e884412bfa15afb7.rlib --cap-lints allow --cfg use_proc_macro`
     Running `rustc --crate-name typenum /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/typenum-1.10.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=a27b08d246f252e6 -C extra-filename=-a27b08d246f252e6 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling crossbeam-epoch v0.5.2
     Running `rustc --crate-name byteorder /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/byteorder-1.3.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=e54361d30b05b745 -C extra-filename=-e54361d30b05b745 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0 --cfg byteorder_i128`
     Running `rustc --crate-name crossbeam_epoch /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/crossbeam-epoch-0.5.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="crossbeam-utils"' --cfg 'feature="default"' --cfg 'feature="lazy_static"' --cfg 'feature="use_std"' -C metadata=15e422874cc8a51d -C extra-filename=-15e422874cc8a51d --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern arrayvec=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libarrayvec-3347c520d830cccd.rlib --extern cfg_if=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libcfg_if-cca40f60b8a3c718.rlib --extern crossbeam_utils=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libcrossbeam_utils-f64c2aa5906301c1.rlib --extern lazy_static=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblazy_static-20b7785c797f278d.rlib --extern memoffset=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libmemoffset-f3932dae53927221.rlib --extern scopeguard=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libscopeguard-69a2de4d2dbd432e.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/regex-ffcb309c1e7ee5f7/build-script-build`
   Compiling aho-corasick v0.6.4
   Compiling nom v3.2.1
     Running `/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/regex-5271ba128fe5d6f6/build-script-build`
     Running `rustc --crate-name aho_corasick /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/aho-corasick-0.6.4/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=8233748f22c16f52 -C extra-filename=-8233748f22c16f52 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern memchr=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libmemchr-f017cb0380b6b659.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name nom /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/nom-3.2.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="memchr"' --cfg 'feature="std"' --cfg 'feature="stream"' -C metadata=4f5d2b54f7ada6b7 -C extra-filename=-4f5d2b54f7ada6b7 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern memchr=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libmemchr-156263a3c1c915bc.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/unicase-b27c6a2292712282/build-script-build`
   Compiling mio v0.6.14
     Running `rustc --crate-name mio /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/mio-0.6.14/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="with-deprecated"' -C metadata=76fd48c71cded2ea -C extra-filename=-76fd48c71cded2ea --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern iovec=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libiovec-fa6d5f072ebe7820.rlib --extern lazycell=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblazycell-50aec98da0e00dfd.rlib --extern libc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblibc-4dfe3d115678ff89.rlib --extern log=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblog-307797d9e038ff5c.rlib --extern net2=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libnet2-e27a6ec18ff4c522.rlib --extern slab=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libslab-10e2a1f9297be9e0.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling clap v2.31.2
     Running `rustc --crate-name unicase /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/unicase-2.1.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=d3f6ca513ee56887 -C extra-filename=-d3f6ca513ee56887 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0 --cfg __unicase__iter_cmp --cfg __unicase__defauler_hasher`
     Running `rustc --crate-name clap /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/clap-2.31.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="ansi_term"' --cfg 'feature="atty"' --cfg 'feature="color"' --cfg 'feature="default"' --cfg 'feature="strsim"' --cfg 'feature="suggestions"' --cfg 'feature="vec_map"' -C metadata=8733eb182d48fd12 -C extra-filename=-8733eb182d48fd12 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern ansi_term=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libansi_term-b3ac58b1a2133c3c.rlib --extern atty=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libatty-e456f904e00758c6.rlib --extern bitflags=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libbitflags-3a76687c3b201571.rlib --extern strsim=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libstrsim-4278a519e066c71e.rlib --extern textwrap=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libtextwrap-206e5ff4518f77f2.rlib --extern unicode_width=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libunicode_width-5d00de76200fd95a.rlib --extern vec_map=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libvec_map-7ab4cf82e6339fd5.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling idna v0.1.4
     Running `rustc --crate-name idna /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/idna-0.1.4/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=39c20396b428b1aa -C extra-filename=-39c20396b428b1aa --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern matches=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libmatches-810073fdb81da2a2.rlib --extern unicode_bidi=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libunicode_bidi-b87f30b62ba0b9f6.rlib --extern unicode_normalization=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libunicode_normalization-c4ed7236e39b602c.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling tokio-executor v0.1.5
     Running `rustc --crate-name tokio_executor /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/tokio-executor-0.1.5/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=c1e1076da4729036 -C extra-filename=-c1e1076da4729036 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern futures=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libfutures-a0e2df2b6f8f151d.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling want v0.0.6
     Running `rustc --crate-name want /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/want-0.0.6/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=778f48c7ec56beb7 -C extra-filename=-778f48c7ec56beb7 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern futures=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libfutures-a0e2df2b6f8f151d.rlib --extern log=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblog-307797d9e038ff5c.rlib --extern try_lock=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libtry_lock-b40f6c3c8da52613.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling futures-cpupool v0.1.8
     Running `rustc --crate-name futures_cpupool /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/futures-cpupool-0.1.8/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="futures"' --cfg 'feature="with-deprecated"' -C metadata=7a87935eeee44143 -C extra-filename=-7a87935eeee44143 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern futures=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libfutures-a0e2df2b6f8f151d.rlib --extern num_cpus=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libnum_cpus-d455b0f739c7dee6.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling bytes v0.4.8
     Running `rustc --crate-name bytes /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/bytes-0.4.8/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=a58959157f7ecadb -C extra-filename=-a58959157f7ecadb --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern byteorder=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libbyteorder-e54361d30b05b745.rlib --extern iovec=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libiovec-fa6d5f072ebe7820.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling base64 v0.9.1
     Running `rustc --crate-name base64 /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/base64-0.9.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=ebfba489c2e92a4d -C extra-filename=-ebfba489c2e92a4d --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern byteorder=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libbyteorder-e54361d30b05b745.rlib --extern safemem=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libsafemem-fe72a4b81de912ed.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling crossbeam-deque v0.6.1
     Running `rustc --crate-name crossbeam_deque /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/crossbeam-deque-0.6.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=119722bb2eb78a91 -C extra-filename=-119722bb2eb78a91 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern crossbeam_epoch=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libcrossbeam_epoch-15e422874cc8a51d.rlib --extern crossbeam_utils=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libcrossbeam_utils-f64c2aa5906301c1.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling generic-array v0.9.0
     Running `rustc --crate-name generic_array /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/generic-array-0.9.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=1183ae87d9afe14f -C extra-filename=-1183ae87d9afe14f --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern typenum=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libtypenum-a27b08d246f252e6.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling tokio-timer v0.2.6
     Running `rustc --crate-name tokio_timer /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/tokio-timer-0.2.6/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=1280a3271d2569df -C extra-filename=-1280a3271d2569df --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern crossbeam_utils=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libcrossbeam_utils-f64c2aa5906301c1.rlib --extern futures=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libfutures-a0e2df2b6f8f151d.rlib --extern slab=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libslab-10e2a1f9297be9e0.rlib --extern tokio_executor=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libtokio_executor-c1e1076da4729036.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling tokio-current-thread v0.1.3
     Running `rustc --crate-name tokio_current_thread /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/tokio-current-thread-0.1.3/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=c53c586642e70251 -C extra-filename=-c53c586642e70251 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern futures=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libfutures-a0e2df2b6f8f151d.rlib --extern tokio_executor=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libtokio_executor-c1e1076da4729036.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling mime v0.3.5
     Running `rustc --crate-name mime /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/mime-0.3.5/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=5ad560938a1445ab -C extra-filename=-5ad560938a1445ab --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern unicase=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libunicase-d3f6ca513ee56887.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling digest v0.7.2
   Compiling crypto-mac v0.5.2
     Running `rustc --crate-name crypto_mac /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/crypto-mac-0.5.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=0f7bbd6df0c08491 -C extra-filename=-0f7bbd6df0c08491 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern constant_time_eq=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libconstant_time_eq-df354c092f7c1ac8.rlib --extern generic_array=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libgeneric_array-1183ae87d9afe14f.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name digest /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/digest-0.7.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=b64698cbf2963358 -C extra-filename=-b64698cbf2963358 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern generic_array=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libgeneric_array-1183ae87d9afe14f.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling tokio-io v0.1.8
     Running `rustc --crate-name tokio_io /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/tokio-io-0.1.8/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=ba916b3556f83dd8 -C extra-filename=-ba916b3556f83dd8 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern bytes=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libbytes-a58959157f7ecadb.rlib --extern futures=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libfutures-a0e2df2b6f8f151d.rlib --extern log=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblog-307797d9e038ff5c.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling http v0.1.14
   Compiling backtrace-sys v0.1.16
     Running `rustc --crate-name http /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/http-0.1.14/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=133d46bf7b83e9c8 -C extra-filename=-133d46bf7b83e9c8 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern bytes=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libbytes-a58959157f7ecadb.rlib --extern fnv=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libfnv-aea324208119e339.rlib --extern itoa=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libitoa-606bc90fc486ee83.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `rustc --crate-name build_script_build /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/backtrace-sys-0.1.16/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 -C metadata=0520cb6d028a29ca -C extra-filename=-0520cb6d028a29ca --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/backtrace-sys-0520cb6d028a29ca -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern cc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libcc-3f51a5c15acea7f9.rlib --cap-lints allow`
   Compiling openssl-sys v0.9.36
     Running `rustc --crate-name build_script_main /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/openssl-sys-0.9.36/build/main.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 -C metadata=6570fd8cf59cf9a3 -C extra-filename=-6570fd8cf59cf9a3 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/openssl-sys-6570fd8cf59cf9a3 -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern cc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libcc-3f51a5c15acea7f9.rlib --extern pkg_config=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libpkg_config-c96fc1e4546aed60.rlib --cap-lints allow`
   Compiling cmake v0.1.30
     Running `rustc --crate-name cmake /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/cmake-0.1.30/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=5b6078258ca83594 -C extra-filename=-5b6078258ca83594 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern cc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libcc-3f51a5c15acea7f9.rlib --cap-lints allow`
   Compiling mio-uds v0.6.7
     Running `rustc --crate-name mio_uds /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/mio-uds-0.6.7/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=9691fbcf190262fe -C extra-filename=-9691fbcf190262fe --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern iovec=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libiovec-fa6d5f072ebe7820.rlib --extern libc=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblibc-4dfe3d115678ff89.rlib --extern mio=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libmio-76fd48c71cded2ea.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling hmac v0.5.0
     Running `rustc --crate-name hmac /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/hmac-0.5.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=af248308e84827cf -C extra-filename=-af248308e84827cf --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern crypto_mac=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libcrypto_mac-0f7bbd6df0c08491.rlib --extern digest=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libdigest-b64698cbf2963358.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling sha2 v0.7.1
     Running `rustc --crate-name sha2 /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/sha2-0.7.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=5ed03a0cea18ba24 -C extra-filename=-5ed03a0cea18ba24 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern block_buffer=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libblock_buffer-6a61934f26d26af3.rlib --extern byte_tools=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libbyte_tools-a1551b84611b3988.rlib --extern digest=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libdigest-b64698cbf2963358.rlib --extern fake_simd=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libfake_simd-d5d03226a659c2e0.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling tokio-threadpool v0.1.6
     Running `rustc --crate-name tokio_threadpool /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/tokio-threadpool-0.1.6/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=7cf483ac3658ef48 -C extra-filename=-7cf483ac3658ef48 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern crossbeam_deque=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libcrossbeam_deque-119722bb2eb78a91.rlib --extern crossbeam_utils=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libcrossbeam_utils-f64c2aa5906301c1.rlib --extern futures=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libfutures-a0e2df2b6f8f151d.rlib --extern log=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblog-307797d9e038ff5c.rlib --extern num_cpus=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libnum_cpus-d455b0f739c7dee6.rlib --extern rand=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/librand-107f0c188e516af5.rlib --extern tokio_executor=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libtokio_executor-c1e1076da4729036.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling serde_test v0.8.23
     Running `rustc --crate-name serde_test /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/serde_test-0.8.23/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=5a26613c5f4ac2d2 -C extra-filename=-5a26613c5f4ac2d2 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern serde=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libserde-20529fcb56c4b91a.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling quote v0.5.2
     Running `rustc --crate-name quote /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/quote-0.5.2/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --cfg 'feature="proc-macro2"' -C metadata=b57c1ac62aee9f42 -C extra-filename=-b57c1ac62aee9f42 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern proc_macro2=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libproc_macro2-d66c9e17958ad2fa.rlib --cap-lints allow`
   Compiling url v1.7.0
     Running `rustc --crate-name url /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/url-1.7.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=19530f0f00e89e1a -C extra-filename=-19530f0f00e89e1a --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern idna=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libidna-39c20396b428b1aa.rlib --extern matches=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libmatches-810073fdb81da2a2.rlib --extern percent_encoding=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libpercent_encoding-32ede725253c8e0c.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling quote v0.6.8
     Running `rustc --crate-name quote /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/quote-0.6.8/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --cfg 'feature="proc-macro2"' -C metadata=90b8ed4815599e1b -C extra-filename=-90b8ed4815599e1b --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern proc_macro2=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libproc_macro2-dfb7040b7ee67b2a.rlib --cap-lints allow`
   Compiling tokio-reactor v0.1.1
     Running `rustc --crate-name tokio_reactor /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/tokio-reactor-0.1.1/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="default"' -C metadata=30b4dd0d3ff0bb7c -C extra-filename=-30b4dd0d3ff0bb7c --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern futures=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libfutures-a0e2df2b6f8f151d.rlib --extern log=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/liblog-307797d9e038ff5c.rlib --extern mio=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libmio-76fd48c71cded2ea.rlib --extern slab=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libslab-10e2a1f9297be9e0.rlib --extern tokio_executor=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libtokio_executor-c1e1076da4729036.rlib --extern tokio_io=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libtokio_io-ba916b3556f83dd8.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling tokio-codec v0.1.0
     Running `rustc --crate-name tokio_codec /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/tokio-codec-0.1.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 -C metadata=7b7855cc72cbffd0 -C extra-filename=-7b7855cc72cbffd0 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern bytes=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libbytes-a58959157f7ecadb.rlib --extern futures=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libfutures-a0e2df2b6f8f151d.rlib --extern tokio_io=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libtokio_io-ba916b3556f83dd8.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
     Running `/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/backtrace-sys-0520cb6d028a29ca/build-script-build`
   Compiling linked-hash-map v0.3.0
     Running `rustc --crate-name linked_hash_map /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/linked-hash-map-0.3.0/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="serde"' --cfg 'feature="serde_impl"' --cfg 'feature="serde_test"' -C metadata=8f797ff1efc71354 -C extra-filename=-8f797ff1efc71354 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps --target arm-ostl-linux-gnueabi -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/target-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern serde=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libserde-20529fcb56c4b91a.rlib --extern serde_test=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/arm-ostl-linux-gnueabi/release/deps/libserde_test-5a26613c5f4ac2d2.rlib --cap-lints allow -L /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/recipe-sysroot/usr/lib/rust --remap-path-prefix=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0=/usr/src/debug/iotedge-cli/1.0.8-r0`
   Compiling hsm-sys v0.1.0 (/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/hsm-sys)
   Compiling syn v0.13.4
     Running `rustc --crate-name syn /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/cargo_home/bitbake/syn-0.13.4/src/lib.rs --color never --crate-type lib --emit=dep-info,link -C opt-level=3 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="proc-macro2"' --cfg 'feature="quote"' --cfg 'feature="visit"' -C metadata=3efa59d7c804a082 -C extra-filename=-3efa59d7c804a082 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern proc_macro2=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libproc_macro2-d66c9e17958ad2fa.rlib --extern quote=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libquote-b57c1ac62aee9f42.rlib --extern unicode_xid=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libunicode_xid-e884412bfa15afb7.rlib --cap-lints allow`
     Running `rustc --edition=2018 --crate-name build_script_build hsm-sys/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 -C metadata=9ec41dd6a5d875b8 -C extra-filename=-9ec41dd6a5d875b8 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/hsm-sys-9ec41dd6a5d875b8 -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern cmake=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libcmake-5b6078258ca83594.rlib`
     Running `/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/openssl-sys-6570fd8cf59cf9a3/build-script-main`
error: Edition 2018 is unstable an onlyavailable for nightly builds of rustc.

error: Could not compile `hsm-sys`.

Caused by:
  process didn't exit successfully: `rustc --edition=2018 --crate-name build_script_build hsm-sys/build.rs --color never --crate-type bin --emit=dep-info,link -C opt-level=3 -C metadata=9ec41dd6a5d875b8 -C extra-filename=-9ec41dd6a5d875b8 --out-dir /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/build/hsm-sys-9ec41dd6a5d875b8 -C linker=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/wrapper/build-rust-ccld -L dependency=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps --extern cmake=/datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/iotedge-1.0.8/edgelet/target/release/deps/libcmake-5b6078258ca83594.rlib` (exit code: 101)
warning: build failed, waiting for other jobs to finish...
error: build failed
WARNING: exit code 101 from a shell command.
ERROR: Function failed: do_compile (log file is located at /datadrive/exodus_linux/build-openstlinuxweston-stm32mp1/tmp-glibc/work/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi/iotedge-cli/1.0.8-r0/temp/log.do_compile.122636)
kbumsik commented 4 years ago

@gvkalra I successfully built with 9487b089ea4779c2b494b17b9254219226efa539! Try this meta-rust commit. I got this from here: https://kevinsaye.wordpress.com/2019/06/21/how-to-build-a-yocto-image-for-the-raspberry-pi-running-azure-iot-edge/

holagvk commented 4 years ago

@kbumsik thanks! worked for me as well.

geoffrey-vl commented 4 years ago

Same as #33 but other branch

myagley commented 4 years ago

With the 1.0.9 release of IoT Edge, we began pinning the version of the rust compiler used (via the rust-toolchain file). This should mitigate many of these issues going forward.

In order to support this in Yocto, we will need to start pinning the meta-rust version or you can use PREFERRED_VERSION_* in your distro config. For example, 1.0.9.4 of IoT Edge on Thud is pinned to meta-rust d8d77be1292064a02adcb5e72e293604b704f69b.

I'm open to other options to make this work other than pinning the meta-rust commit.

holagvk commented 4 years ago

Thanks, @myagley. Pinning is perfect.

Just for reference: Fixed by https://github.com/Azure/meta-iotedge/commit/f68eb87a9408d7a4d3d22cbb6106d353199c6c00