简体   繁体   English

#pragma pack(show)与GCC

[英]#pragma pack(show) with GCC

Is there a way to show the memory "pack" size with GCC ? 有没有办法用GCC显示内存“打包”大小?

In Microsoft Visual C++, I am using: 在Microsoft Visual C ++中,我使用:

 #pragma pack(show) 

which displays the value in a warning message; 它在警告消息中显示值; see Microsoft's documentation . 请参阅Microsoft的文档

What is the equivalent with GCC? 与GCC相当的是什么?

由于我无法在相关 文档中看到此类功能,因此我将得出结论,GCC无法做到这一点。

I use a static assertion whenever I pack a structure and want to see its size. 每当我打包一个结构并希望看到它的大小时,我就会使用静态断言。

/*
   The static_assert macro will generate an error at compile-time, if the predicate is false
   but will only work for predicates that are resolvable at compile-time!

   E.g.: to assert the size of a data structure, static_assert(sizeof(struct_t) == 10)
*/
#define STATIC_ASSERT(COND,MSG)      typedef char static_assertion_##MSG[(!!(COND))*2-1]
/* token pasting madness: */
#define COMPILE_TIME_ASSERT3(X,L)     STATIC_ASSERT(X,at_line_##L)             /* add line-number to error message for better warnings, especially GCC will tell the name of the variable as well */
#define COMPILE_TIME_ASSERT2(X,L)     COMPILE_TIME_ASSERT3(X, L)               /* expand line-number */
#define static_assert(X)              COMPILE_TIME_ASSERT2(X, __LINE__)        /* call with line-number macro */

#define PACKED  __attribute__ ((gcc_struct, __packed__))

typedef struct {
  uint8_t bytes[3];
  uint32_t looong;
} PACKED struct_t;
static_assert(sizeof(struct_t) == 7);

This will give you a compile time warning whenever the static assertion fails. 每当静态断言失败时,这将为您提供编译时警告。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM