编译运行linux0.12,linux0.12 编译过程

感谢这篇文章的作者:    http://www.cnblogs.com/strugglesometimes/p/4231359.html

编译是个很蛋疼的事情,本想把linux0.12在bochs上跑起来然后就可以各模块的学习,没想各种问题。

问题1:

1 gas -c -o boot/head.o boot/head.s

2 make: gas: Command not found

gas已过时,将所有Makfile里gas -> as

具体解决方法

msed 是个简单的shell 函数,具体定义见下面的传送门。

问题2:

69c5a8ac3fa60e0848d784a6dd461da6.png

1 boot/head.s:43: Error: unsupported instruction `mov‘

2 boot/head.s:47: Error: unsupported instruction `mov‘

3 boot/head.s:59: Error: unsupported instruction `mov‘

4 boot/head.s:61: Error: unsupported instruction `mov‘

5 boot/head.s:136: Error: invalid instruction suffix for `push‘

6 boot/head.s:137: Error: invalid instruction suffix for `push‘

7 boot/head.s:138: Error: invalid instruction suffix for `push‘

8 boot/head.s:139: Error: invalid instruction suffix for `push‘

9 boot/head.s:140: Error: invalid instruction suffix for `push‘

10 boot/head.s:151: Error: invalid instruction suffix for `push‘

11 boot/head.s:152: Error: invalid instruction suffix for `push‘

12 boot/head.s:153: Error: invalid instruction suffix for `push‘

13 boot/head.s:154: Error: operand type mismatch for `push‘

14 boot/head.s:155: Error: operand type mismatch for `push‘

15 boot/head.s:161: Error: invalid instruction suffix for `push‘

16 boot/head.s:163: Error: invalid instruction suffix for `pop‘

17 boot/head.s:165: Error: operand type mismatch for `pop‘

18 boot/head.s:166: Error: operand type mismatch for `pop‘

19 boot/head.s:167: Error: invalid instruction suffix for `pop‘

20 boot/head.s:168: Error: invalid instruction suffix for `pop‘

21 boot/head.s:169: Error: invalid instruction suffix for `pop‘

22 boot/head.s:214: Error: unsupported instruction `mov‘

23 boot/head.s:215: Error: unsupported instruction `mov‘

24 boot/head.s:217: Error: unsupported instruction `mov‘

69c5a8ac3fa60e0848d784a6dd461da6.png

这是由于在64位机器上编译的原因,需要告诉编译器,我们要编译32位的code,在所有Makefile的AS后面添加 --32,CFLAGS中加-m32

具体解决方法

msed as$ as\ --32

msed -O -O\ -m32

问题3:

boot/head.s: Assembler messages:

boot/head.s:231: Error: alignment not a power of 2

make: *** [boot/head.o] Error 1

把align n -> align 2^n

具体解决方法

sed -i ‘s/align 2/align 4/g‘ boot/head.s

sed -i ‘s/align 3/align 8/g‘ boot/head.s

问题4:

gcc: error: unrecognized command line option ‘-fcombine-regs’

gcc: error: unrecognized command line option ‘-mstring-insns’

把这两个删掉即可,现在GCC已经不支持了

具体解决方法

msed -fcombine-regs \

msed -mstring-insns \

问题5:

额。。。。为了更快的找到Error的地方,我把所有的warning 都关掉了即在CFLAGS 中加-w

具体解决方法

msed -Wall -w

问题6:

69c5a8ac3fa60e0848d784a6dd461da6.png

In file included from init/main.c:8:0:

init/main.c:23:29: error: static declaration of ‘fork’ follows non-static declaration

static inline _syscall0(int,fork)

^include/unistd.h:151:6: note: indefinition of macro ‘_syscall0’

type name(void) ^init/main.c:24:29: error: static declaration of ‘pause’ follows non-static declaration

static inline _syscall0(int,pause)

^include/unistd.h:151:6: note: indefinition of macro ‘_syscall0’

type name(void) ^include/unistd.h:241:5: note: previous declaration of ‘pause’ was here

intpause(void);

^init/main.c:26:29: error: static declaration of ‘sync’ follows non-static declaration

static inline _syscall0(int,sync)

^include/unistd.h:151:6: note: indefinition of macro ‘_syscall0’

type name(void) ^include/unistd.h:252:5: note: previous declaration of ‘sync’ was here

int sync(void);

69c5a8ac3fa60e0848d784a6dd461da6.png

这里是由于include/unistd.h 中声明了一次pause() sync() fork(), 而在main.c 中通过宏又定义了这三个函数,但定义时多了static 限定,与声明不同,所以出错。所以直接把unistd.h中的声明去掉。

问题7:

init/main.c:179:12: error: static declaration of ‘printf’ follows non-static declaration

static int printf(const char *fmt, ...)

这个问题困扰了好久,网上的解决方案都是把static去掉,但是这样做,后面在链接的时候会出现另一个错误undefined reference to ‘_put‘. 新的问题是由于GCC会对printf进行优化,把无参的printf优化成put,而linux0.12的libc中又没有实现put才会导致新的问题。那么现在回到这个问题上,猜测应该也是由于GCC本身对printf这个函数名有特别的关照所致,所以把printf稍微改下名,printf -> printw。发现果然就编译通过了。

具体解决方案:

sed -i ‘s/ printf/ printw/g‘ init/main.c

问题8:

init/main.c: In function‘main’:

init/main.c:176:3: error: ‘asm’ operand has impossible constraints

__asm__("int $0x80"::"a" (__NR_pause):"ax");

类似的问题在后面编译中出现好多,C内嵌汇编的格式__asm__(汇编语句:输入寄存器:输出寄存器:可能被修改的寄存器),最新的GCC规定输入或输出寄存器不能出现在可能被修改的寄存器中,目前看到网上的方法是把所有类似问题的可能被修改的寄存器全部删掉。

具体解决方法

find -type f -exec sed -i ‘s/:\"\w\{2\}\"\(,\"\w\{2\}\"\)*)/:) /g‘ {} \;

问题9:

make[1]: gld: Command not found

同gas, 把gld -> ld

具体解决方法

msed gld ld

问题10:

ld -r -o kernel.o sched.o sys_call.o traps.o asm.o fork.o panic.o printk.o vsprintf.o sys.o exit.o signal.o mktime.o

ld: Relocatable linking with relocations from format elf32-i386 (sched.o) to format elf64-x86-64 (kernel.o) is not supported

同问题2,告诉ld以32位链接,在ld命令后面加 -m elf_i386

具体解决方法

msed ld$ ld\ -m\ elf_i386

问题11:

../include/asm/segment.h: Assembler messages:

../include/asm/segment.h:27: Error: bad register name `%sil‘

去segment.h 的第27行找,没找到sil相关的东西,根据网上的方法,把=r或r 改成=q或q,果然就好了,这里应该是编译器造成的,r表示任意寄存器,在编译的时候就用了sil这个寄存器,可为什么无效还会被用到呢。q表示使用eax,ebx,ecx,edx中任意一个。

具体解决方法

sed -i s‘/r"/q"/g‘ include/asm/segment.h

问题12:

exec.c: In function‘copy_strings’:

exec.c:162:44: error: lvalue required as left operand of assignment

!(pag = (char *) page[p/PAGE_SIZE] =

if (!(pag = (char *) page[p/PAGE_SIZE]) &&

!(pag = (char *) page[p/PAGE_SIZE] =(unsigned long *) get_free_page()))

return 0;

以上是原始code,以下是OK的code

69c5a8ac3fa60e0848d784a6dd461da6.png

if ((!page[p/PAGE_SIZE]) &&

!(page[p/PAGE_SIZE] =(unsigned long *) get_free_page()))

return 0;

elsepag = (char *) page[p/PAGE_SIZE];

69c5a8ac3fa60e0848d784a6dd461da6.png

问题13:

In file included from floppy.c:42:0:

blk.h:90:6: error: #elif with no expression

#elif

这里把第90行的#elif -> #else

问题14:

make[1]: gar: Command not found

老问题了,gar -> ar

msed gar ar

问题15:

malloc.c: In function‘malloc’:

malloc.c:156:46: error: lvalue required as left operand of assignment

bdesc->page = bdesc->freeptr = (void *) cp = get_free_page();

和问题12一样

bdesc->page = bdesc->freeptr = (void *) cp = get_free_page();

上面是原始的,下面是OK的,把代码拆分下就好

cp =get_free_page();

bdesc->page = bdesc->freeptr = (void *) cp;

原文:http://www.cnblogs.com/welhzh/p/4521196.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/560993.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

不用数组,解决众数问题(前提 :众数出现的次数必须大于n/2)

内存限制4mb 用数组不通过&#xff0c;怎么办&#xff1f; 众数出现的次数必须大于n/2 第一行输入一个整数n &#xff08;1<n<1E6) 接下来一行n个整数 mi &#xff08;1<MI<1E9) 表示第i种糖果的个数&#xff0c;整数之间用空格隔开 输出mi中出现次数最多的那…

高考python必考题目_假如高考考python编程,这些题目你会几个呢?

Python(发音&#xff1a;英[?pa?θ?n]&#xff0c;美[?pa?θɑ:n])&#xff0c;是一种面向对象、直译式电脑编程语言&#xff0c;也是一种功能强大的通用型语言&#xff0c;已经具有近二十年的发展历史&#xff0c;成熟且稳定。它包含了一组完善而且容易理解的标准库&…

编译linux tq2440,QT4.8.2在TQ2440开发板上的移植(一)--编译和安装

主机版本&#xff1a;Ubuntu 11.04交叉编译器版本&#xff1a;4.3.3移植的主要工作就是编译在ARM板上运行的qt库&#xff0c;并且把这些库做到根目录中。需要的文件tslib-1.4.tar.gz qt-everywhere-opensource-src-4.8.2.tar.gz具体步骤如下&#xff1a;1、首先编译安装触摸屏驱…

图书管理系统_目前图书管理系统存在的问题

作者&#xff1a;新风学术网(一) 不能准确直观地指明图书所在的空间位置目前所使用的管理系统在索书的过程中是读者先在图书馆查询系统上查询到所要借的图书并记录下这本书的索书号和馆藏地, 再根据索书号到书的馆藏地所在位置查找书。有些读者对索书号是怎么排架的并不了解, 也…

python怎么计算图像梯度_opencv python图像梯度实例详解

这篇文章主要介绍了opencv python图像梯度实例详解,文中通过示例代码介绍的非常详细&#xff0c;对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下一阶导数与Soble算子二阶导数与拉普拉斯算子图像边缘&#xff1a;Soble算子&#xff1a;二阶导数&#xff1a;拉…

vector简单应用

输出vector中元素&#xff0c;以及插入删除元素 #include<iostream> #include<vector> using namespace std; template<class T> void printvector(T s,T e)//输出vector元素 {for(; s!e; s)cout<<*s<<" ";cout<<endl; } int …

Linux ct获取本机ip,linux ip命令

ip 是个命令&#xff0c; ip 命令的功能很多&#xff01;基本上它整合了 ifconfig 与 route 这两个命令&#xff0c;不过ip 的功能更强大&#xff01;如果您有兴趣的话&#xff0c;请自行 vi /sbin/ifup 就知道整个 ifup 就是利用 ip这个命令来实现的。下面介绍一下使用方法[ro…

linux errno的作用域,关于比特科技c语言的学习博客(1)

写代码1创建工程2创建路径3创建源文件4写代码写c代码时.c文件是源文件.h是头文件写helloworld时return 0记得中间敲空格 main是主函数从main开始执行也是程序的入口有且仅有一个int是整型的意思main前的int表示main函数调用返回一个整型值void main已经过时#include 包含一个叫…

python o创建文件_Python 文件I/O

模块让你能够有逻辑地组织你的Python代码段。把相关的代码分配到一个 模块里能让你的代码更好用&#xff0c;更易懂。模块也是Python对象&#xff0c;具有随机的名字属性用来绑定或引用。简单地说&#xff0c;模块就是一个保存了Python代码的文件。模块能定义函数&#xff0c;类…

函数对象应用

计算几个数的n次方和 #include<iostream> #include<vector> #include<algorithm> #include<numeric> #include<functional> using namespace std; int sumsquares(int total, int value) {return totalvalue*value; }template<class T>//…

C语言中各字母对应的数值,C语言中字符串与各数值类型之间的转换方法

C语言的算法设计中&#xff0c;经常会需要用到字符串&#xff0c;而由于c语言中字符串并不是一个默认类型&#xff0c;其标准库stdlib设计了很多函数方便我们处理字符串与其他数值类型之间的转换。首先放上一段展示各函数使用的代码&#xff0c;大家也可以copy到自己的机器上运…

web服务面试python_Python面试重点(web篇)

写出常用的bootstrap的样式。导航栏,表单,轮播图,下拉菜单什么是响应式布局&#xff1f;响应式布局就是一个网站能够兼容多个终端,而不是为每个终端做一个特定的版本.优点:灵活性强,能解决多设备显示问题缺点:不兼容所有浏览器,一定程度改变布局结构请通过jQuery发送ajax请求。…

linux下的扑克游戏,linux下多线程扑克游戏框架.doc

linux下多线程扑克游戏框架linux下多线程扑克游戏框架/**rc.c*文件描述&#xff1a;*1)提供了linux下“升级”(北方常见的一种扑克玩法)游戏的框架。*2)库&#xff1a;glibc2.15&#xff1b;编译环境&#xff1a;gcc4.7.2;内核&#xff1a;3.8.4* 3) 编译&#xff1a;gcc -pthr…

python的array如何使用map_你应该了解的JavaScript Array.map()五种用途小结

前言从经典的 for 循环到 forEach() 方法&#xff0c;用于迭代数据集合的各种技术和方法比比皆是。但是现在比较流行的方法是 .map() 方法。.map() 通过指定函数调用一个数组中每一项元素&#xff0c;来创建一个新数组。 .map() 是一种 non-mutating(非变异) 方法&#xff0c;它…

(dp)数字三角形

题目方案1&#xff1a;递归方案二&#xff1a;递推 题目 数字三角形问题。有一个由非负整数组成的三角形&#xff0c;第一行只有一个数&#xff0c;除了最下行 之外每个数的左下方和右下方各有一个数 从第一行的数开始&#xff0c;每次可以往左下或右下走一格&#xff0c;直…

long在C语言中是非法字符吗,C程序设计实践——实验指导

一、课程的总体目标和具体要求总体目标&#xff1a;利用C语言和程序设计方法编制程序&#xff0c;借助计算机解决问题的基本能力。(支撑毕业能力要求1)独立解决文本处理、数学上的一些问题&#xff0c;编写较规范化的代码。(支撑毕业能力要求3)综合运用数学和程序设计方法&…

动规最长上升子序列

#include<iostream> #include<algorithm> using namespace std; #define maxx 101 int a[maxx]; int n; int maxlen[maxx];int main() {int i,j;cin>>n;for(i1;i<n;i){cin>>a[i];//数组a存数maxlen[i]1;//边界条件,每个数最长子序列至少为一}for(i2…

C语言实现一个随机测试加减乘除,编写程序:C语言实现一个随堂测试,能进行加减乘除运算...

//需要导入一个时间头文件&#xff1b;#include//bool类型;long show(){int num1,num2,x;long s;char c;srand((unsigned) time(NULL));//用时间做种子&#xff0c;每次产生的随机序列不同&#xff1b;num1rand()%101;num2rand()%101;xrand()%4;switch(x){case 0:c;snum1num2;b…

前端实现图片悬浮_悬浮图片之上效果实现

其实很简单&#xff0c;就是一个margin-top的问题&#xff0c;但是需要relative的定位方式才能悬在上面。html部分草帽的创新聚集国内外优秀人才&#xff0c; 聚焦新技术及产品研究&#xff0c; 以开放互联的理念&#xff0c; 驱动企业创新发展。实现怎样的创新服务全国品牌用户…

动规最长公共子序列

首先&#xff0c;有俩参数分别是s1,s2&#xff0c;那就要用二维数组. 确定状态maxlen(i,j)&#xff0c;表示s1第i个与s2第j个元素组成的最长公共子序列个数 再找临界状态&#xff1a;maxlen(i,0)0,maxlen(0,j)0 再找状态转移方程&#xff1a; 如果s1第i-1个元素和s2第i-1个…