zoukankan      html  css  js  c++  java
  • Rico Board.1.环境配置

    1.搭建开发环境

    1.解压文件

    sudo tar -jvxf gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_liunx.tar.bz2 -C /ysr/local/arm/

    2.修改配置文件

    sudo vim /etc/profile

    添加下面两句

    export PATH=$PATH:/usr/local/arm/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin
    export CROSS_COMPIL=arm-linux-gnueabihf-

    3.查看

    source /etc/profile

    $PATH

    bash: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/arm/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin: 没有那个文件或目录

    arm-linux-gnueabihf-gcc -v
    arm-linux-gnueabihf-gcc: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
    报错,由于版本原因,解决办法如下:

    sudo apt-get install lib32z1 lib32ncurses5

    sudo apt-get install lib32stdc++6


    arm-linux-gnueabihf-gcc -v

    gcc 版本 4.7.3 20130226 (prerelease) (crosstool-NG linaro-1.13.1-4.7-2013.03-20130313 - Linaro GCC 2013.03)

    2.网络配置

    1.给开发板设置地址,根据主机网络段

     

    2.与linux虚拟机、主机互ping

    设置虚拟机网络

    设置地址后可ping

     

    3.文件传输

     使用scp命令

    传输成功。

    参考:http://bbs.elecfans.com/jishu_1097148_1_1.html

  • 相关阅读:
    今天面试一些程序员(新,老)手的体会
    UVA 10635 Prince and Princess
    poj 2240 Arbitrage
    poj 2253 Frogger
    poj 2485 Highways
    UVA 11258 String Partition
    UVA 11151 Longest Palindrome
    poj 1125 Stockbroker Grapevine
    poj 1789 Truck History
    poj 3259 Wormholes
  • 原文地址:https://www.cnblogs.com/protogenoi/p/9308835.html
Copyright © 2011-2022 走看看