[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 4/5] tests/docker: Update VirGL to v0.8.0
From: |
Alex Bennée |
Subject: |
[PATCH v1 4/5] tests/docker: Update VirGL to v0.8.0 |
Date: |
Mon, 9 Mar 2020 20:23:17 +0000 |
From: Philippe Mathieu-Daudé <address@hidden>
Building the qemu:debian-amd64 fails when building VirGL:
make[2]: Entering directory '/usr/src/virglrenderer/src/gallium/auxiliary'
CC cso_cache/cso_cache.lo
CC cso_cache/cso_hash.lo
CC os/os_misc.lo
CC util/u_debug.lo
CC util/u_debug_describe.lo
CC util/u_format.lo
GEN util/u_format_table.c
Traceback (most recent call last):
File "./util/u_format_table.py", line 168, in <module>
main()
File "./util/u_format_table.py", line 164, in main
write_format_table(formats)
File "./util/u_format_table.py", line 132, in write_format_table
print(" %s,\t/* is_array */" % (bool_map(format.is_array()),))
File "/usr/src/virglrenderer/src/gallium/auxiliary/util/u_format_parse.py",
line 164, in is_array
return self.array_element() != None
File "/usr/src/virglrenderer/src/gallium/auxiliary/util/u_format_parse.py",
line 73, in __eq__
return self.type == other.type and self.norm == other.norm and self.pure
== other.pure and self.size == other.size
AttributeError: 'NoneType' object has no attribute 'type'
make[2]: Leaving directory '/usr/src/virglrenderer/src/gallium/auxiliary'
make[2]: *** [Makefile:906: util/u_format_table.c] Error 1
make[1]: *** [Makefile:631: install-recursive] Error 1
VirGL commits a8962eda1..a613dcc82 fix this problem.
Update to VirGL 0.8.0 which contains them.
Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
Signed-off-by: Alex Bennée <address@hidden>
Message-Id: <address@hidden>
---
tests/docker/dockerfiles/debian-amd64.docker | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/docker/dockerfiles/debian-amd64.docker
b/tests/docker/dockerfiles/debian-amd64.docker
index a1d40a56fa1..c70c916343e 100644
--- a/tests/docker/dockerfiles/debian-amd64.docker
+++ b/tests/docker/dockerfiles/debian-amd64.docker
@@ -28,7 +28,7 @@ RUN apt update && \
libepoxy-dev \
libgbm-dev
RUN git clone https://gitlab.freedesktop.org/virgl/virglrenderer.git
/usr/src/virglrenderer && \
- cd /usr/src/virglrenderer && git checkout virglrenderer-0.7.0
+ cd /usr/src/virglrenderer && git checkout virglrenderer-0.8.0
RUN cd /usr/src/virglrenderer && ./autogen.sh && ./configure --disable-tests
&& make install
# netmap
--
2.20.1
- [PATCH v1 0/5] testing updates (docker and acceptance CI tweaks), Alex Bennée, 2020/03/09
- [PATCH v1 1/5] tests/docker: Install tools to cross-debug and build Linux kernels, Alex Bennée, 2020/03/09
- [PATCH v1 2/5] tests/docker: Update VirGL git repository URL, Alex Bennée, 2020/03/09
- [PATCH v1 5/5] tests/acceptance: disable two more tests while in CI, Alex Bennée, 2020/03/09
- [PATCH v1 3/5] tests/docker: Remove obsolete VirGL --with-glx configure option, Alex Bennée, 2020/03/09
- [PATCH v1 4/5] tests/docker: Update VirGL to v0.8.0,
Alex Bennée <=
- Re: [PATCH v1 0/5] testing updates (docker and acceptance CI tweaks), no-reply, 2020/03/09