目录

0 前言

1 安装arm-linux-gcc-4.3.2

2 配置 nfs 服务器


0 前言

之前在 fedora 64bit 上建立交叉编译,但由于4.4.3版本需要另装用于gdb-server调试的gdb工具,而且折腾了很久,多个gdb版本都报错。还是乖乖用32bit的系统。

友善之臂提供的arm-linux-gcc4.4.2已经集成了 gdb,不用重新安装gdb


1 安装arm-linux-gcc-4.3.2

1.1 将 arm-linux-gcc-4.3.2.tgz 放到 home/hy/ARM 目录下

1.2 解压文件,注意 -C 为大写,改变解压目录的意思,C后面有一个空格,再加上一个根目录符号 /

[hy@localhost ARM]$ tar xvzf arm-linux-gcc-4.3.2.tgz -C /

1.3 添加系统环境变量,因为要修改 /etc下的文件,所以需要root

[hy@localhost ARM]$ su
Password:
[root@localhost ARM]# vi /etc/profile

在profile的最后一行添加路径,保存退出 :

##hy add 3.22
export PATH=$PATH:/usr/local/arm/4.3.2/bin
#

1.4使文件立即生效,不须重启fedora:

[root@localhost ARM]# source /etc/profile

注:在切换回普通用户时,如:hy 用户时,可能需要重新使文件生效  source /etc/profile。

1.5检查版本,如下说明安装成功

[root@localhost ARM]# arm-linux-gcc -v
Using built-in specs.
Target: arm-none-linux-gnueabi
Configured with: /scratch/julian/lite-respin/linux/src/gcc-4.3/configure --build=i686-pc-linux-gnu --host=i686-pc-linux-gnu --target=arm-none-linux-gnueabi --enable-threads --disable-libmudflap --disable-libssp --disable-libstdcxx-pch --with-gnu-as --with-gnu-ld --enable-languages=c,c++ --enable-shared --enable-symvers=gnu --enable-__cxa_atexit --with-pkgversion='Sourcery G++ Lite 2008q3-72' --with-bugurl=https://support.codesourcery.com/GNUToolchain/ --disable-nls --prefix=/opt/codesourcery --with-sysroot=/opt/codesourcery/arm-none-linux-gnueabi/libc --with-build-sysroot=/scratch/julian/lite-respin/linux/install/arm-none-linux-gnueabi/libc --with-gmp=/scratch/julian/lite-respin/linux/obj/host-libs-2008q3-72-arm-none-linux-gnueabi-i686-pc-linux-gnu/usr --with-mpfr=/scratch/julian/lite-respin/linux/obj/host-libs-2008q3-72-arm-none-linux-gnueabi-i686-pc-linux-gnu/usr --disable-libgomp --enable-poison-system-directories --with-build-time-tools=/scratch/julian/lite-respin/linux/install/arm-none-linux-gnueabi/bin --with-build-time-tools=/scratch/julian/lite-respin/linux/install/arm-none-linux-gnueabi/bin
Thread model: posix
gcc version 4.3.2 (Sourcery G++ Lite 2008q3-72)

检查arm-linux-gdb -v

[root@localhost ARM]# arm-linux-gdb -v
GNU gdb (Sourcery G++ Lite 2008q3-72) 6.8.50.20080821-cvs
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "--host=i686-pc-linux-gnu --target=arm-none-linux-gnueabi".
For bug reporting instructions, please see:
<https://support.codesourcery.com/GNUToolchain/>.
[root@localhost ARM]#

1.6 编译hello程序,如下,编译通过,如果是64位系统Fedora,这里还会报错。

[hy@localhost pjhello]$ arm-linux-gcc -o hello hello.c
[hy@localhost pjhello]$ ls
hello hello.c

2 配置 nfs 服务器

虚拟机共享文件给目标机,设置Vmware setting->Network-> Bridged

主机和目标机的IP设置在同一网段。

2.1 建立共享文件夹并设置权限

[hy@localhost ~]$ mkdir /home/hy/nfsshare
[hy@localhost ~]$ chmod 777 -R nfsshare/

2.2 添加共享

[root@localhost hy]# vim /etc/exports
/home/hy/nfsshare *(sync,rw,no_root_squash)

查看共享的文件夹

[root@localhost hy]# showmount -e
Export list for localhost.localdomain:
/home/hy/nfsshare *

出现共享的文件列表时,说明主机的 nfs 配置正确。如果报错,请检查 nfs 状态和防火墙。

检查nfs的状态

[hy@localhost ~]$ systemctl status nfs.service

开启nfs服务

[root@localhost hy]# service nfs start
Redirecting to /bin/systemctl start nfs.service

停止,开始防火墙

[root@localhost init.d]# systemctl stop firewalld.service
[root@localhost init.d]# systemctl start firewalld.service
 

禁用防火墙,

[root@localhost init.d]# systemctl disable firewalld.service

2.3 目标机挂载共享文件夹

目标机挂载命令如下,注意IP为主机的IP地址,且在同一网段:

[root@FriendlyARM /]# mount -t nfs -o nolock 192.168.1.8:/home/hy/nfsshare/ /mnt
mount: RPC: Unable to receive; errno = No route to host

挂载时报错错,这时应检查主机的防火墙和 nfs 的状态。

挂载成功后,在目标机的 /mnt/目录下,就可看到共享的文件

参考

http://www.linuxidc.com/Linux/2011-02/32733.htm

Fedora20-32bit cross-compiling arm-linux-gcc4.3.2的更多相关文章

  1. Linux 安装 go 以及 arm linux 移植 go

    背景 Go是一门全新的静态类型开发语言,具有自动垃圾回收,丰富的内置类型,函数多返回值,错误处理,匿名函数,并发编程,反射等特性. 从Go1.4之后Go语言的编译器完全由Go语言编写,所以为了从源代码 ...

  2. 构建 ARM Linux 4.7.3 嵌入式开发环境 —— BusyBox 构建 RootFS

    上一篇我们已经成功将 ARM Linux 4.7.3 的内核利用 U-BOOT 引导了起来.但是细心的你会发现,引导到后面,系统无法启动,出现内核恐慌 (Kernel Panic). 原因是找不到文件 ...

  3. arm linux kernel 从入口到start_kernel 的代码分析

    参考资料: <ARM体系结构与编程> <嵌入式Linux应用开发完全手册> Linux_Memory_Address_Mapping http://www.chinaunix. ...

  4. How to build and run ARM Linux on QEMU from scratch

    This blog shows how to run ARM Linux on QEMU! This can be used as a base for later projects using th ...

  5. 【Qt开发】【VS开发】【Linux开发】OpenCV、Qt-MinGw、Qt-msvc、VS2010、VS2015、Ubuntu Linux、ARM Linux中几个特别容易混淆的内容

    [Qt开发][VS开发][Linux开发]OpenCV.Qt-MinGw.Qt-msvc.VS2010.VS2015.Ubuntu Linux.ARM Linux中几个特别容易混淆的内容 标签:[Qt ...

  6. ARM Linux Qt 5.x.x 无标题栏

    /********************************************************************************* * ARM Linux Qt 5. ...

  7. 构建 ARM Linux 4.7.3 嵌入式开发环境 —— U-BOOT 引导 Kernel

    经过若干天的反复测试,搜索.终于成功利用 Qemu 在 u-boot 下引导 ARM Linux 4.7.3 内核.如下详细解释整个构建过程. 准备环境 运行环境:Ubuntu 16.04 需要的虚拟 ...

  8. ARM Linux 3.x的设备树(Device Tree)

    http://blog.csdn.net/21cnbao/article/details/8457546 宋宝华 Barry Song <21cnbao@gmail.com> 1.     ...

  9. ARM Linux启动代码分析

    前言 在学习.分析之前首先要弄明白一个问题:为什么要分析启动代码? 因为启动代码绝大部分都是用汇编语言写的,对于没学过或者不熟悉汇编语言的同学确实有一定难度,但是如果你想真正深入地学习Linux,那么 ...

  10. ARM Linux 3.x的设备树(Device Tree)

    1. ARM Device Tree起源 Linus Torvalds在2011年3月17日的ARM Linux邮件列表宣称“this whole ARM thing is a f*cking pai ...

随机推荐

  1. Rocksdb Compaction原理

    概述 compaction主要包括两类:将内存中imutable 转储到磁盘上sst的过程称之为flush或者minor compaction:磁盘上的sst文件从低层向高层转储的过程称之为compa ...

  2. Python脚本调用Django内容

    一.添加系统的环境变量 1.需要引用os模块中environ关键字,其中'mybbs.settings'表示是django项目下的setings文件 eg: import os os.environ[ ...

  3. 不同数据库,查询前n条数据的SQL语句

    不同的数据库,支持的SQL语法略有不同,以下是不同数据库查询前n条数据的SQl语句 SQL Server(MSSQL) SELECT TOP n * FROM table_name ORACLE SE ...

  4. 5-3 bash脚本编程之二 条件判断

    1. 条件测试的表达式 1. [ expression ]  :注意这个中括号的前后都有一个空格 2. [[ expression ]] 3. test expression 2.条件判断的类型 1. ...

  5. 一个C++版的嵌入式操作系统

     原创文章,转载请注明出处! 现世面上流传着很多嵌入式操作系统,都已经非常优秀,但本人(Sam的博客-博客园)还是自己编写了一个RTOS,不敢说优秀,但绝对是使用起来最简单的.先看一个工程截图与一段m ...

  6. HDOJ 2317. Nasty Hacks 模拟水题

    Nasty Hacks Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Tota ...

  7. [No00009F]CMD在执行命令时的中断快捷键

    有两种: Ctrl+C:完全中断.类似于C语言在while循环中的Break: Ctrl+Break(Pause键):单步中断.类似于C语言在while循环中的Continue:

  8. [No000098]SVN学习笔记5-分支,合并,属性,补丁,锁,分支图

    行结束符和空白选项 在项目的生命周期中,有时可能会将行结束符由 CRLF 改为 LF,或者修改一段代码的缩进.不幸的是这样将会使大量的代码行被标记为已修改,尽管代码本身并没有被修改.这里列出的选项将会 ...

  9. Struts2 验证码图片实例

    本文转载于DongLiYang的博客http://www.cnblogs.com/dongliyang/archive/2012/08/24/2654431.html 其中修改过一部分,针对使用注解而 ...

  10. [LeetCode] Group Shifted Strings 群组偏移字符串

    Given a string, we can "shift" each of its letter to its successive letter, for example: & ...