- 论坛徽章:
- 0
|
谢谢楼上兄弟的指点,真的是编译器的设置有问题.
不过现在又有了新问题:
linux.c: In function `setup_start_tag':
linux.c:97: dereferencing pointer to incomplete type
linux.c:97: `ATAG_CORE' undeclared (first use in this function)
linux.c:97: (Each undeclared identifier is reported only once
linux.c:97: for each function it appears in.)
linux.c:98: dereferencing pointer to incomplete type
linux.c:98: warning: implicit declaration of function `tag_size'
linux.c:98: `tag_core' undeclared (first use in this function)
linux.c:100: dereferencing pointer to incomplete type
linux.c:101: dereferencing pointer to incomplete type
linux.c:102: dereferencing pointer to incomplete type
linux.c:104: warning: implicit declaration of function `tag_next'
linux.c:104: warning: assignment makes pointer from integer without a cast
linux.c: In function `setup_memory_tags':
linux.c:114: dereferencing pointer to incomplete type
linux.c:114: `ATAG_MEM' undeclared (first use in this function)
linux.c:115: dereferencing pointer to incomplete type
linux.c:115: `tag_mem32' undeclared (first use in this function)
linux.c:117: dereferencing pointer to incomplete type
linux.c:118: dereferencing pointer to incomplete type
linux.c:120: warning: assignment makes pointer from integer without a cast
linux.c: In function `setup_commandline_tag':
linux.c:139: dereferencing pointer to incomplete type
linux.c:143: dereferencing pointer to incomplete type
linux.c:144: `COMMAND_LINE_SIZE' undeclared (first use in this function)
linux.c:148: dereferencing pointer to incomplete type
linux.c:166: dereferencing pointer to incomplete type
linux.c:167: dereferencing pointer to incomplete type
linux.c:167: `ATAG_CMDLINE' undeclared (first use in this function)
linux.c:168: dereferencing pointer to incomplete type
linux.c:168: sizeof applied to an incomplete type
linux.c:169: dereferencing pointer to incomplete type
linux.c:171: warning: assignment makes pointer from integer without a cast
linux.c:135: warning: `p' might be used uninitialized in this function
linux.c: In function `setup_initrd_tag':
linux.c:181: dereferencing pointer to incomplete type
linux.c:181: `ATAG_INITRD' undeclared (first use in this function)
linux.c:182: dereferencing pointer to incomplete type
linux.c:182: `tag_initrd' undeclared (first use in this function)
linux.c:184: dereferencing pointer to incomplete type
linux.c:185: dereferencing pointer to incomplete type
linux.c:187: warning: assignment makes pointer from integer without a cast
linux.c: In function `setup_ramdisk_tag':
linux.c:196: dereferencing pointer to incomplete type
linux.c:196: `ATAG_RAMDISK' undeclared (first use in this function)
linux.c:197: dereferencing pointer to incomplete type
linux.c:197: `tag_ramdisk' undeclared (first use in this function)
linux.c:199: dereferencing pointer to incomplete type
linux.c:200: dereferencing pointer to incomplete type
linux.c:201: dereferencing pointer to incomplete type
linux.c:203: warning: assignment makes pointer from integer without a cast
linux.c: In function `setup_end_tag':
linux.c:209: dereferencing pointer to incomplete type
linux.c:209: `ATAG_NONE' undeclared (first use in this function)
linux.c:210: dereferencing pointer to incomplete type
make[2]: *** [linux.o] Error 1
make[2]: Leaving directory `/home/lvshishi/blob-44b0/blob/src/blob'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/lvshishi/blob-44b0/blob/src'
make: *** [all-recursive] Error 1
编译提示有很多东东没有定义,我上网查了一下,这些数据类型应该定义在include/asm/setup.h下面的,可是我发现我机器里的这个文件里面什么都没有定义,只有下面几行:
#ifndef _i386_SETUP_H
#define _i386_SETUP_H
#endif /* _i386_SETUP_H */
我想请教一下,里面的内容是不是要自己定义?如果是的话,该怎么定义?如果哪位兄弟有定义好的setup.h,还望能发给我一份,谢谢了!! |
|