错误信息
/tmp/ccnVWlGn.o: In function `main':
color.c:(.text+0x11c): undefined reference to `sqrt'
collect2: error: ld returned 1 exit status
添加 -lm 来链接数学库
arm-none-linux-gnueabi-gcc color.c -o color -lm
错误信息
/tmp/ccnVWlGn.o: In function `main':
color.c:(.text+0x11c): undefined reference to `sqrt'
collect2: error: ld returned 1 exit status
添加 -lm 来链接数学库
arm-none-linux-gnueabi-gcc color.c -o color -lm