[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][xorg-team/lib/mesa][debian-unstable] 2 commits: rules: Build gfxstream only on 64bit. (Closes: #1099704)



Title: GitLab

Timo Aaltonen pushed to branch debian-unstable at X Strike Force / lib / mesa

Commits:

  • 5ca7ab88
    by Timo Aaltonen at 2025-03-07T08:52:19+02:00
    rules: Build gfxstream only on 64bit. (Closes: #1099704)
    
  • 50bece16
    by Timo Aaltonen at 2025-03-07T08:52:26+02:00
    releasing package mesa version 25.0.1-2
    

2 changed files:

Changes:

  • debian/changelog
    1
    +mesa (25.0.1-2) unstable; urgency=medium
    
    2
    +
    
    3
    +  * rules: Build gfxstream only on 64bit. (Closes: #1099704)
    
    4
    +
    
    5
    + -- Timo Aaltonen <tjaalton@debian.org>  Fri, 07 Mar 2025 08:52:20 +0200
    
    6
    +
    
    1 7
     mesa (25.0.1-1) unstable; urgency=medium
    
    2 8
     
    
    3 9
       [ Timo Aaltonen ]
    

  • debian/rules
    ... ... @@ -119,7 +119,7 @@ else
    119 119
     	ifneq (,$(filter $(DEB_HOST_ARCH), armel))
    
    120 120
     		VULKAN_DRIVERS += amd swrast
    
    121 121
     	else
    
    122
    -		VULKAN_DRIVERS += amd swrast virtio gfxstream
    
    122
    +		VULKAN_DRIVERS += amd swrast virtio
    
    123 123
     	endif
    
    124 124
     
    
    125 125
     	VULKAN_LAYERS += device-select intel-nullhw overlay
    
    ... ... @@ -140,6 +140,11 @@ else
    140 140
     	ifneq (,$(filter $(DEB_HOST_ARCH), $(WINE_ARCHS)))
    
    141 141
     		confflags_GALLIUM += -Dgallium-nine=true
    
    142 142
     	endif
    
    143
    +
    
    144
    +	# gfxstream only builds on 64bit
    
    145
    +	ifeq ($(DEB_HOST_ARCH_BITS),64)
    
    146
    +		VULKAN_DRIVERS += gfxstream
    
    147
    +	endif
    
    143 148
       else
    
    144 149
     	confflags_GALLIUM += -Dllvm=disabled
    
    145 150
       endif
    


  • Reply to: