diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-05-30 15:58:45 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-05-30 15:58:45 +0000 |
commit | d9ab3effc75e7222527326fd3410a3ca0a45a996 (patch) | |
tree | e9293aa603b731879a919c6125068bae9fe1df1c /sysdeps | |
parent | 6042a7c296e387498f7e96df5e1f93e50d18a88d (diff) | |
download | glibc-d9ab3effc75e7222527326fd3410a3ca0a45a996.tar glibc-d9ab3effc75e7222527326fd3410a3ca0a45a996.tar.gz glibc-d9ab3effc75e7222527326fd3410a3ca0a45a996.tar.bz2 glibc-d9ab3effc75e7222527326fd3410a3ca0a45a996.zip |
Update MIPS for syscall-list changes.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/Makefile | 16 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/mips32/Makefile | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/mips64/n32/Makefile | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/mips64/n64/Makefile | 1 |
4 files changed, 11 insertions, 8 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/Makefile b/sysdeps/unix/sysv/linux/mips/Makefile index 2aaf63c3e3..fd6e3e0fcf 100644 --- a/sysdeps/unix/sysv/linux/mips/Makefile +++ b/sysdeps/unix/sysv/linux/mips/Makefile @@ -8,14 +8,14 @@ sysdep_routines += cachectl cacheflush sysmips _test_and_set sysdep_headers += sys/cachectl.h sys/sysmips.h sys/tas.h # _MIPS_SIM_ABI32 == 1, _MIPS_SIM_ABIN32 == 2, _MIPS_SIM_ABI64 == 3 -syscall-list-variants := o32 n32 n64 -syscall-list-includes := sgidefs.h -syscall-list-o32-options := -D_MIPS_SIM=1 -syscall-list-o32-condition := _MIPS_SIM == _MIPS_SIM_ABI32 -syscall-list-n32-options := -D_MIPS_SIM=2 -syscall-list-n32-condition := _MIPS_SIM == _MIPS_SIM_ABIN32 -syscall-list-n64-options := -D_MIPS_SIM=3 -syscall-list-n64-condition := _MIPS_SIM == _MIPS_SIM_ABI64 +abi-variants := o32 n32 n64 +abi-includes := sgidefs.h +abi-o32-options := -D_MIPS_SIM=1 +abi-o32-condition := _MIPS_SIM == _MIPS_SIM_ABI32 +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) diff --git a/sysdeps/unix/sysv/linux/mips/mips32/Makefile b/sysdeps/unix/sysv/linux/mips/mips32/Makefile new file mode 100644 index 0000000000..77e91218a8 --- /dev/null +++ b/sysdeps/unix/sysv/linux/mips/mips32/Makefile @@ -0,0 +1 @@ +default-abi := o32 diff --git a/sysdeps/unix/sysv/linux/mips/mips64/n32/Makefile b/sysdeps/unix/sysv/linux/mips/mips64/n32/Makefile new file mode 100644 index 0000000000..2368c40385 --- /dev/null +++ b/sysdeps/unix/sysv/linux/mips/mips64/n32/Makefile @@ -0,0 +1 @@ +default-abi := n32 diff --git a/sysdeps/unix/sysv/linux/mips/mips64/n64/Makefile b/sysdeps/unix/sysv/linux/mips/mips64/n64/Makefile new file mode 100644 index 0000000000..fed17ba64a --- /dev/null +++ b/sysdeps/unix/sysv/linux/mips/mips64/n64/Makefile @@ -0,0 +1 @@ +default-abi := n64 |