multiply defined导致编译不过

STM32F411VETx-6157.axf: Error: L6200E: Symbol SensorReadMemory multiply defined (by sensor_spi_common.o and libgsl.o).

A、这个错误信息表示在链接阶段,符号 "SensorReadMemory" 被定义了两次。这可能是由于两个不同的源文件(sensor_spi_common.o 和 libgsl.o)都包含了对 "SensorReadMemory" 的定义。为了解决这个问题,你需要检查这两个源文件,确保它们没有重复定义 “SensorReadMemory"

B\如果确认只在一个sensor_spi_common.c中定义了,在另一个libgsl.c中没有定义,那么请确认下在libgsl.c中是Include了sensor_spi_common.c文件,如果include之后,就会在编译的时候,编译了两次,导致出现defined了两次

你可能感兴趣的:(c语言)