Advertisement
Guest User

log

a guest
Apr 7th, 2020
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 11.42 KB | None | 0 0
  1. [amb@localhost path-finiding]$ x86_64-w64-mingw32-gcc `pkg-config --cflags gtk+-3.0` main.c gui.c pathfinder.c -o main `pkg-config --libs gtk+-3.0` -I/usr/include
  2. In file included from main.c:1:
  3. /usr/include/stdio.h:77:19: error: conflicting types for 'ssize_t'
  4.  typedef __ssize_t ssize_t;
  5.                    ^~~~~~~
  6. In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/stddef.h:7,
  7.                  from /usr/lib/gcc/x86_64-w64-mingw32/8.3.0/include/stddef.h:1,
  8.                  from /usr/include/stdio.h:33,
  9.                  from main.c:1:
  10. /usr/x86_64-w64-mingw32/sys-root/mingw/include/crtdefs.h:45:35: note: previous declaration of 'ssize_t' was here
  11.  __MINGW_EXTENSION typedef __int64 ssize_t;
  12.                                    ^~~~~~~
  13. In file included from /usr/include/sys/types.h:129,
  14.                  from /usr/include/stdlib.h:394,
  15.                  from main.c:2:
  16. /usr/include/bits/types/time_t.h:7:18: error: conflicting types for 'time_t'
  17.  typedef __time_t time_t;
  18.                   ^~~~~~
  19. In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/stddef.h:7,
  20.                  from /usr/lib/gcc/x86_64-w64-mingw32/8.3.0/include/stddef.h:1,
  21.                  from /usr/include/stdio.h:33,
  22.                  from main.c:1:
  23. /usr/x86_64-w64-mingw32/sys-root/mingw/include/crtdefs.h:138:20: note: previous declaration of 'time_t' was here
  24.  typedef __time64_t time_t;
  25.                     ^~~~~~
  26. In file included from /usr/include/argp.h:27,
  27.                  from main.c:3:
  28. /usr/include/errno.h:38: warning: "errno" redefined
  29.  # define errno (*__errno_location ())
  30.  
  31. In file included from /usr/lib/gcc/x86_64-w64-mingw32/8.3.0/include/stddef.h:1,
  32.                  from /usr/include/stdio.h:33,
  33.                  from main.c:1:
  34. /usr/x86_64-w64-mingw32/sys-root/mingw/include/stddef.h:19: note: this is the location of the previous definition
  35.  #define errno (*_errno())
  36.  
  37. In file included from /usr/lib64/glib-2.0/include/glibconfig.h:9,
  38.                  from /usr/include/glib-2.0/glib/gtypes.h:32,
  39.                  from /usr/include/glib-2.0/glib/galloca.h:32,
  40.                  from /usr/include/glib-2.0/glib.h:30,
  41.                  from /usr/include/gtk-3.0/gdk/gdkconfig.h:13,
  42.                  from /usr/include/gtk-3.0/gdk/gdk.h:30,
  43.                  from /usr/include/gtk-3.0/gtk/gtk.h:30,
  44.                  from gui.h:4,
  45.                  from main.c:6:
  46. /usr/include/glib-2.0/glib/gtypes.h: In function '_GLIB_CHECKED_ADD_U64':
  47. /usr/include/glib-2.0/glib/gmacros.h:277:53: error: size of array '_GStaticAssertCompileTimeAssertion_0' is negative
  48.  #define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __COUNTER__)[(expr) ? 1 : -1] G_GNUC_UNUSED
  49.                                                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  50. /usr/include/glib-2.0/glib/gmacros.h:274:47: note: in definition of macro 'G_PASTE_ARGS'
  51.  #define G_PASTE_ARGS(identifier1,identifier2) identifier1 ## identifier2
  52.                                                ^~~~~~~~~~~
  53. /usr/include/glib-2.0/glib/gmacros.h:277:44: note: in expansion of macro 'G_PASTE'
  54.  #define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __COUNTER__)[(expr) ? 1 : -1] G_GNUC_UNUSED
  55.                                             ^~~~~~~
  56. /usr/include/glib-2.0/glib/gtypes.h:423:3: note: in expansion of macro 'G_STATIC_ASSERT'
  57.    G_STATIC_ASSERT(sizeof (unsigned long long) == sizeof (guint64));
  58.    ^~~~~~~~~~~~~~~
  59. In file included from /usr/include/time.h:38,
  60.                  from /usr/include/glib-2.0/glib/gtypes.h:35,
  61.                  from /usr/include/glib-2.0/glib/galloca.h:32,
  62.                  from /usr/include/glib-2.0/glib.h:30,
  63.                  from /usr/include/gtk-3.0/gdk/gdkconfig.h:13,
  64.                  from /usr/include/gtk-3.0/gdk/gdk.h:30,
  65.                  from /usr/include/gtk-3.0/gtk/gtk.h:30,
  66.                  from gui.h:4,
  67.                  from gui.c:1:
  68. /usr/include/bits/types/time_t.h:7:18: error: conflicting types for 'time_t'
  69.  typedef __time_t time_t;
  70.                   ^~~~~~
  71. In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/stddef.h:7,
  72.                  from /usr/lib/gcc/x86_64-w64-mingw32/8.3.0/include/stddef.h:1,
  73.                  from /usr/include/glib-2.0/glib/gmacros.h:38,
  74.                  from /usr/lib64/glib-2.0/include/glibconfig.h:9,
  75.                  from /usr/include/glib-2.0/glib/gtypes.h:32,
  76.                  from /usr/include/glib-2.0/glib/galloca.h:32,
  77.                  from /usr/include/glib-2.0/glib.h:30,
  78.                  from /usr/include/gtk-3.0/gdk/gdkconfig.h:13,
  79.                  from /usr/include/gtk-3.0/gdk/gdk.h:30,
  80.                  from /usr/include/gtk-3.0/gtk/gtk.h:30,
  81.                  from gui.h:4,
  82.                  from gui.c:1:
  83. /usr/x86_64-w64-mingw32/sys-root/mingw/include/crtdefs.h:138:20: note: previous declaration of 'time_t' was here
  84.  typedef __time64_t time_t;
  85.                     ^~~~~~
  86. In file included from /usr/lib64/glib-2.0/include/glibconfig.h:9,
  87.                  from /usr/include/glib-2.0/glib/gtypes.h:32,
  88.                  from /usr/include/glib-2.0/glib/galloca.h:32,
  89.                  from /usr/include/glib-2.0/glib.h:30,
  90.                  from /usr/include/gtk-3.0/gdk/gdkconfig.h:13,
  91.                  from /usr/include/gtk-3.0/gdk/gdk.h:30,
  92.                  from /usr/include/gtk-3.0/gtk/gtk.h:30,
  93.                  from gui.h:4,
  94.                  from gui.c:1:
  95. /usr/include/glib-2.0/glib/gtypes.h: In function '_GLIB_CHECKED_ADD_U64':
  96. /usr/include/glib-2.0/glib/gmacros.h:277:53: error: size of array '_GStaticAssertCompileTimeAssertion_0' is negative
  97.  #define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __COUNTER__)[(expr) ? 1 : -1] G_GNUC_UNUSED
  98.                                                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  99. /usr/include/glib-2.0/glib/gmacros.h:274:47: note: in definition of macro 'G_PASTE_ARGS'
  100.  #define G_PASTE_ARGS(identifier1,identifier2) identifier1 ## identifier2
  101.                                                ^~~~~~~~~~~
  102. /usr/include/glib-2.0/glib/gmacros.h:277:44: note: in expansion of macro 'G_PASTE'
  103.  #define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __COUNTER__)[(expr) ? 1 : -1] G_GNUC_UNUSED
  104.                                             ^~~~~~~
  105. /usr/include/glib-2.0/glib/gtypes.h:423:3: note: in expansion of macro 'G_STATIC_ASSERT'
  106.    G_STATIC_ASSERT(sizeof (unsigned long long) == sizeof (guint64));
  107.    ^~~~~~~~~~~~~~~
  108. In file included from /usr/include/stdlib.h:394,
  109.                  from /usr/include/glib-2.0/glib/gutils.h:306,
  110.                  from /usr/include/glib-2.0/glib/gthread.h:34,
  111.                  from /usr/include/glib-2.0/glib/gasyncqueue.h:32,
  112.                  from /usr/include/glib-2.0/glib.h:32,
  113.                  from /usr/include/gtk-3.0/gdk/gdkconfig.h:13,
  114.                  from /usr/include/gtk-3.0/gdk/gdk.h:30,
  115.                  from /usr/include/gtk-3.0/gtk/gtk.h:30,
  116.                  from gui.h:4,
  117.                  from gui.c:1:
  118. /usr/include/sys/types.h: At top level:
  119. /usr/include/sys/types.h:108:19: error: conflicting types for 'ssize_t'
  120.  typedef __ssize_t ssize_t;
  121.                    ^~~~~~~
  122. In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/stddef.h:7,
  123.                  from /usr/lib/gcc/x86_64-w64-mingw32/8.3.0/include/stddef.h:1,
  124.                  from /usr/include/glib-2.0/glib/gmacros.h:38,
  125.                  from /usr/lib64/glib-2.0/include/glibconfig.h:9,
  126.                  from /usr/include/glib-2.0/glib/gtypes.h:32,
  127.                  from /usr/include/glib-2.0/glib/galloca.h:32,
  128.                  from /usr/include/glib-2.0/glib.h:30,
  129.                  from /usr/include/gtk-3.0/gdk/gdkconfig.h:13,
  130.                  from /usr/include/gtk-3.0/gdk/gdk.h:30,
  131.                  from /usr/include/gtk-3.0/gtk/gtk.h:30,
  132.                  from gui.h:4,
  133.                  from gui.c:1:
  134. /usr/x86_64-w64-mingw32/sys-root/mingw/include/crtdefs.h:45:35: note: previous declaration of 'ssize_t' was here
  135.  __MINGW_EXTENSION typedef __int64 ssize_t;
  136.                                    ^~~~~~~
  137. In file included from pathfinder.c:1:
  138. /usr/include/stdio.h:77:19: error: conflicting types for 'ssize_t'
  139.  typedef __ssize_t ssize_t;
  140.                    ^~~~~~~
  141. In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/stddef.h:7,
  142.                  from /usr/lib/gcc/x86_64-w64-mingw32/8.3.0/include/stddef.h:1,
  143.                  from /usr/include/stdio.h:33,
  144.                  from pathfinder.c:1:
  145. /usr/x86_64-w64-mingw32/sys-root/mingw/include/crtdefs.h:45:35: note: previous declaration of 'ssize_t' was here
  146.  __MINGW_EXTENSION typedef __int64 ssize_t;
  147.                                    ^~~~~~~
  148. In file included from /usr/include/sys/types.h:129,
  149.                  from /usr/include/stdlib.h:394,
  150.                  from pathfinder.c:2:
  151. /usr/include/bits/types/time_t.h:7:18: error: conflicting types for 'time_t'
  152.  typedef __time_t time_t;
  153.                   ^~~~~~
  154. In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/stddef.h:7,
  155.                  from /usr/lib/gcc/x86_64-w64-mingw32/8.3.0/include/stddef.h:1,
  156.                  from /usr/include/stdio.h:33,
  157.                  from pathfinder.c:1:
  158. /usr/x86_64-w64-mingw32/sys-root/mingw/include/crtdefs.h:138:20: note: previous declaration of 'time_t' was here
  159.  typedef __time64_t time_t;
  160.                     ^~~~~~
  161. In file included from /usr/include/argp.h:27,
  162.                  from pathfinder.c:3:
  163. /usr/include/errno.h:38: warning: "errno" redefined
  164.  # define errno (*__errno_location ())
  165.  
  166. In file included from /usr/lib/gcc/x86_64-w64-mingw32/8.3.0/include/stddef.h:1,
  167.                  from /usr/include/stdio.h:33,
  168.                  from pathfinder.c:1:
  169. /usr/x86_64-w64-mingw32/sys-root/mingw/include/stddef.h:19: note: this is the location of the previous definition
  170.  #define errno (*_errno())
  171.  
  172. In file included from /usr/lib64/glib-2.0/include/glibconfig.h:9,
  173.                  from /usr/include/glib-2.0/glib/gtypes.h:32,
  174.                  from /usr/include/glib-2.0/glib/galloca.h:32,
  175.                  from /usr/include/glib-2.0/glib.h:30,
  176.                  from /usr/include/gtk-3.0/gdk/gdkconfig.h:13,
  177.                  from /usr/include/gtk-3.0/gdk/gdk.h:30,
  178.                  from /usr/include/gtk-3.0/gtk/gtk.h:30,
  179.                  from designer.h:5,
  180.                  from pathfinder.h:4,
  181.                  from pathfinder.c:7:
  182. /usr/include/glib-2.0/glib/gtypes.h: In function '_GLIB_CHECKED_ADD_U64':
  183. /usr/include/glib-2.0/glib/gmacros.h:277:53: error: size of array '_GStaticAssertCompileTimeAssertion_0' is negative
  184.  #define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __COUNTER__)[(expr) ? 1 : -1] G_GNUC_UNUSED
  185.                                                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  186. /usr/include/glib-2.0/glib/gmacros.h:274:47: note: in definition of macro 'G_PASTE_ARGS'
  187.  #define G_PASTE_ARGS(identifier1,identifier2) identifier1 ## identifier2
  188.                                                ^~~~~~~~~~~
  189. /usr/include/glib-2.0/glib/gmacros.h:277:44: note: in expansion of macro 'G_PASTE'
  190.  #define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __COUNTER__)[(expr) ? 1 : -1] G_GNUC_UNUSED
  191.                                             ^~~~~~~
  192. /usr/include/glib-2.0/glib/gtypes.h:423:3: note: in expansion of macro 'G_STATIC_ASSERT'
  193.    G_STATIC_ASSERT(sizeof (unsigned long long) == sizeof (guint64));
  194.    ^~~~~~~~~~~~~~~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement