[排错] linux gcc编译出现Undefined reference to 'sqrt' 类似错误时间:2022-11-28 05:28:49明明已经include了math.h,还是提示没有sqrt和floor等各种数学函数,解决办法是显式制定要链接libm数学库: gcc -o target target.c -lm -lm一定要放最后,否则编译失败