blob: b3f68bd8b7661c423c8da41b61399eae930cc903 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
device: 0.868
vnc: 0.862
instruction: 0.829
network: 0.801
socket: 0.764
mistranslation: 0.742
boot: 0.704
semantic: 0.703
other: 0.693
KVM: 0.668
graphic: 0.594
assembly: 0.307
Cygwin build fails due to ui/vnc-etc-tight.c
Configure:
./configure \
--prefix="./install/bin/" \
--interp-prefix="./install/bin-%M/" \
--cc="gcc -mno-cygwin" \
--host-cc="gcc" \
--disable-sdl \
--enable-system \
--disable-user \
--disable-linux-user \
--disable-darwin-user \
--disable-bsd-user \
--disable-xen \
--disable-brlapi \
--disable-vnc-tls \
--disable-vnc-sasl \
--disable-vnc-jpeg \
--disable-vnc-png \
--disable-vnc-thread \
--disable-curses \
--disable-curl \
--disable-bluez \
--disable-kvm \
--disable-nptl \
--disable-vde \
--disable-vhost-net
Versions of software
Cygwin 1.7
GNU Make 3.81
GCC 3.4.4 (/usr/lib/gcc/i686-pc-cygwin/3.4.4/libgcc.a)
QEMU 0.13.0
Result:
Function tight_detect_smooth_image24(...) uses "uint" type, that appears to be not defined in this scope. Prepending this function with
typedef unsigned int uint;
fixes build.
Seems like this problem has been fixed here:
http://git.qemu.org/?p=qemu.git;a=commitdiff;h=249cdb420a3b68cf6
... so we can close this bug ticket now.
|