Skip to content
Snippets Groups Projects
Commit 92dfc369 authored by Jakub Jirutka's avatar Jakub Jirutka :flag_ua:
Browse files

testing/clsync: build only for x86 and x86_64

Build failed on armhf and aarch64 with:

In file included from privileged.c:64:0:
privileged.c:88:34: error: '__NR_alarm' undeclared here (not in a function)
  BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_##syscall, 0, 1), \
                                  ^
privileged.c:94:2: note: in expansion of macro 'SECCOMP_ALLOW_ACCUM_SYSCALL'
  SECCOMP_ALLOW_ACCUM_SYSCALL(alarm),    \
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
privileged.c:142:2: note: in expansion of macro 'FILTER_TABLE_NONPRIV'
  FILTER_TABLE_NONPRIV
  ^~~~~~~~~~~~~~~~~~~~
privileged.c:88:34: error: '__NR_select' undeclared here (not in a function)
  BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_##syscall, 0, 1), \
                                  ^
privileged.c:107:2: note: in expansion of macro 'SECCOMP_ALLOW_ACCUM_SYSCALL'
  SECCOMP_ALLOW_ACCUM_SYSCALL(select),    \
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
privileged.c:142:2: note: in expansion of macro 'FILTER_TABLE_NONPRIV'
  FILTER_TABLE_NONPRIV
  ^~~~~~~~~~~~~~~~~~~~
privileged.c:88:34: error: '__NR_mmap' undeclared here (not in a function)
  BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_##syscall, 0, 1), \
                                  ^
privileged.c:134:2: note: in expansion of macro 'SECCOMP_ALLOW_ACCUM_SYSCALL'
  SECCOMP_ALLOW_ACCUM_SYSCALL(mmap),    \
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
privileged.c:143:2: note: in expansion of macro 'FILTER_TABLE_ARCHDEPENDED'
  FILTER_TABLE_ARCHDEPENDED
  ^~~~~~~~~~~~~~~~~~~~~~~~~
privileged.c:88:34: error: initializer element is not constant
  BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_##syscall, 0, 1), \
                                  ^
privileged.c:94:2: note: in expansion of macro 'SECCOMP_ALLOW_ACCUM_SYSCALL'
  SECCOMP_ALLOW_ACCUM_SYSCALL(alarm),    \
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
privileged.c:148:2: note: in expansion of macro 'FILTER_TABLE_NONPRIV'
  FILTER_TABLE_NONPRIV
  ^~~~~~~~~~~~~~~~~~~~
privileged.c:88:34: note: (near initialization for 'filter_w_mprotect_table[5].k')
  BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_##syscall, 0, 1), \
                                  ^
privileged.c:94:2: note: in expansion of macro 'SECCOMP_ALLOW_ACCUM_SYSCALL'
  SECCOMP_ALLOW_ACCUM_SYSCALL(alarm),    \
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
privileged.c:148:2: note: in expansion of macro 'FILTER_TABLE_NONPRIV'
  FILTER_TABLE_NONPRIV
  ^~~~~~~~~~~~~~~~~~~~
privileged.c:88:34: error: initializer element is not constant
  BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_##syscall, 0, 1), \
                                  ^
privileged.c:107:2: note: in expansion of macro 'SECCOMP_ALLOW_ACCUM_SYSCALL'
  SECCOMP_ALLOW_ACCUM_SYSCALL(select),    \
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
privileged.c:148:2: note: in expansion of macro 'FILTER_TABLE_NONPRIV'
  FILTER_TABLE_NONPRIV
  ^~~~~~~~~~~~~~~~~~~~
privileged.c:88:34: note: (near initialization for 'filter_w_mprotect_table[31].k')
  BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_##syscall, 0, 1), \
                                  ^
privileged.c:107:2: note: in expansion of macro 'SECCOMP_ALLOW_ACCUM_SYSCALL'
  SECCOMP_ALLOW_ACCUM_SYSCALL(select),    \
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
privileged.c:148:2: note: in expansion of macro 'FILTER_TABLE_NONPRIV'
  FILTER_TABLE_NONPRIV
  ^~~~~~~~~~~~~~~~~~~~
privileged.c:88:34: error: initializer element is not constant
  BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_##syscall, 0, 1), \
                                  ^
privileged.c:134:2: note: in expansion of macro 'SECCOMP_ALLOW_ACCUM_SYSCALL'
  SECCOMP_ALLOW_ACCUM_SYSCALL(mmap),    \
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
privileged.c:149:2: note: in expansion of macro 'FILTER_TABLE_ARCHDEPENDED'
  FILTER_TABLE_ARCHDEPENDED
  ^~~~~~~~~~~~~~~~~~~~~~~~~
privileged.c:88:34: note: (near initialization for 'filter_w_mprotect_table[59].k')
  BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_##syscall, 0, 1), \
                                  ^
privileged.c:134:2: note: in expansion of macro 'SECCOMP_ALLOW_ACCUM_SYSCALL'
  SECCOMP_ALLOW_ACCUM_SYSCALL(mmap),    \
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
privileged.c:149:2: note: in expansion of macro 'FILTER_TABLE_ARCHDEPENDED'
  FILTER_TABLE_ARCHDEPENDED
  ^~~~~~~~~~~~~~~~~~~~~~~~~
parent affb59fb
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ pkgver=0.4.2
pkgrel=0
pkgdesc="File live sync daemon based on inotify"
url="https://github.com/xaionaro/clsync"
arch="all"
arch="x86 x86_64"
license="GPLv3+"
depends=""
depends_dev="glib-dev fts-dev libcap-dev libexecinfo-dev linux-headers musl-dev"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment