Github messages for voidlinux
 help / color / mirror / Atom feed
* [ISSUE] llvmpipe is not enabled for i686
@ 2022-05-30  5:52 sham1
  2022-05-30  5:55 ` sham1
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: sham1 @ 2022-05-30  5:52 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 865 bytes --]

New issue by sham1 on void-packages repository

https://github.com/void-linux/void-packages/issues/37349

Description:
<!-- Don't request update of package. We have a script for that. https://repo-default.voidlinux.org/void-updates/void-updates.txt. However, a quality pull request may help. -->
### System

* xuname: `Void 5.15.41_1 i686 GenuineIntel uptodate rFF`
  *output of `xuname` (part of xtools)*
* package: `mesa-21.3.7_1`
  *affected package(s) including the version: `xbps-query -p pkgver <pkgname>`*

### Expected behavior

`llvmpipe` should be enabled for i686 targets. It was excluded from getting `llvmpipe` with the commit 0335439623542f562c56b539d508a922be63c132.

### Actual behavior

`llvmpipe` is not enabled for i686 targets.

### Steps to reproduce the behavior

1. Run something using Mesa with software rendering on i686.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: llvmpipe is not enabled for i686
  2022-05-30  5:52 [ISSUE] llvmpipe is not enabled for i686 sham1
@ 2022-05-30  5:55 ` sham1
  2022-05-30  5:56 ` sham1
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: sham1 @ 2022-05-30  5:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 275 bytes --]

New comment by sham1 on void-packages repository

https://github.com/void-linux/void-packages/issues/37349#issuecomment-1140728963

Comment:
I can make a PR fixing this, I was just wondering whether this was an intentional omission or if it were just an erroneous exclusion.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: llvmpipe is not enabled for i686
  2022-05-30  5:52 [ISSUE] llvmpipe is not enabled for i686 sham1
  2022-05-30  5:55 ` sham1
@ 2022-05-30  5:56 ` sham1
  2022-06-12  6:33 ` faithanalog
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: sham1 @ 2022-05-30  5:56 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 288 bytes --]

New comment by sham1 on void-packages repository

https://github.com/void-linux/void-packages/issues/37349#issuecomment-1140728963

Comment:
I can make a PR fixing this, I was just wondering whether this was an intentional omission or if it were just an erroneous exclusion.

CC: @q66 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: llvmpipe is not enabled for i686
  2022-05-30  5:52 [ISSUE] llvmpipe is not enabled for i686 sham1
  2022-05-30  5:55 ` sham1
  2022-05-30  5:56 ` sham1
@ 2022-06-12  6:33 ` faithanalog
  2022-06-12  6:38 ` faithanalog
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: faithanalog @ 2022-06-12  6:33 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 283 bytes --]

New comment by faithanalog on void-packages repository

https://github.com/void-linux/void-packages/issues/37349#issuecomment-1153084125

Comment:
i believe this is probably an erroneous exclusion, because llvmpipe works just fine on i686, have been daily driving it for a long time

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: llvmpipe is not enabled for i686
  2022-05-30  5:52 [ISSUE] llvmpipe is not enabled for i686 sham1
                   ` (2 preceding siblings ...)
  2022-06-12  6:33 ` faithanalog
@ 2022-06-12  6:38 ` faithanalog
  2022-07-18 17:50 ` sham1
  2022-07-18 17:50 ` [ISSUE] [CLOSED] " sham1
  5 siblings, 0 replies; 7+ messages in thread
From: faithanalog @ 2022-06-12  6:38 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1043 bytes --]

New comment by faithanalog on void-packages repository

https://github.com/void-linux/void-packages/issues/37349#issuecomment-1153084725

Comment:
would love to this fixed because it affects my poulsbo hardware (intel atom netbook, no working hardware acceleration unless you use a 3.x kernel and a proprietary module/userspace). Me and a few friends use these things on the regular and we either custom compile mesa or use other distributions which have llvmpipe enabled (like debian).

anyways the fix is a one-liner, just

```
diff --git a/srcpkgs/mesa/template b/srcpkgs/mesa/template
index c90500de74..172d9c12ff 100644
--- a/srcpkgs/mesa/template
+++ b/srcpkgs/mesa/template
@@ -32,7 +32,7 @@ fi
 # especially on big endian it's all kinds of broken, and e.g. on
 # 32-bit powerpc it does not work at all, so fall back to softpipe
 case "$XBPS_TARGET_MACHINE" in
-       x86_64*|aarch64*|ppc64le*|arm*) ;;
+       i686*|x86_64*|aarch64*|ppc64le*|arm*) ;;
        *) configure_args+=" -Ddraw-use-llvm=false" ;;
 esac
 ```

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [ISSUE] [CLOSED] llvmpipe is not enabled for i686
  2022-05-30  5:52 [ISSUE] llvmpipe is not enabled for i686 sham1
                   ` (4 preceding siblings ...)
  2022-07-18 17:50 ` sham1
@ 2022-07-18 17:50 ` sham1
  5 siblings, 0 replies; 7+ messages in thread
From: sham1 @ 2022-07-18 17:50 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 868 bytes --]

Closed issue by sham1 on void-packages repository

https://github.com/void-linux/void-packages/issues/37349

Description:
<!-- Don't request update of package. We have a script for that. https://repo-default.voidlinux.org/void-updates/void-updates.txt. However, a quality pull request may help. -->
### System

* xuname: `Void 5.15.41_1 i686 GenuineIntel uptodate rFF`
  *output of `xuname` (part of xtools)*
* package: `mesa-21.3.7_1`
  *affected package(s) including the version: `xbps-query -p pkgver <pkgname>`*

### Expected behavior

`llvmpipe` should be enabled for i686 targets. It was excluded from getting `llvmpipe` with the commit 0335439623542f562c56b539d508a922be63c132.

### Actual behavior

`llvmpipe` is not enabled for i686 targets.

### Steps to reproduce the behavior

1. Run something using Mesa with software rendering on i686.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: llvmpipe is not enabled for i686
  2022-05-30  5:52 [ISSUE] llvmpipe is not enabled for i686 sham1
                   ` (3 preceding siblings ...)
  2022-06-12  6:38 ` faithanalog
@ 2022-07-18 17:50 ` sham1
  2022-07-18 17:50 ` [ISSUE] [CLOSED] " sham1
  5 siblings, 0 replies; 7+ messages in thread
From: sham1 @ 2022-07-18 17:50 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 244 bytes --]

New comment by sham1 on void-packages repository

https://github.com/void-linux/void-packages/issues/37349#issuecomment-1187929617

Comment:
Seems that this has now been fixed in the commit e507a26b520a29c65f2b18a5b3eb976ddea9034d.

Closing.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-07-18 17:50 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-30  5:52 [ISSUE] llvmpipe is not enabled for i686 sham1
2022-05-30  5:55 ` sham1
2022-05-30  5:56 ` sham1
2022-06-12  6:33 ` faithanalog
2022-06-12  6:38 ` faithanalog
2022-07-18 17:50 ` sham1
2022-07-18 17:50 ` [ISSUE] [CLOSED] " sham1

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).