MinGW 中的消息“未知类型名‘ uint8_t’”

我在 MinGW 中使用 C 得到“未知类型名‘ uint8 _ t’”和其他类似的名称。

我该怎么解决这个问题?

266508 次浏览

Try including stdint.h or inttypes.h.

To use the uint8_t type alias, you have to include the stdint.h standard header.

To be clear: If the order of your #includes matters and it is not part of your design pattern (read: you don't know why), then you need to rethink your design. Most likely, this just means you need to add the #include to the header file causing problems.

At this point, I have little interest in discussing/defending the merits of the example, but I will leave it up as it illustrates some nuances in the compilation process and why they result in errors.


You need to #include the stdint.h before you #include any other library interfaces that need it.

Example:

My LCD library uses uint8_t types. I wrote my library with an interface (Display.h) and an implementation (Display.c).

In display.c, I have the following includes.

#include <stdint.h>
#include <string.h>
#include <avr/io.h>
#include <Display.h>
#include <GlobalTime.h>

And this works.

However, if I rearrange them like so:

#include <string.h>
#include <avr/io.h>
#include <Display.h>
#include <GlobalTime.h>
#include <stdint.h>

I get the error you describe. This is because Display.h needs things from stdint.h, but it can't access it because that information is compiled after Display.h is compiled.

So move stdint.h above any library that needs it and you shouldn't get the error any more.

I had to include "PROJECT_NAME/osdep.h" and that includes the OS-specific configurations.

I would look in other files using the types you are interested in and find where/how they are defined (by looking at includes).