[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commits] r18897 - in /fsf/glibc-2_15-branch/ports: ChangeLog.mips sysdeps/unix/sysv/linux/mips/Makefile



Author: eglibc
Date: Fri Jun  1 21:24:40 2012
New Revision: 18897

Log:
Import glibc-ports-2.15 for 2012-06-01

Modified:
    fsf/glibc-2_15-branch/ports/ChangeLog.mips
    fsf/glibc-2_15-branch/ports/sysdeps/unix/sysv/linux/mips/Makefile

Modified: fsf/glibc-2_15-branch/ports/ChangeLog.mips
==============================================================================
--- fsf/glibc-2_15-branch/ports/ChangeLog.mips (original)
+++ fsf/glibc-2_15-branch/ports/ChangeLog.mips Fri Jun  1 21:24:40 2012
@@ -1,3 +1,15 @@
+2012-06-01  Joseph Myers  <joseph@xxxxxxxxxxxxxxxx>
+
+	* sysdeps/unix/sysv/linux/mips/Makefile
+	(syscall-list-n32-condition): Fix typo.
+
+2012-05-23  Steve Ellcey  <sellcey@xxxxxxxx>
+
+	* sysdeps/unix/sysv/linux/mips/Makefile
+	(syscall-list-o32-options): Use -D_MIPS_SIM=1.
+	(syscall-list-n32-options): Use -D_MIPS_SIM=2.
+	(syscall-list-n64-options): Use -D_MIPS_SIM=3.
+
 2012-01-04  Tom de Vries  <tom@xxxxxxxxxxxxxxxx>
 
 	* sysdeps/mips/Makefile: Compile initfini.c, pt-initfini.c with

Modified: fsf/glibc-2_15-branch/ports/sysdeps/unix/sysv/linux/mips/Makefile
==============================================================================
--- fsf/glibc-2_15-branch/ports/sysdeps/unix/sysv/linux/mips/Makefile (original)
+++ fsf/glibc-2_15-branch/ports/sysdeps/unix/sysv/linux/mips/Makefile Fri Jun  1 21:24:40 2012
@@ -7,13 +7,14 @@
 
 sysdep_headers += sys/cachectl.h sys/sysmips.h sys/tas.h
 
+# _MIPS_SIM_ABI32 == 1, _MIPS_SIM_NABI32 == 2, _MIPS_SIM_ABI64 == 3
 syscall-list-variants := o32 n32 n64
 syscall-list-includes := sgidefs.h
-syscall-list-o32-options := -mabi=32
+syscall-list-o32-options := -D_MIPS_SIM=1
 syscall-list-o32-condition := _MIPS_SIM == _MIPS_SIM_ABI32
-syscall-list-n32-options := -mabi=n32
-syscall-list-n32-condition := _MIPS_SIM == _MIPS_SIM_ABIN32
-syscall-list-n64-options := -mabi=64
+syscall-list-n32-options := -D_MIPS_SIM=2
+syscall-list-n32-condition := _MIPS_SIM == _MIPS_SIM_NABI32
+syscall-list-n64-options := -D_MIPS_SIM=3
 syscall-list-n64-condition := _MIPS_SIM == _MIPS_SIM_ABI64
 endif
 

_______________________________________________
Commits mailing list
Commits@xxxxxxxxxx
http://eglibc.org/cgi-bin/mailman/listinfo/commits