Blame view

buildroot/buildroot-2016.08.1/package/eudev/0001-Only-use-pragma-for-ignoring-diagnostics-if-.patch 1.36 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  From dc8aa43b7b6d0cead7d8a0c1a151d289a5233a10 Mon Sep 17 00:00:00 2001
  From: Eric Le Bihan <eric.le.bihan.dev@free.fr>
  Date: Wed, 2 Apr 2014 12:36:52 +0200
  Subject: [PATCH] libudev: Only use #pragma for ignoring diagnostics if GCC
   version supports it.
  
  [Peter: update for 2.1.1, fix shared_assert issue]
  Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
  ---
   src/shared/macro.h |    8 +++++
   1 file changed, 8 insertions(+)
  
  diff --git a/src/shared/macro.h b/src/shared/macro.h
  --- a/src/shared/macro.h
  +++ b/src/shared/macro.h
  @@ -38,6 +38,7 @@
   #define _cleanup_(x) __attribute__((cleanup(x)))
   
   /* Temporarily disable some warnings */
  +#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
   #define DISABLE_WARNING_DECLARATION_AFTER_STATEMENT                     \
           _Pragma("GCC diagnostic push");                                 \
           _Pragma("GCC diagnostic ignored \"-Wdeclaration-after-statement\"")
  @@ -48,6 +49,13 @@
   
   #define REENABLE_WARNING                                                \
           _Pragma("GCC diagnostic pop")
  +#else
  +#define DISABLE_WARNING_DECLARATION_AFTER_STATEMENT
  +#define DISABLE_WARNING_FORMAT_NONLITERAL
  +#define REENABLE_WARNING
  +/* glibc unconditionally defines this, but it needs GCC 4.6+ */
  +#undef static_assert
  +#endif
   
   #define XCONCATENATE(x, y) x ## y
   #define CONCATENATE(x, y) XCONCATENATE(x, y)
  -- 
  1.7.9.5