Guest User

Untitled

a guest
Apr 16th, 2024
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 6.46 KB | None | 0 0
  1. make API=sdl2
  2. fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
  3. fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
  4. fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
  5. fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
  6. Building dependencies for help.c
  7. Building dependencies for loadrecoil.c
  8. Building dependencies for recoil.c
  9. fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
  10. fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
  11. fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
  12. fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
  13. Compiling init.c
  14. init.c:2403:24: error: unknown type name '__sighandler_t'
  15.  2403 |   #define SIGHANDLER_T __sighandler_t
  16.       |                        ^~~~~~~~~~~~~~
  17. init.c:2407:1: note: in expansion of macro 'SIGHANDLER_T'
  18.  2407 | SIGHANDLER_T Handler_TERM=SIG_DFL;
  19.       | ^~~~~~~~~~~~
  20. init.c:2407:27: warning: initialization of 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
  21.  2407 | SIGHANDLER_T Handler_TERM=SIG_DFL;
  22.       |                           ^~~~~~~
  23. init.c:2403:24: error: unknown type name '__sighandler_t'
  24.  2403 |   #define SIGHANDLER_T __sighandler_t
  25.       |                        ^~~~~~~~~~~~~~
  26. init.c:2408:1: note: in expansion of macro 'SIGHANDLER_T'
  27.  2408 | SIGHANDLER_T Handler_INT=SIG_DFL;
  28.       | ^~~~~~~~~~~~
  29. init.c:2408:26: warning: initialization of 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
  30.  2408 | SIGHANDLER_T Handler_INT=SIG_DFL;
  31.       |                          ^~~~~~~
  32. init.c:2403:24: error: unknown type name '__sighandler_t'
  33.  2403 |   #define SIGHANDLER_T __sighandler_t
  34.       |                        ^~~~~~~~~~~~~~
  35. init.c:2409:1: note: in expansion of macro 'SIGHANDLER_T'
  36.  2409 | SIGHANDLER_T Handler_ABRT=SIG_DFL;
  37.       | ^~~~~~~~~~~~
  38. init.c:2409:27: warning: initialization of 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
  39.  2409 | SIGHANDLER_T Handler_ABRT=SIG_DFL;
  40.       |                           ^~~~~~~
  41. init.c:2403:24: error: unknown type name '__sighandler_t'
  42.  2403 |   #define SIGHANDLER_T __sighandler_t
  43.       |                        ^~~~~~~~~~~~~~
  44. init.c:2410:1: note: in expansion of macro 'SIGHANDLER_T'
  45.  2410 | SIGHANDLER_T Handler_SEGV=SIG_DFL;
  46.       | ^~~~~~~~~~~~
  47. init.c:2410:27: warning: initialization of 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
  48.  2410 | SIGHANDLER_T Handler_SEGV=SIG_DFL;
  49.       |                           ^~~~~~~
  50. init.c:2403:24: error: unknown type name '__sighandler_t'
  51.  2403 |   #define SIGHANDLER_T __sighandler_t
  52.       |                        ^~~~~~~~~~~~~~
  53. init.c:2411:1: note: in expansion of macro 'SIGHANDLER_T'
  54.  2411 | SIGHANDLER_T Handler_FPE=SIG_DFL;
  55.       | ^~~~~~~~~~~~
  56. init.c:2411:26: warning: initialization of 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
  57.  2411 | SIGHANDLER_T Handler_FPE=SIG_DFL;
  58.       |                          ^~~~~~~
  59. init.c: In function 'Sig_handler':
  60. init.c:2416:19: warning: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion]
  61.  2416 |   signal(SIGTERM, Handler_TERM);
  62.       |                   ^~~~~~~~~~~~
  63.       |                   |
  64.       |                   int
  65. In file included from init.c:51:
  66. /usr/include/signal.h:289:20: note: expected 'void (*)(int)' but argument is of type 'int'
  67.   289 | void (*signal(int, void (*)(int)))(int);
  68.       |                    ^~~~~~~~~~~~~
  69. init.c:2417:18: warning: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion]
  70.  2417 |   signal(SIGINT, Handler_INT);
  71.       |                  ^~~~~~~~~~~
  72.       |                  |
  73.       |                  int
  74. /usr/include/signal.h:289:20: note: expected 'void (*)(int)' but argument is of type 'int'
  75.   289 | void (*signal(int, void (*)(int)))(int);
  76.       |                    ^~~~~~~~~~~~~
  77. init.c:2418:19: warning: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion]
  78.  2418 |   signal(SIGABRT, Handler_ABRT);
  79.       |                   ^~~~~~~~~~~~
  80.       |                   |
  81.       |                   int
  82. /usr/include/signal.h:289:20: note: expected 'void (*)(int)' but argument is of type 'int'
  83.   289 | void (*signal(int, void (*)(int)))(int);
  84.       |                    ^~~~~~~~~~~~~
  85. init.c:2419:19: warning: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion]
  86.  2419 |   signal(SIGSEGV, Handler_SEGV);
  87.       |                   ^~~~~~~~~~~~
  88.       |                   |
  89.       |                   int
  90. /usr/include/signal.h:289:20: note: expected 'void (*)(int)' but argument is of type 'int'
  91.   289 | void (*signal(int, void (*)(int)))(int);
  92.       |                    ^~~~~~~~~~~~~
  93. init.c:2420:18: warning: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion]
  94.  2420 |   signal(SIGFPE, Handler_FPE);
  95.       |                  ^~~~~~~~~~~
  96.       |                  |
  97.       |                  int
  98. /usr/include/signal.h:289:20: note: expected 'void (*)(int)' but argument is of type 'int'
  99.   289 | void (*signal(int, void (*)(int)))(int);
  100.       |                    ^~~~~~~~~~~~~
  101. init.c: In function 'Init_sighandler':
  102. init.c:2438:15: warning: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
  103.  2438 |   Handler_TERM=signal(SIGTERM,Sig_handler);
  104.       |               ^
  105. init.c:2439:15: warning: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
  106.  2439 |   Handler_INT =signal(SIGINT,Sig_handler);
  107.       |               ^
  108. init.c:2440:15: warning: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
  109.  2440 |   Handler_ABRT=signal(SIGABRT,Sig_handler);
  110.       |               ^
  111. init.c:2441:15: warning: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
  112.  2441 |   Handler_SEGV=signal(SIGSEGV,Sig_handler);
  113.       |               ^
  114. init.c:2442:15: warning: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
  115.  2442 |   Handler_FPE =signal(SIGFPE,Sig_handler);
  116.       |               ^
  117. make: *** [Makefile:1203: ../obj/unix-sdl2/init.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment