pixman: Branch 'master'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Nov 25 17:28:03 UTC 2024


 meson.build |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 999659d64a6f46937dd104e183acd0cf9f192a26
Author: f wasil <f.wasil at samsung.com>
Date:   Mon Nov 25 17:27:58 2024 +0000

    RISC-V: Force spec 1p0 in architecture definiton
    
    Without setting the ISA spec version explicitly the Link Time Optimization fails.
    
    A valid fix will be in the GCC at some point. Until then we have to be explicit.
    
    GCC bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110812
    Closes: https://gitlab.freedesktop.org/pixman/pixman/-/issues/117

diff --git a/meson.build b/meson.build
index bda81a0..cb3a698 100644
--- a/meson.build
+++ b/meson.build
@@ -367,7 +367,7 @@ endif
 
 use_rvv = get_option('rvv')
 have_rvv = false
-rvv_flags = ['-march=rv64gcv']
+rvv_flags = ['-march=rv64gcv1p0']
 if not use_rvv.disabled()
   if host_machine.cpu_family() == 'riscv64'
     if cc.compiles('''


More information about the xorg-commit mailing list