无法编译我的Makefile?未定义对符号'pow @@ GLIBC_2.2.5'的引用

时间:2019-12-08 19:34:24

标签: c linux gcc

我正在尝试使用Makefile编译我的代码,但我不断收到错误消息:

未找到对符号pow @@ GLIBC_2.2.5'的引用

我将在下面提供我的makefile,但这是我正在使用的库:

#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>
#include <ctype.h>

这是我的Makefile

all: swap

swap: first.c
    gcc -Wall -Werror -fsanitize=address -std=c11 first.c -o first

clean:
    rm -rf first

您知道出了什么问题或需要添加到我的Makefile中吗

0 个答案:

没有答案