From 51651b2d928a971b5c5b77c2e1761df7195c26bc Mon Sep 17 00:00:00 2001 From: Emanuele19 <45015479+Emanuele19@users.noreply.github.com> Date: Mon, 26 May 2025 12:22:31 +0200 Subject: [PATCH] FIX: reference_bin_nopie.i386 compiled with pie instead of no-pie (#3008) --- tests/gdb-tests/tests/binaries/makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/gdb-tests/tests/binaries/makefile b/tests/gdb-tests/tests/binaries/makefile index 2e9a8e80f..dda4a49c3 100644 --- a/tests/gdb-tests/tests/binaries/makefile +++ b/tests/gdb-tests/tests/binaries/makefile @@ -175,7 +175,7 @@ reference_bin_nopie.out: reference-binary.c reference_bin_nopie.i386.out: reference-binary.c @echo "[+] Building reference_bin_nopie.i386.out" - ${ZIGCC} -fpie -target x86-linux-gnu -o reference_bin_nopie.i386.out reference-binary.c + ${ZIGCC} -fno-pie -target x86-linux-gnu -o reference_bin_nopie.i386.out reference-binary.c symbol_1600_and_752.out: symbol_1600_and_752.cpp ${CXX} -O0 -ggdb -Wno-pmf-conversions symbol_1600_and_752.cpp -o symbol_1600_and_752.out @@ -192,4 +192,4 @@ canary.i386.out: canary.i386.c ${ZIGCC} \ ${CFLAGS} \ -target x86-linux-gnu \ - -o canary.i386.out canary.i386.c \ No newline at end of file + -o canary.i386.out canary.i386.c