diff options
author | Riku Viitanen <riku.viitanen@protonmail.com> | 2023-08-21 20:35:06 +0300 |
---|---|---|
committer | Riku Viitanen <riku.viitanen@protonmail.com> | 2023-08-22 16:43:13 +0300 |
commit | fa926632148b78ed327f5d674dad9a5ee243af9a (patch) | |
tree | 34d6f3ea5e461d7a773df230df09602a35668499 /resources/memtest86plus | |
parent | 1bd842097b544d8fee6416c74fb33dd0dcfac460 (diff) |
memtest86+ v6.20
uses 32-bit variant for x86_32 arch. 64-bit for x86_64.
resources/scripts/build/src/for:
modified it a bit. when building e.g. "memtest86plus/build32"
it correctly fetches "memtest86plus" instead.
but builds memtest86plus/build32, which is inside that git repo
Signed-off-by: Riku Viitanen <riku.viitanen@protonmail.com>
Diffstat (limited to 'resources/memtest86plus')
-rw-r--r-- | resources/memtest86plus/patches/0001-fix-memtest86-linker-error-during-build.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/resources/memtest86plus/patches/0001-fix-memtest86-linker-error-during-build.patch b/resources/memtest86plus/patches/0001-fix-memtest86-linker-error-during-build.patch deleted file mode 100644 index b75e22d7..00000000 --- a/resources/memtest86plus/patches/0001-fix-memtest86-linker-error-during-build.patch +++ /dev/null @@ -1,25 +0,0 @@ -From bed727867b7f5bc246067a4195a96abbc82aef35 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?F=C3=A9licien=20Pillot?= <felicien@gnu.org> -Date: Tue, 8 Feb 2022 07:37:50 +0000 -Subject: [PATCH 1/1] fix memtest86+ linker error during build - ---- - Makefile | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/Makefile b/Makefile -index 7732491..23ea640 100644 ---- a/Makefile -+++ b/Makefile -@@ -75,7 +75,7 @@ reloc.o: reloc.c - $(CC) -c $(CFLAGS) -fno-strict-aliasing reloc.c - - test.o: test.c -- $(CC) -c -Wall -march=i486 -m32 -O0 -fomit-frame-pointer -fno-builtin -ffreestanding -fno-strict-overflow test.c -+ $(CC) -c -Wall -march=i486 -m32 -O0 -fomit-frame-pointer -fno-builtin -ffreestanding -fno-strict-overflow -fno-stack-protector test.c - - random.o: random.c - $(CC) -c -Wall -march=i486 -m32 -O3 -fomit-frame-pointer -fno-builtin -ffreestanding random.c --- -2.25.1 - |