summaryrefslogtreecommitdiff
path: root/lib/mips64el
Commit message (Collapse)AuthorAgeFilesLines
* */*.S: add non-executable GNU stack marking on ELF-linuxSergei Trofimovich2022-08-082-0/+8
| | | | | | | | | | | | binutils-2.39 enabed a few warning by default (https://sourceware.org/pipermail/binutils/2022-August/122246.html): > The ELF linker will now generate a warning message if the stack is made executable. Let's suppress the warnings in assembly files by adding non-executables stack markings. This fixes at least systemd build which uses '-Wl,--fatal-warnings': https://github.com/systemd/systemd/issues/24226
* Move memcpy/memset definition to global init.cNigel Croxon2017-11-061-25/+0
| | | | | | | | | | | | | Following up on previous patch, I think we should move memcpy/memset definitions to the global init.c, since MSVC does also inserts calls to memset/memcpy for the x86_32 platform, even when disabling standard libraries and intrinsics. All in all, it looks like, for all platforms, we should assume that a compiler may still insert these calls regardless. Signed-off-by: Pete Batard <pete@akeo.ie> Signed-off-by: Nigel Croxon <ncroxon@redhat.com>
* Add support for 64 bit MIPSNigel Croxon2017-01-084-0/+207
This is a patch to add support for 64-bit MIPS. Signed-off-by: Hev heiher <heiher@users.sf.net> Signed-off-by: Nigel Croxon <noxorc@mac.com>