mirror of https://github.com/xemu-project/xemu.git
tests: Fix 'make test' for i686 hosts (build regression)
'make test' is broken at least since commitbaacf04799
. Several source files were moved to util/, and some of them there split, so add the missing prefix and new files to fix the compiler and linker errors. There remain more issues, but these changes allow running the test on a Linux i686 host. Cc: qemu-stable@nongnu.org Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> (cherry picked from commit6d4adef48d
) Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
This commit is contained in:
parent
a290aeebc4
commit
151be4f61f
|
@ -1,12 +1,15 @@
|
|||
/* Test path override code */
|
||||
#define _GNU_SOURCE
|
||||
#include "config-host.h"
|
||||
#include "iov.c"
|
||||
#include "cutils.c"
|
||||
#include "path.c"
|
||||
#include "trace.c"
|
||||
#include "util/cutils.c"
|
||||
#include "util/hexdump.c"
|
||||
#include "util/iov.c"
|
||||
#include "util/path.c"
|
||||
#include "util/qemu-timer-common.c"
|
||||
#include "trace/control.c"
|
||||
#include "../trace/generated-events.c"
|
||||
#ifdef CONFIG_TRACE_SIMPLE
|
||||
#include "../trace/simple.c"
|
||||
#include "trace/simple.c"
|
||||
#endif
|
||||
|
||||
#include <stdarg.h>
|
||||
|
|
Loading…
Reference in New Issue