From: Antoni Boucher Date: Thu, 9 Oct 2025 20:51:42 +0000 (-0400) Subject: libgccjit: Fix error on Power architectures caused by wrong jit_target_objs X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f84ff38613595a2b3d47ca2ceb635619e81c2908;p=thirdparty%2Fgcc.git 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 --git a/gcc/config.gcc b/gcc/config.gcc index 2ecce1c4e3e..44004102a3f 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}" ;;