1 -include ..
/config-host.mak
8 TESTS
=linux-test testthread sha1-i386 test-i386 runcom
13 TESTS
+=sha1
# test_path
16 QEMU
=..
/i386-linux-user
/qemu-i386
20 hello-i386
: hello-i386.c
21 $(CC
) -nostdlib
$(CFLAGS
) -static
$(LDFLAGS
) -o
$@
$<
24 testthread
: testthread.c
25 $(CC
) $(CFLAGS
) $(LDFLAGS
) -o
$@
$< -lpthread
27 test_path
: test_path.c
28 $(CC
) $(CFLAGS
) $(LDFLAGS
) -o
$@
$<
29 .
/$@ ||
{ rm $@
; exit
1; }
31 # i386/x86_64 emulation test (test various opcodes) */
32 test-i386
: test-i386.c test-i386-code16.S test-i386-vm86.S \
33 test-i386.h test-i386-shift.h test-i386-muldiv.h
34 $(CC
) $(CFLAGS
) $(LDFLAGS
) -static
-o
$@ \
35 test-i386.c test-i386-code16.S test-i386-vm86.S
-lm
37 test-x86_64
: test-i386.c \
38 test-i386.h test-i386-shift.h test-i386-muldiv.h
39 $(CC
) $(CFLAGS
) $(LDFLAGS
) -static
-o
$@ test-i386.c
-lm
43 .
/test-i386
> test-i386.ref
47 $(QEMU
) test-i386
> test-i386.out
48 @if diff
-u test-i386.ref test-i386.out
; then echo
"Auto Test OK"; fi
50 $(QEMU
) -no-code-copy test-i386
> test-i386.out
51 @if diff
-u test-i386.ref test-i386.out
; then echo
"Auto Test OK (no code copy)"; fi
54 # generic Linux and CPU test
55 linux-test
: linux-test.c
56 $(CC
) $(CFLAGS
) $(LDFLAGS
) -o
$@
$< -lm
60 $(CC
) $(CFLAGS
) $(LDFLAGS
) -o
$@
$<
63 $(HOST_CC
) $(CFLAGS
) $(LDFLAGS
) -o
$@
$<
67 time
$(QEMU
) .
/sha1-i386
71 $(CC
) $(CFLAGS
) $(LDFLAGS
) -o
$@
$<
73 # NOTE: -fomit-frame-pointer is currently needed : this is a bug in libqemu
74 qruncom
: qruncom.c ..
/i386-user
/libqemu.a
75 $(CC
) $(CFLAGS
) -fomit-frame-pointer
$(LDFLAGS
) -I..
/target-i386
-I..
-I..
/i386-user
-I..
/fpu \
76 -o
$@
$< -L..
/i386-user
-lqemu
-lm
79 hello-arm
: hello-arm.o
82 hello-arm.o
: hello-arm.c
83 arm-linux-gcc
-Wall
-g
-O2
-c
-o
$@
$<
86 hello-mips
: hello-mips.c
87 mips-linux-gnu-gcc
-nostdlib
-static
-mno-abicalls
-fno-PIC
-mabi
=32 -Wall
-Wextra
-g
-O2
-o
$@
$<
89 hello-mipsel
: hello-mips.c
90 mipsel-linux-gnu-gcc
-nostdlib
-static
-mno-abicalls
-fno-PIC
-mabi
=32 -Wall
-Wextra
-g
-O2
-o
$@
$<
92 # XXX: find a way to compile easily a test for each arch
94 @for arch in i386 arm armeb sparc ppc mips mipsel
; do \
95 ..
/$${arch}-linux-user
/qemu-
$${arch} $${arch}/ls
-l linux-test.c
; \
99 rm -f
*~
*.o test-i386.out test-i386.ref \
100 test-x86_64.log test-x86_64.ref qruncom
$(TESTS
)