https://gcc.gnu.org/g:f84ff38613595a2b3d47ca2ceb635619e81c2908

commit r16-4544-gf84ff38613595a2b3d47ca2ceb635619e81c2908
Author: Antoni Boucher <[email protected]>
Date:   Thu Oct 9 16:51:42 2025 -0400

    libgccjit: Fix error on Power architectures caused by wrong jit_target_objs
    
    gcc/ChangeLog:
            * config.gcc (jit_target_objs): Don't set this variable since
            the object files don't exist.

Diff:
---
 gcc/config.gcc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/gcc/config.gcc b/gcc/config.gcc
index 2ecce1c4e3e1..44004102a3f8 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -6108,7 +6108,6 @@ case ${target} in
                c_target_objs="${c_target_objs} ${cpu_type}-c.o"
                cxx_target_objs="${cxx_target_objs} ${cpu_type}-c.o"
                d_target_objs="${d_target_objs} ${cpu_type}-d.o"
-               jit_target_objs="${jit_target_objs} ${cpu_type}-jit.o"
                tmake_file="${cpu_type}/t-${cpu_type} ${tmake_file}"
                ;;

Reply via email to