This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Why does config.gcc use deleted files?


On Thu, Nov 28, 2002 at 12:25:01PM -0800, H. J. Lu wrote:
> config/mips/t-linux and config/mips/t-netbsd are deleted by
> 
> http://gcc.gnu.org/ml/gcc-patches/2002-07/msg01743.html
> 
> By config.gcc still uses config/mips/t-linux and config/mips/t-netbsd.
> It is quite confusing. I will check a patch to remove them shortly.
> 
> 

Here is the patch.


H.J.
---
2002-11-28  H.J. Lu <hjl@gnu.org>

	* config.gcc (mips*-*-netbsd*): Remove mips/t-netbsd.
	(mips*-*-linux*): Remove mips/t-linux.

Index: config.gcc
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config.gcc,v
retrieving revision 1.264
diff -d -u -p -r1.264 config.gcc
--- gcc/config.gcc	28 Nov 2002 14:46:59 -0000	1.264
+++ gcc/config.gcc	28 Nov 2002 20:28:21 -0000
@@ -1822,7 +1822,7 @@ mips-sgi-*)	# would otherwise be caught 
 mips*-*-netbsd*)			# NetBSD/mips, either endian.
 	target_cpu_default="MASK_GAS|MASK_ABICALLS"
 	tm_file="elfos.h ${tm_file} mips/netbsd.h"
-	tmake_file="${tmake_file} mips/t-netbsd"
+	tmake_file="${tmake_file}"
 	;;
 mips*-*-linux*)				# Linux MIPS, either endian.
         tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h"
@@ -1832,7 +1832,7 @@ mips*-*-linux*)				# Linux MIPS, either 
 		tm_defines="MIPS_ISA_DEFAULT=32"
                 ;;
         esac
-	tmake_file="t-slibgcc-elf-ver t-linux mips/t-linux"
+	tmake_file="t-slibgcc-elf-ver t-linux"
 	;;
 mips*el-*-openbsd*)	# mips little endian
 	target_cpu_default="MASK_GAS|MASK_ABICALLS"


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]