mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: libepoxy: Add support for aarch64.
* gnu/packages/gl.scm (libepoxy)[arguments]: Add substitution to support aarch64.
This commit is contained in:
parent
3d3d4014c2
commit
ea50fb8d03
1 changed files with 4 additions and 0 deletions
|
@ -489,6 +489,10 @@ (define-public libepoxy
|
|||
(mesa (assoc-ref inputs "mesa")))
|
||||
(substitute* "src/gen_dispatch.py"
|
||||
(("/usr/bin/env python") python))
|
||||
;; Add support for aarch64, see upstream:
|
||||
;; https://github.com/anholt/libepoxy/pull/114
|
||||
(substitute* "test/dlwrap.c"
|
||||
(("GLIBC_2.4") "GLIBC_2.17\", \"GLIBC_2.4"))
|
||||
(substitute* (find-files "." "\\.[ch]$")
|
||||
(("libGL.so.1") (string-append mesa "/lib/libGL.so.1"))
|
||||
(("libEGL.so.1") (string-append mesa "/lib/libEGL.so.1")))
|
||||
|
|
Loading…
Reference in a new issue