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.
This commit is contained in:
Antoni Boucher
2025-10-09 16:51:42 -04:00
parent 99b548951f
commit f84ff38613

View File

@@ -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}"
;;