summaryrefslogtreecommitdiff
path: root/m4/dpkg-linker.m4
blob: bff4d226014d7e8c1724ffd7554295c10e1e695b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.

# DPKG_LINKER_OPTIMISATIONS
# --------------------------
# Add configure option to disable linker optimisations.
AC_DEFUN([DPKG_LINKER_OPTIMISATIONS],
[AC_ARG_ENABLE(linker-optimisations,
	AS_HELP_STRING([--disable-linker-optimisations],
		       [Disable linker optimisations]),
[if test "x$enable_linker_optimisations" = "xno"; then
	[LDFLAGS=$(echo "$LDFLAGS" | sed -e "s/ -Wl,-O[[0-9]]*\b//g")]
else
	[LDFLAGS="$LDFLAGS -Wl,-O1"]
fi], [LDFLAGS="$LDFLAGS -Wl,-O1"])dnl
])