1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
From a9d3f085ffdc1730c722998ef95a632e2f76dc8f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
Date: Mon, 18 Nov 2024 11:41:50 +0100
Subject: [PATCH] partially revert "Fix page size on Alpha"
this broke tests on other architectures
---
tests/Makefile.am | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: patchelf-0.18.0/tests/Makefile.am
===================================================================
--- patchelf-0.18.0.orig/tests/Makefile.am 2025-04-19 15:10:14.200791400 -0400
+++ patchelf-0.18.0/tests/Makefile.am 2025-04-19 15:10:14.196791380 -0400
@@ -80,7 +80,7 @@
simple_SOURCES = simple.c
# no -fpic for simple.o
simple_CFLAGS =
-simple_LDFLAGS = -Wl,-z,noexecstack -no-pie
+simple_LDFLAGS = -Wl,-z,noexecstack
simple_pie_SOURCES = simple.c
simple_pie_CFLAGS = -fPIC -pie
@@ -171,7 +171,7 @@
no_rpath_SOURCES = no-rpath.c
# no -fpic for no-rpath.o
no_rpath_CFLAGS =
-no_rpath_LDFLAGS = -no-pie
+no_rpath_LDFLAGS =
contiguous_note_sections_SOURCES = contiguous-note-sections.s contiguous-note-sections.ld
contiguous_note_sections_LDFLAGS = -nostdlib -T $(srcdir)/contiguous-note-sections.ld
|