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

[Git][xorg-team/lib/mesa][debian-unstable] rules: Disable sse2 on i386. (Closes: #1002872)



Title: GitLab

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

Commits:

2 changed files:

Changes:

  • debian/changelog
    1
    +mesa (21.3.5-2) UNRELEASED; urgency=medium
    
    2
    +
    
    3
    +  * rules: Disable sse2 on i386. (Closes: #1002872)
    
    4
    +
    
    5
    + -- Timo Aaltonen <tjaalton@debian.org>  Sun, 30 Jan 2022 12:00:44 +0200
    
    6
    +
    
    1 7
     mesa (21.3.5-1) unstable; urgency=medium
    
    2 8
     
    
    3 9
       * New upstream release.
    

  • debian/rules
    ... ... @@ -43,6 +43,7 @@ VULKAN_DRIVERS =
    43 43
     
    
    44 44
     confflags_DRI3 = -Ddri3=disabled
    
    45 45
     confflags_OSMESA =  -Dosmesa=true
    
    46
    +confflags_SSE2 = -Dsse2=true
    
    46 47
     
    
    47 48
     # hurd doesn't do direct rendering
    
    48 49
     ifeq ($(DEB_HOST_ARCH_OS), hurd)
    
    ... ... @@ -135,6 +136,9 @@ else
    135 136
       endif
    
    136 137
     endif
    
    137 138
     
    
    139
    +ifeq ($(DEB_HOST_ARCH), i386)
    
    140
    +	confflags_SSE2 = -Dsse2=false
    
    141
    +endif
    
    138 142
     
    
    139 143
     empty:=
    
    140 144
     space := $(empty) $(empty)
    
    ... ... @@ -168,6 +172,7 @@ confflags += \
    168 172
     	$(confflags_GALLIUM) \
    
    169 173
     	$(confflags_GLES) \
    
    170 174
     	$(confflags_OSMESA) \
    
    175
    +	$(confflags_SSE2) \
    
    171 176
     	$(confflags_VALGRIND) \
    
    172 177
     	$(confflags_VULKAN)
    
    173 178
     
    


  • Reply to: