程序中写了这些代码
double a,b,c;
a=1;
b=234;
c= divdp(a,b);
链接出错,找不到divdp这个符号,但我已经包含了mathlib库,并且在link选项里添加了路径 C:\ti\mathlib_c66x_3_0_1_1\lib
难道是需要重新编译mathlib库?我用的ccs版本为5.2.1,编译器为TI V7.3.4
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
程序中写了这些代码
double a,b,c;
a=1;
b=234;
c= divdp(a,b);
链接出错,找不到divdp这个符号,但我已经包含了mathlib库,并且在link选项里添加了路径 C:\ti\mathlib_c66x_3_0_1_1\lib
难道是需要重新编译mathlib库?我用的ccs版本为5.2.1,编译器为TI V7.3.4
自己找到方法了,添加mathlib的库文件 "C:\ti\mathlib_c66x_3_0_1_1\lib\mathlib.ae66" ,只添加路径是不行的,不知道算不算是一个bug