Re: [OE-core] [PATCH] rust: added missing runtime dependencies to run rust on target

2023-03-08 Thread Sundeep KOKKONDA
All the 3 ' gcc g++ binutil ' are required to run rust on target. > > Without binutils getting error 'cannot find ld ' and > without g++ getting below error: > > root@qemux86-64:~# rustc -o hello main.rs > error: linking with `x86_64-poky-linux-gcc` failed: exit status: 1 > | > = note:

Re: [OE-core] [PATCH] rust: added missing runtime dependencies to run rust on target

2023-03-08 Thread Alexander Kanavin
On Wed, 8 Mar 2023 at 18:30, Sundeep KOKKONDA wrote: > rust files are not linking on target due to missing dependencies and observed > below error. > error: linker `x86_64-poky-linux-gcc` not found > > Added the required dependencies to run rust on target machine. >

Re: [OE-core] [PATCH] rust: added missing runtime dependencies to run rust on target

2023-03-08 Thread Alex Kiernan
On Wed, Mar 8, 2023 at 5:30 PM Sundeep KOKKONDA wrote: > > [YOCTO #14975] > rust files are not linking on target due to missing dependencies and observed > below error. > error: linker `x86_64-poky-linux-gcc` not found > > Added the required dependencies to run rust on target machine. > >

[OE-core] [PATCH] rust: added missing runtime dependencies to run rust on target

2023-03-08 Thread Sundeep KOKKONDA
[YOCTO #14975] rust files are not linking on target due to missing dependencies and observed below error. error: linker `x86_64-poky-linux-gcc` not found Added the required dependencies to run rust on target machine. Signed-off-by: Sundeep KOKKONDA ---