|
如题。
昨天我用arm-none-eabi-gcc + arm-none-eabi-newlib没有问题,
今天换回arm-elf-gcc + arm-elf-newlib就出问题:
makefile:
CFLAGS = -Wall -Wstrict-prototypes -g -fomit-frame-pointer -ffreestanding \
-static -nostartfiles -I/usr/arm-elf/include -L/usr/arm-elf/lib \
-L/usr/lib/gcc/arm-elf/4.6.0/ -lgcc -lc -lm -lg
CC = arm-elf-gcc
LD = arm-elf-ld
OBJCOPY = arm-elf-objcopy
OBJDUMP = arm-elf-objdump
SIZE = arm-elf-size
all: head.S init.c interrupt.c main.c
$(CC) $(CFLAGS) -c -o head.o head.S
$(CC) $(CFLAGS) -c -o init.o init.c
$(CC) $(CFLAGS) -c -o interrupt.o interrupt.c
$(CC) $(CFLAGS) -c -o main.o main.c
$(CC) $(CFLAGS) -Tdefault.lds -o key_int.elf head.o init.o interrupt.o main.o
$(OBJCOPY) -O binary -S key_int.elf key_int.bin
$(OBJDUMP) -D -m arm key_int.elf > key_int.dis
$(SIZE) key_int.elf
clean:
rm -f key_int.dis key_int.bin key_int.elf *.o
错误:
**** Build of configuration Default for project key-int ****
make all
arm-elf-gcc -Wall -Wstrict-prototypes -g -fomit-frame-pointer -ffreestanding -static -nostartfiles -I/usr/arm-elf/include -L/usr/arm-elf/lib -L/usr/lib/gcc/arm-elf/4.6.0/ -lgcc -lc -lm -lg -c -o head.o head.S
arm-elf-gcc -Wall -Wstrict-prototypes -g -fomit-frame-pointer -ffreestanding -static -nostartfiles -I/usr/arm-elf/include -L/usr/arm-elf/lib -L/usr/lib/gcc/arm-elf/4.6.0/ -lgcc -lc -lm -lg -c -o init.o init.c
arm-elf-gcc -Wall -Wstrict-prototypes -g -fomit-frame-pointer -ffreestanding -static -nostartfiles -I/usr/arm-elf/include -L/usr/arm-elf/lib -L/usr/lib/gcc/arm-elf/4.6.0/ -lgcc -lc -lm -lg -c -o interrupt.o interrupt.c
arm-elf-gcc -Wall -Wstrict-prototypes -g -fomit-frame-pointer -ffreestanding -static -nostartfiles -I/usr/arm-elf/include -L/usr/arm-elf/lib -L/usr/lib/gcc/arm-elf/4.6.0/ -lgcc -lc -lm -lg -c -o main.o main.c
/usr/arm-elf/lib/libg.a(lib_a-svfprintf.o): In function `_svfprintf_r':
arm-elf-gcc -Wall -Wstrict-prototypes -g -fomit-frame-pointer -ffreestanding -static -nostartfiles -I/usr/arm-elf/include -L/usr/arm-elf/lib -L/usr/lib/gcc/arm-elf/4.6.0/ -lgcc -lc -lm -lg -Tdefault.lds -o key_int.elf head.o init.o interrupt.o main.o
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdio/../../../../../newlib-1.19.0/newlib/libc/stdio/vfprintf.c:1084: undefined reference to `__ltdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdio/../../../../../newlib-1.19.0/newlib/libc/stdio/vfprintf.c:1544: undefined reference to `__eqdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdio/../../../../../newlib-1.19.0/newlib/libc/stdio/vfprintf.c:1591: undefined reference to `__nedf2'
/usr/arm-elf/lib/libg.a(lib_a-svfprintf.o): In function `cvt':
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdio/../../../../../newlib-1.19.0/newlib/libc/stdio/vfprintf.c:1724: undefined reference to `__eqdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdio/../../../../../newlib-1.19.0/newlib/libc/stdio/vfprintf.c:1720: undefined reference to `__nedf2'
/usr/arm-elf/lib/libg.a(lib_a-dtoa.o): In function `quorem':
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:60: undefined reference to `__udivsi3'
/usr/arm-elf/lib/libg.a(lib_a-dtoa.o): In function `_dtoa_r':
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:282: undefined reference to `__nedf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:347: undefined reference to `__floatunsidf'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:356: undefined reference to `__subdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:356: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:356: undefined reference to `__adddf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:356: undefined reference to `__floatsidf'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:356: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:356: undefined reference to `__adddf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:358: undefined reference to `__fixdfsi'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:359: undefined reference to `__ltdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:359: undefined reference to `__floatsidf'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:359: undefined reference to `__nedf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:364: undefined reference to `__gtdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:562: undefined reference to `__divdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:562: undefined reference to `__fixdfsi'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:563: undefined reference to `__floatsidf'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:563: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:563: undefined reference to `__subdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:590: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:590: undefined reference to `__nedf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:590: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:590: undefined reference to `__nedf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:562: undefined reference to `__divdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:562: undefined reference to `__fixdfsi'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:563: undefined reference to `__floatsidf'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:563: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:563: undefined reference to `__subdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:575: undefined reference to `__adddf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:576: undefined reference to `__ltdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:576: undefined reference to `__eqdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:556: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:556: undefined reference to `__gedf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:450: undefined reference to `__divdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:457: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:459: undefined reference to `__divdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:471: undefined reference to `__ltdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:477: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:480: undefined reference to `__floatsidf'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:480: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:480: undefined reference to `__adddf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:498: undefined reference to `__divdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:498: undefined reference to `__subdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:501: undefined reference to `__fixdfsi'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:502: undefined reference to `__floatsidf'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:502: undefined reference to `__subdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:504: undefined reference to `__gtdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:506: undefined reference to `__subdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:506: undefined reference to `__gtdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:506: undefined reference to `__subdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:506: undefined reference to `__ltdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:510: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:511: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:501: undefined reference to `__fixdfsi'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:502: undefined reference to `__floatsidf'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:502: undefined reference to `__subdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:504: undefined reference to `__ltdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:480: undefined reference to `__floatsidf'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:480: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:480: undefined reference to `__adddf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:485: undefined reference to `__subdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:486: undefined reference to `__gtdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:488: undefined reference to `__ltdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:463: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:468: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:518: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:521: undefined reference to `__fixdfsi'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:522: undefined reference to `__floatsidf'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:522: undefined reference to `__subdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:519: undefined reference to `__muldf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:521: undefined reference to `__fixdfsi'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:522: undefined reference to `__floatsidf'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:522: undefined reference to `__subdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:526: undefined reference to `__adddf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:526: undefined reference to `__gtdf2'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:528: undefined reference to `__subdf3'
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/dtoa.c:528: undefined reference to `__ltdf2'
/usr/arm-elf/lib/libg.a(lib_a-mprec.o): In function `__ratio':
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/mprec.c:950: undefined reference to `__divdf3'
/usr/arm-elf/lib/libg.a(lib_a-mprec.o): In function `_mprec_log10':
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/stdlib/../../../../../newlib-1.19.0/newlib/libc/stdlib/mprec.c:987: undefined reference to `__muldf3'
/usr/arm-elf/lib/libg.a(lib_a-syscalls.o): In function `_sbrk':
/tmp/yaourt-tmp-chenss/aur-cross-arm-elf-newlib/src/build/arm-elf/newlib/libc/sys/arm/../../../../../../newlib-1.19.0/newlib/libc/sys/arm/syscalls.c:506: undefined reference to `end'
collect2: ld returned 1 exit status
make: *** [all] 错误 1
**** Build Finished **** |
|