Part Number: AM3354
Tool/software: Linux
hi guys:
i followed the instruction on
processors.wiki.ti.com/index.php
and i'm trying to build the processor sdk for am3354 based on ti arago. the version i want to build is 03.02.00.05.
here is the steps i took: (i logged in as root)
apt-get install git build-essential python diffstat texinfo gawk chrpath dos2unix wget unzip socat doxygen libc6:i386 libncurses5:i386 libstdc++6:i386 libz1:i386
dpkg-reconfigure dash
wget releases.linaro.org/.../gcc-linaro-5.3-2016.02-x86_64_arm-linux-gnueabihf.tar.xz
tar -Jxvf gcc-linaro-5.3-2016.02-x86_64_arm-linux-gnueabihf.tar.xz -C $HOME
download CCS6.1.3.00034_linux.tar.gz to ~/Downloads(default location)
$cd ~
$ git clone git://arago-project.org/git/projects/oe-layersetup.git tisdk
$ cd tisdk
$ ./oe-layertool-setup.sh -f configs/processor-sdk/processor-sdk-03.02.00.05-config.txt
visit
software-dl.ti.com/.../index_FDS.html
download am335x-evm-linux-sdk-arago-src-03.02.00.05.tar.xz
$cd ~/tisdk
$mkdir downloads
$cp $HOME/Downloads/CCS6.1.3.00034_linux.tar.gz downloads/
$touch downloads/CCS6.1.3.00034_linux.tar.gz.done
$cd downloads
$tar xvfJ ~/Downloads/am335x-evm-linux-sdk-arago-src-03.02.00.05.tar.xz
$am335x-evm-linux-sdk-arago-src-03.02.00.05/get_build_sources.sh am335x-evm-linux-sdk-arago-src-03.02.00.05/source_pkg_list.txt
$cd ../build
$ echo 'PACKAGECONFIG_append = " accessibility"' >> conf/local.conf
$ . conf/setenv
$ export PATH=$HOME/gcc-linaro-5.3-2016.02-x86_64_arm-linux-gnueabihf/bin:$PATH
$ touch conf/sanity.conf
$ MACHINE=am335x-evm bitbake arago-core-tisdk-image
so.
after all those steps. the building process can be started .
but still it will fail when do_install the external-linaro-sdk-toolchain 1.0-r5.
attaching all the error log here:
DEBUG: Executing shell function do_install
cp: cannot stat '/root/gcc-linaro-5.3-2016.02-x86_64_arm-linux-gnueabihf/arm-linux-gnueabihf/lib/{libstdc++.*,libgcc_s.*,libsupc++.*}': No such file or directory
WARNING: exit code 1 from a shell command.
ERROR: Function failed: do_install (log file is located at /root/tisdk/build/arago-tmp-external-linaro-toolchain/work/x86_64-nativesdk-arago-linux/external-linaro-sdk-toolchain/1.0-r5/temp/log.do_install.4705)
i actually checked the path /root/gcc-linaro-5.3-2016.02-x86_64_arm-linux-gnueabihf/arm-linux-gnueabihf/lib/{libstdc++.*,libgcc_s.*,libsupc++.*}
it really exist and it is the exact path where i decompress the gcc-linaro-5.3 i downloaded.
i can visit /root/gcc-linaro-5.3-2016.02-x86_64_arm-linux-gnueabihf/arm-linux-gnueabihf/lib/ and i can see all kind of libraries in there.like libstdc++*.
so i'm really confused why the error log says No such file or directory
can anyone help me?
regards
yd