gpt4 book ai didi

c - libfixmath 未定义引用

转载 作者:行者123 更新时间:2023-11-30 19:30:10 24 4
gpt4 key购买 nike

我正在尝试为 libfixmath 库生成一些示例代码,但收到错误“对 `fix16_mul' 的 undefined reference ”

代码是:

#include <stdio.h>
#include "libfixmath/fixmath.h"

int main(){

fix16_t res = fix16_mul(fix16_from_int(1), fix16_from_int(2));

return 0;
}

该库位于指定路径,我仅使用命令进行编译

gcc -o testfix testfix.c

最佳答案

documentation
To use the fixmath library, include the header <fixmath/fixmath.h>, and link the application with -lfixmath, or use pkg-config to determine the compiler and linker flags.

所以改变

gcc -o testfix testfix.c

gcc -o testfix testfix.c -lfixmath

它应该可以工作。

关于c - libfixmath 未定义引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51612961/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com