Re: [yocto] #sdk #yocto Appears SDK searching host for files that are only present on target side

2020-09-11 Thread Monsees, Steven C (US) via lists.yoctoproject.org
September 10, 2020 1:19 PM To: Monsees, Steven C (US) mailto:steven.mons...@baesystems.com>> Cc: yocto@lists.yoctoproject.org<mailto:yocto@lists.yoctoproject.org> Subject: Re: [yocto] #sdk #yocto Appears SDK searching host for files that are only present on target side *** WARNIN

Re: [yocto] #sdk #yocto Appears SDK searching host for files that are only present on target side

2020-09-11 Thread Monsees, Steven C (US) via lists.yoctoproject.org
7:33 smonsees@yix490016 ~/yocto/test/beignet-Release_v1.2/mybuild> -Original Message- From: yocto@lists.yoctoproject.org [mailto:yocto@lists.yoctoproject.org] On Behalf Of Monsees, Steven C (US) via lists.yoctoproject.org Sent: Friday, September 11, 2020 7:10 AM To: Khem Raj Cc:

Re: [yocto] #sdk #yocto Appears SDK searching host for files that are only present on target side

2020-09-11 Thread Leon Woestenberg
Hello Steven, you mention you use CMake with the Yocto (standard) SDK. After you sourced the SDK environment script, what is the output of "which cmake" ? Do you use the cmake toolchain configuration file provided by the SDK? (CMAKE_TOOLCHAIN_FILE) In my conf/local.conf I make sure I have a

Re: [yocto] #sdk #yocto Appears SDK searching host for files that are only present on target side

2020-09-10 Thread Khem Raj
its looking for tools in sdk dir, which is normal. I wonder if your apps cmake files should be using CC or CLANGCC to do linking. On Wed, Sep 9, 2020 at 8:58 AM Monsees, Steven C (US) via lists.yoctoproject.org wrote: > > > > Looking to understand why the SDK is searching the host/native >

Re: [yocto] #sdk #yocto Appears SDK searching host for files that are only present on target side

2020-09-10 Thread Monsees, Steven C (US) via lists.yoctoproject.org
fyi... I am using CMake with GNU, that is what is required for the build. I do source the SDK environment script prior to attempting build. Here is my current environment-setup-corei7-64-poky-linux script created by SDK: # Check for LD_LIBRARY_PATH being set, which can break SDK and generally

Re: [yocto] #sdk #yocto Appears SDK searching host for files that are only present on target side

2020-09-09 Thread Khem Raj
On 9/9/20 8:57 AM, Monsees, Steven C (US) via lists.yoctoproject.org wrote: >   > > Looking to understand why the SDK is searching the host/native > (x86_64-pokysdk-linux) side when it should be looking at the target side > (corei7-64-poky-linux) … > >   > > All the “crt” files are present

[yocto] #sdk #yocto Appears SDK searching host for files that are only present on target side

2020-09-09 Thread Monsees, Steven C (US) via lists.yoctoproject.org
Looking to understand why the SDK is searching the host/native (x86_64-pokysdk-linux) side when it should be looking at the target side (corei7-64-poky-linux) ... All the "crt" files are present under the target side. Can someone explain what might be miss-configured ?, or better, point me to