Timo Aaltonen pushed to branch debian-experimental at X Strike Force / lib / mesa
Commits:
-
1ba4b249
by Timo Aaltonen at 2024-08-08T09:47:36+03:00
2 changed files:
Changes:
1 | 1 | mesa (24.2.0~rc4-2) UNRELEASED; urgency=medium
|
2 | 2 | |
3 | 3 | * rules: Build llvmpipe only where llvm is enabled.
|
4 | + * rules: Build softpipe or llvmpipe depending on the arch, not both.
|
|
4 | 5 | |
5 | 6 | -- Timo Aaltonen <tjaalton@debian.org> Wed, 07 Aug 2024 20:34:26 +0300
|
6 | 7 |
... | ... | @@ -35,7 +35,7 @@ else |
35 | 35 | endif
|
36 | 36 | |
37 | 37 | EGL_PLATFORMS = x11
|
38 | -GALLIUM_DRIVERS = softpipe
|
|
38 | +GALLIUM_DRIVERS =
|
|
39 | 39 | VULKAN_DRIVERS =
|
40 | 40 | VULKAN_LAYERS =
|
41 | 41 | |
... | ... | @@ -52,6 +52,7 @@ WINE_ARCHS = amd64 arm64 armel armhf i386 |
52 | 52 | |
53 | 53 | # hurd doesn't do direct rendering
|
54 | 54 | ifeq ($(DEB_HOST_ARCH_OS), hurd)
|
55 | + GALLIUM_DRIVERS += softpipe
|
|
55 | 56 | confflags_DIRECT_RENDERING = -Dglx-direct=false
|
56 | 57 | confflags_GBM = -Dgbm=disabled
|
57 | 58 | else
|
... | ... | @@ -140,6 +141,7 @@ else |
140 | 141 | confflags_GALLIUM += -Dgallium-nine=true
|
141 | 142 | endif
|
142 | 143 | else
|
144 | + GALLIUM_DRIVERS += softpipe
|
|
143 | 145 | confflags_GALLIUM += -Dllvm=disabled
|
144 | 146 | endif
|
145 | 147 |