Advertisement
Guest User

Untitled

a guest
Jan 29th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 1.78 KB | None | 0 0
  1. /home/malte/repos/riscv-qemu/linux-user/syscall.c:6475:22: error: 'F_EXLCK' undeclared here (not in a function); did you mean 'F_RDLCK'?
  2.      TRANSTBL_CONVERT(F_EXLCK),
  3.                       ^
  4. /home/malte/repos/riscv-qemu/linux-user/syscall.c:6470:51: note: in definition of macro 'TRANSTBL_CONVERT'
  5.  #define TRANSTBL_CONVERT(a) { -1, TARGET_##a, -1, a }
  6.                                                    ^
  7. /home/malte/repos/riscv-qemu/linux-user/syscall.c:6476:22: error: 'F_SHLCK' undeclared here (not in a function); did you mean 'F_EXLCK'?
  8.      TRANSTBL_CONVERT(F_SHLCK),
  9.                       ^
  10. /home/malte/repos/riscv-qemu/linux-user/syscall.c:6470:51: note: in definition of macro 'TRANSTBL_CONVERT'
  11.  #define TRANSTBL_CONVERT(a) { -1, TARGET_##a, -1, a }
  12.                                                    ^
  13. /home/malte/repos/riscv-qemu/linux-user/syscall.c: In function 'target_to_host_sigevent':
  14. /home/malte/repos/riscv-qemu/linux-user/syscall.c:7065:16: error: 'struct sigevent' has no member named '_sigev_un'; did you mean 'sigev_value'?
  15.      host_sevp->_sigev_un._tid = tswap32(target_sevp->_sigev_un._tid);
  16.                 ^~~~~~~~~
  17.                 sigev_value
  18. /home/malte/repos/riscv-qemu/linux-user/syscall.c:7065:25: error: '(const bitmask_transtbl *)&<erroneous-expression>' is a pointer; did you mean to use '->'?
  19.      host_sevp->_sigev_un._tid = tswap32(target_sevp->_sigev_un._tid);
  20.                          ^
  21.                          ->
  22. /home/malte/repos/riscv-qemu/linux-user/syscall.c:7065:5: warning: statement with no effect [-Wunused-value]
  23.      host_sevp->_sigev_un._tid = tswap32(target_sevp->_sigev_un._tid);
  24.      ^~~~~~~~~
  25. make[1]: *** [/home/malte/repos/riscv-qemu/rules.mak:66: linux-user/syscall.o] Error 1
  26. make: *** [Makefile:387: subdir-aarch64-linux-user] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement