瀏覽代碼

perf tools: Fix syscalltbl build failure

The build of kernel v4.14-rc1 for i686 fails on RHEL 6 with the error
in tools/perf:

  util/syscalltbl.c:157: error: expected ';', ',' or ')' before '__maybe_unused'
  mv: cannot stat `util/.syscalltbl.o.tmp': No such file or directory

Fix it by placing/moving:

  #include <linux/compiler.h>

  outside of #ifdef HAVE_SYSCALL_TABLE block.

Signed-off-by: Akemi Yagi <toracat@elrepo.org>
Cc: Alan Bartlett <ajb@elrepo.org>
Link: http://lkml.kernel.org/r/oq41r8$1v9$1@blaine.gmane.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Akemi Yagi 7 年之前
父節點
當前提交
090657c9fb
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/perf/util/syscalltbl.c

+ 1 - 1
tools/perf/util/syscalltbl.c

@@ -15,9 +15,9 @@
 
 
 #include "syscalltbl.h"
 #include "syscalltbl.h"
 #include <stdlib.h>
 #include <stdlib.h>
+#include <linux/compiler.h>
 
 
 #ifdef HAVE_SYSCALL_TABLE
 #ifdef HAVE_SYSCALL_TABLE
-#include <linux/compiler.h>
 #include <string.h>
 #include <string.h>
 #include "string2.h"
 #include "string2.h"
 #include "util.h"
 #include "util.h"