我用的是S3C2440ARM. ads1.2的编译器; 然后在使用SCATTER问价时候编译报了下面的错误;
Error : L6224E: Could not place __main.o(!!!) in any Execution region.
Error : L6224E: Could not place _no_redirect.o(.text) in any Execution region.
Error : L6224E: Could not place _printf.o(.text) in any Execution region.
Error : L6224E: Could not place getc.o(.text) in any Execution region.
Error : L6224E: Could not place printf.o(.text) in any Execution region.
Error : L6224E: Could not place __vfpntf.o(.text) in any Execution region.
Error : L6224E: Could not place ferror.o(.text) in any Execution region.
Error : L6224E: Could not place fgetc.o(.text) in any Execution region.
Error : L6224E: Could not place fputc.o(.text) in any Execution region.
Error : L6224E: Could not place kernel.o(.text) in any Execution region.
Error : L6224E: Could not place stdio.o(.text) in any Execution region.
,要怎么解决啊;
另外
,要怎么解决啊;
另外
,要怎么解决啊;
另外
,要怎么解决啊;
另外
,要怎么解决啊;
另外
,要怎么解决啊;
另外
,要怎么解决啊;
另外
,要怎么解决啊;
另外
,要怎么解决啊;
另外
以下是LDS文件;
我就是照着这个LDS文件写的scatter;请大神指导下要怎么写
SECTIONS {
. = 0x00000000;
.init : AT(0){ head.o init.o nand.o}
. = 0x30000000;
.text : AT(4096) { *(.text) }
.rodata ALIGN(4) : AT((LOADADDR(.text)+SIZEOF(.text)+3)&~(0x03)) {*(.rodata*)}
.data ALIGN(4) : AT((LOADADDR(.rodata)+SIZEOF(.rodata)+3)&~(0x03)) { *(.data) }
__bss_start = .;
.bss ALIGN(4) : { *(.bss) *(COMMON) }
__bss_end = .;
}