summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordoko <doko@6ca36cf4-e1d1-0310-8c6f-e303bb2178ca>2013-08-21 10:19:11 +0000
committerdoko <doko@6ca36cf4-e1d1-0310-8c6f-e303bb2178ca>2013-08-21 10:19:11 +0000
commitb3e91f26dc3e0a9edecf6bd1148ceb5babc398da (patch)
tree34e716376b87acdbf46196a8ab52f59b6fdc4fd0
parent34bf964dfa6f9c005c0353e760ff41cde5194a1f (diff)
downloadgcc-47-b3e91f26dc3e0a9edecf6bd1148ceb5babc398da.tar.gz
* On alpha, link with --no-relax. Update libgcc1 symbols files (Michael
Cree). Closes: #719672. git-svn-id: svn://svn.debian.org/svn/gcccvs/branches/sid/gcc-4.7@6937 6ca36cf4-e1d1-0310-8c6f-e303bb2178ca
-rw-r--r--debian/changelog2
-rw-r--r--debian/rules24
2 files changed, 6 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index c7499ad..04f4e85 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,8 @@ gcc-4.7 (4.7.3-7) UNRELEASED; urgency=low
* Update the Linaro support to the 4.7-2013.08 release.
* Tighten the build conflict with binutils-gold (closes: #720264).
* Update Debian release names (Stephen Kitt). Closes: #720263.
+ * On alpha, link with --no-relax. Update libgcc1 symbols files (Michael
+ Cree). Closes: #719672.
-- Matthias Klose <doko@debian.org> Wed, 21 Aug 2013 11:40:56 +0200
diff --git a/debian/rules2 b/debian/rules2
index 6bb8d88..e137476 100644
--- a/debian/rules2
+++ b/debian/rules2
@@ -118,6 +118,10 @@ ifneq (,$(findstring static,$(DEB_BUILD_OPTIONS)))
LDFLAGS += -static
endif
+ifneq (,$(filter $(DEB_TARGET_ARCH),alpha))
+ LDFLAGS += -Wl,--no-relax
+endif
+
CFLAGS_TO_PASS = \
$(if $(CFLAGS),CFLAGS="$(CFLAGS)") \
$(if $(BOOT_CFLAGS),BOOT_CFLAGS="$(BOOT_CFLAGS)") \