summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorYunhao Tian <[email protected]>2021-11-30 17:11:09 +0800
committerYunhao Tian <[email protected]>2021-11-30 17:19:11 +0800
commitac20605e3f098687ce40349bbecc9266333d951b (patch)
tree8d707fc933b2b8cd6decd2bc46820c31c55fd294 /src/common
parentdba59217da489dc497cbe2b573e7e144d085c869 (diff)
Ignore certain compiler options on ARMCC
ARMCC also sets __GNU__ macro, but doesn't support GCC diagnostic pragmas.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/tusb_compiler.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/tusb_compiler.h b/src/common/tusb_compiler.h
index d3284c62a..38e6a16d0 100644
--- a/src/common/tusb_compiler.h
+++ b/src/common/tusb_compiler.h
@@ -137,9 +137,11 @@
#define TU_BSWAP16(u16) (__builtin_bswap16(u16))
#define TU_BSWAP32(u32) (__builtin_bswap32(u32))
+ #ifndef __ARMCC_VERSION
// List of obsolete callback function that is renamed and should not be defined.
// Put it here since only gcc support this pragma
- #pragma GCC poison tud_vendor_control_request_cb
+ #pragma GCC poison tud_vendor_control_request_cb
+ #endif
#elif defined(__TI_COMPILER_VERSION__)
#define TU_ATTR_ALIGNED(Bytes) __attribute__ ((aligned(Bytes)))