mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 20:51:47 +00:00
47a92b8286
In ubuntu systems the libaudit test was always failing due to the newline in the printf call not being escaped, which somehow didn't prevented the test from working as expected on other systems, such as fedora18. Fix it by removing the newline, as this is just a test, that program is just a compile test. The error messages, obtained using 'make V=1': CHK libaudit <stdin>: In function ‘main’: <stdin>:5:9: error: missing terminating " character [-Werror] <stdin>:5:2: error: missing terminating " character <stdin>:6:1: error: missing terminating " character [-Werror] <stdin>:6:1: error: missing terminating " character <stdin>:7:2: error: expected expression before ‘return’ <stdin>:8:1: error: expected ‘;’ before ‘}’ token cc1: all warnings being treated as errors config/Makefile:241: No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev After this change the test works as expected in all systems tested and the 'trace' tool is built when the needed devel packages are installed. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-0trw8qs9hafeopc0vj1sicay@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
247 lines
3.5 KiB
Makefile
247 lines
3.5 KiB
Makefile
define SOURCE_HELLO
|
|
#include <stdio.h>
|
|
int main(void)
|
|
{
|
|
return puts(\"hi\");
|
|
}
|
|
endef
|
|
|
|
ifndef NO_DWARF
|
|
define SOURCE_DWARF
|
|
#include <dwarf.h>
|
|
#include <elfutils/libdw.h>
|
|
#include <elfutils/version.h>
|
|
#ifndef _ELFUTILS_PREREQ
|
|
#error
|
|
#endif
|
|
|
|
int main(void)
|
|
{
|
|
Dwarf *dbg = dwarf_begin(0, DWARF_C_READ);
|
|
return (long)dbg;
|
|
}
|
|
endef
|
|
endif
|
|
|
|
define SOURCE_LIBELF
|
|
#include <libelf.h>
|
|
|
|
int main(void)
|
|
{
|
|
Elf *elf = elf_begin(0, ELF_C_READ, 0);
|
|
return (long)elf;
|
|
}
|
|
endef
|
|
|
|
define SOURCE_GLIBC
|
|
#include <gnu/libc-version.h>
|
|
|
|
int main(void)
|
|
{
|
|
const char *version = gnu_get_libc_version();
|
|
return (long)version;
|
|
}
|
|
endef
|
|
|
|
define SOURCE_BIONIC
|
|
#include <android/api-level.h>
|
|
|
|
int main(void)
|
|
{
|
|
return __ANDROID_API__;
|
|
}
|
|
endef
|
|
|
|
define SOURCE_ELF_MMAP
|
|
#include <libelf.h>
|
|
int main(void)
|
|
{
|
|
Elf *elf = elf_begin(0, ELF_C_READ_MMAP, 0);
|
|
return (long)elf;
|
|
}
|
|
endef
|
|
|
|
define SOURCE_ELF_GETPHDRNUM
|
|
#include <libelf.h>
|
|
int main(void)
|
|
{
|
|
size_t dst;
|
|
return elf_getphdrnum(0, &dst);
|
|
}
|
|
endef
|
|
|
|
ifndef NO_SLANG
|
|
define SOURCE_SLANG
|
|
#include <slang.h>
|
|
|
|
int main(void)
|
|
{
|
|
return SLsmg_init_smg();
|
|
}
|
|
endef
|
|
endif
|
|
|
|
ifndef NO_GTK2
|
|
define SOURCE_GTK2
|
|
#pragma GCC diagnostic ignored \"-Wstrict-prototypes\"
|
|
#include <gtk/gtk.h>
|
|
#pragma GCC diagnostic error \"-Wstrict-prototypes\"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
gtk_init(&argc, &argv);
|
|
|
|
return 0;
|
|
}
|
|
endef
|
|
|
|
define SOURCE_GTK2_INFOBAR
|
|
#pragma GCC diagnostic ignored \"-Wstrict-prototypes\"
|
|
#include <gtk/gtk.h>
|
|
#pragma GCC diagnostic error \"-Wstrict-prototypes\"
|
|
|
|
int main(void)
|
|
{
|
|
gtk_info_bar_new();
|
|
|
|
return 0;
|
|
}
|
|
endef
|
|
endif
|
|
|
|
ifndef NO_LIBPERL
|
|
define SOURCE_PERL_EMBED
|
|
#include <EXTERN.h>
|
|
#include <perl.h>
|
|
|
|
int main(void)
|
|
{
|
|
perl_alloc();
|
|
return 0;
|
|
}
|
|
endef
|
|
endif
|
|
|
|
ifndef NO_LIBPYTHON
|
|
define SOURCE_PYTHON_VERSION
|
|
#include <Python.h>
|
|
#if PY_VERSION_HEX >= 0x03000000
|
|
#error
|
|
#endif
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|
|
endef
|
|
define SOURCE_PYTHON_EMBED
|
|
#include <Python.h>
|
|
int main(void)
|
|
{
|
|
Py_Initialize();
|
|
return 0;
|
|
}
|
|
endef
|
|
endif
|
|
|
|
define SOURCE_BFD
|
|
#include <bfd.h>
|
|
|
|
int main(void)
|
|
{
|
|
bfd_demangle(0, 0, 0);
|
|
return 0;
|
|
}
|
|
endef
|
|
|
|
define SOURCE_CPLUS_DEMANGLE
|
|
extern char *cplus_demangle(const char *, int);
|
|
|
|
int main(void)
|
|
{
|
|
cplus_demangle(0, 0);
|
|
return 0;
|
|
}
|
|
endef
|
|
|
|
define SOURCE_STRLCPY
|
|
#include <stdlib.h>
|
|
extern size_t strlcpy(char *dest, const char *src, size_t size);
|
|
|
|
int main(void)
|
|
{
|
|
strlcpy(NULL, NULL, 0);
|
|
return 0;
|
|
}
|
|
endef
|
|
|
|
ifndef NO_LIBUNWIND
|
|
define SOURCE_LIBUNWIND
|
|
#include <libunwind.h>
|
|
#include <stdlib.h>
|
|
|
|
extern int UNW_OBJ(dwarf_search_unwind_table) (unw_addr_space_t as,
|
|
unw_word_t ip,
|
|
unw_dyn_info_t *di,
|
|
unw_proc_info_t *pi,
|
|
int need_unwind_info, void *arg);
|
|
|
|
|
|
#define dwarf_search_unwind_table UNW_OBJ(dwarf_search_unwind_table)
|
|
|
|
int main(void)
|
|
{
|
|
unw_addr_space_t addr_space;
|
|
addr_space = unw_create_addr_space(NULL, 0);
|
|
unw_init_remote(NULL, addr_space, NULL);
|
|
dwarf_search_unwind_table(addr_space, 0, NULL, NULL, 0, NULL);
|
|
return 0;
|
|
}
|
|
endef
|
|
endif
|
|
|
|
ifndef NO_BACKTRACE
|
|
define SOURCE_BACKTRACE
|
|
#include <execinfo.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
backtrace(NULL, 0);
|
|
backtrace_symbols(NULL, 0);
|
|
return 0;
|
|
}
|
|
endef
|
|
endif
|
|
|
|
ifndef NO_LIBAUDIT
|
|
define SOURCE_LIBAUDIT
|
|
#include <libaudit.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf(\"error message: %s\", audit_errno_to_name(0));
|
|
return audit_open();
|
|
}
|
|
endef
|
|
endif
|
|
|
|
define SOURCE_ON_EXIT
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
return on_exit(NULL, NULL);
|
|
}
|
|
endef
|
|
|
|
define SOURCE_LIBNUMA
|
|
#include <numa.h>
|
|
#include <numaif.h>
|
|
|
|
int main(void)
|
|
{
|
|
numa_available();
|
|
return 0;
|
|
}
|
|
endef
|