diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-05-30 23:44:17 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-05-30 23:44:17 +0000 |
commit | fd5beba75e4cd779bbf5ca81c7547e904d4ec9cc (patch) | |
tree | 430d136839f27425e8f3ce7cf1eca7a6710ae98d | |
parent | dbdf1bdc1fbfb064d7f3041de07055eb21457423 (diff) | |
download | glibc-fd5beba75e4cd779bbf5ca81c7547e904d4ec9cc.tar.gz glibc-fd5beba75e4cd779bbf5ca81c7547e904d4ec9cc.tar.xz glibc-fd5beba75e4cd779bbf5ca81c7547e904d4ec9cc.zip |
Move MIPS ABI settings out of conditional.
-rw-r--r-- | ChangeLog.mips | 3 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/Makefile | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog.mips b/ChangeLog.mips index ced2d36d3d..6243cfcb7d 100644 --- a/ChangeLog.mips +++ b/ChangeLog.mips @@ -1,5 +1,8 @@ 2012-05-30 Joseph Myers <joseph@codesourcery.com> + * sysdeps/unix/sysv/linux/mips/Makefile [subdir = misc]: Move ABI + settings out of conditional. + * sysdeps/unix/sysv/linux/mips/syscalls.list: Remove __connect_internal alias. diff --git a/sysdeps/unix/sysv/linux/mips/Makefile b/sysdeps/unix/sysv/linux/mips/Makefile index fd6e3e0fcf..2bbc9a4dfb 100644 --- a/sysdeps/unix/sysv/linux/mips/Makefile +++ b/sysdeps/unix/sysv/linux/mips/Makefile @@ -6,6 +6,7 @@ ifeq ($(subdir),misc) sysdep_routines += cachectl cacheflush sysmips _test_and_set sysdep_headers += sys/cachectl.h sys/sysmips.h sys/tas.h +endif # _MIPS_SIM_ABI32 == 1, _MIPS_SIM_ABIN32 == 2, _MIPS_SIM_ABI64 == 3 abi-variants := o32 n32 n64 @@ -16,7 +17,6 @@ abi-n32-options := -D_MIPS_SIM=2 abi-n32-condition := _MIPS_SIM == _MIPS_SIM_ABIN32 abi-n64-options := -D_MIPS_SIM=3 abi-n64-condition := _MIPS_SIM == _MIPS_SIM_ABI64 -endif ifeq ($(subdir),elf) ifeq ($(build-shared),yes) |