[mupen64plus-video-arachnoid] 90/147: Enable experimental support for link-time optimization

Sven Eckelmann ecsv-guest at moszumanska.debian.org
Thu Nov 26 06:09:52 UTC 2015


This is an automated email from the git hooks/post-receive script.

ecsv-guest pushed a commit to branch master
in repository mupen64plus-video-arachnoid.

commit 544b8937d62356d305688e2db83f34d9b1c3e233
Author: Sven Eckelmann <sven at narfation.org>
Date:   Wed Jun 6 21:16:40 2012 +0200

    Enable experimental support for link-time optimization
---
 debian/changelog             |  7 +++++++
 debian/patches/gcc_lto.patch | 28 ++++++++++++++++++++++++++++
 debian/patches/series        |  1 +
 debian/rules                 |  2 +-
 4 files changed, 37 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 8e79e96..bbbcdb2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+mupen64plus-video-arachnoid (1.99.4+39+ada2d63714fd-3) UNRELEASED; urgency=low
+
+  * debian/patches:
+    - Add gcc_lto.patch, Enable support for link-time optimization
+
+ -- Sven Eckelmann <sven at narfation.org>  Sat, 09 Jun 2012 01:16:21 +0200
+
 mupen64plus-video-arachnoid (1.99.4+39+ada2d63714fd-2) unstable; urgency=low
 
   [ Simon Ruderich ]
diff --git a/debian/patches/gcc_lto.patch b/debian/patches/gcc_lto.patch
new file mode 100644
index 0000000..8ce663c
--- /dev/null
+++ b/debian/patches/gcc_lto.patch
@@ -0,0 +1,28 @@
+Description: Enable experimental support for link-time optimization
+Author: Sven Eckelmann <sven at narfation.org>
+
+---
+diff --git a/projects/unix/Makefile b/projects/unix/Makefile
+index ade6a5da9211f0ed089c1cc1fdf029a928f6e556..2ff6a0d4e712860c8016bdc981f8d8edb59aaf80 100755
+--- a/projects/unix/Makefile
++++ b/projects/unix/Makefile
+@@ -317,6 +317,7 @@ targets:
+ 	@echo "    DESTDIR=path  == path to prepend to all installation paths (only for packagers)"
+ 	@echo "  Debugging Options:"
+ 	@echo "    DEBUG=1       == add debugging symbols"
++	@echo "    LTO=1         == enable experimental build with link-time optimization"
+ 	@echo "    V=1           == show verbose compiler output"
+ 
+ all: $(TARGET)
+@@ -337,6 +338,11 @@ CFLAGS += -MD
+ -include $(OBJECTS:.o=.d)
+ 
+ CXXFLAGS += $(CFLAGS)
++ifeq ($(LTO), 1)
++  CFLAGS += -flto
++  CXXFLAGS += -flto
++  LDFLAGS += -fuse-linker-plugin $(CXXFLAGS)
++endif
+ 
+ # standard build rules
+ $(OBJDIR)/%.o: $(SRCDIR)/%.c
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..bf99d61
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+gcc_lto.patch
diff --git a/debian/rules b/debian/rules
index b111df4..2465d58 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,7 +6,7 @@ export DEB_BUILD_MAINT_OPTIONS=hardening=+all,-pie
 DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
 DEB_HOST_GNU_CPU ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU)
 DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
-MAKEOPTIONS = V=1 UNAME='$(DEB_HOST_ARCH_OS)' HOST_CPU='$(DEB_HOST_GNU_CPU)' APIDIR=/usr/include/mupen64plus/ DEBUG=1 PREFIX=/usr/ LIBDIR="/usr/lib/$(DEB_HOST_MULTIARCH)" PIC=1 OPTFLAGS=""
+MAKEOPTIONS = V=1 UNAME='$(DEB_HOST_ARCH_OS)' HOST_CPU='$(DEB_HOST_GNU_CPU)' APIDIR=/usr/include/mupen64plus/ DEBUG=1 PREFIX=/usr/ LIBDIR="/usr/lib/$(DEB_HOST_MULTIARCH)" PIC=1 OPTFLAGS="" LTO=1
 
 DBG_PACKAGE=$(shell dpkg-parsechangelog|grep '^Source: '|sed 's/^Source:\s*//')-dbg
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/mupen64plus-video-arachnoid.git



More information about the Pkg-games-commits mailing list