forked from InBetweenNames/gentooLTO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathltoize-0.9.3.ebuild
116 lines (85 loc) · 4.62 KB
/
ltoize-0.9.3.ebuild
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Copyright 1999-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="A configuration for portage to make building with LTO easy."
HOMEPAGE="https://github.com/InBetweenNames/gentooLTO"
KEYWORDS="~amd64 ~x86"
SRC_URI=""
LICENSE="GPL-2+"
SLOT="0"
IUSE="override-flagomatic"
#portage-bashrc-mv can be obtained from mv overlay
DEPEND="
>=sys-devel/gcc-4.9.4:*[graphite]
>=sys-devel/binutils-2.28.1:*
>=sys-devel/gcc-config-1.9.1
|| (
>=sys-apps/portage-2.3.52
>=sys-apps/portage-mgorny-2.3.51.1
)
app-portage/portage-bashrc-mv[cflags]
"
#DEPEND="graphite ? ( gcc[graphite] )"
RDEPEND="${DEPEND}"
#Test binutils and gcc version
pkg_setup() {
ACTIVE_GCC=$(gcc-fullversion)
if ver_test "${ACTIVE_GCC}" -lt 9.1.0; then
ewarn "Warning: Active GCC version < 9.1.0, it is recommended that you use the newest GCC if you want LTO."
if [ "${I_KNOW_WHAT_I_AM_DOING}" != "y" ]; then
eerror "Aborting LTOize installation due to older GCC -- set I_KNOW_WHAT_I_AM_DOING=y if you want to override this behaviour."
die
else
ewarn "I_KNOW_WHAT_I_AM_DOING=y -- continuing anyway"
fi
fi
if [ -f "${PORTAGE_CONFIGROOT%/}/etc/portage/package.cflags" ]; then
eerror "${PORTAGE_CONFIGROOT%/}/etc/portage/package.cflags is a file not a directory. Please convert package.cflags to a directory with the current contents of package.cflags being moved to a file inside it."
die
fi
}
pkg_preinst() {
GENTOOLTO_PORTDIR=$(portageq get_repo_path ${PORTAGE_CONFIGROOT} lto-overlay)
LTO_PORTAGE_DIR="${GENTOOLTO_PORTDIR}/${CATEGORY}/${PN}/files"
ACTIVE_GCC=$(gcc-fullversion)
#Install make.conf settings
elog "Installing make.conf.lto.defines definitions for optimizations used in this overlay"
dosym "${LTO_PORTAGE_DIR}/make.conf.lto.defines" "${PORTAGE_CONFIGROOT%/}/etc/portage/make.conf.lto.defines"
elog "Installing make.conf.lto default full optimization config for make.conf"
dosym "${LTO_PORTAGE_DIR}/make.conf.lto" "${PORTAGE_CONFIGROOT%/}/etc/portage/make.conf.lto"
#Install main workarounds file
elog "Installing ltoworkarounds.conf package.cflags overrides"
dosym "${LTO_PORTAGE_DIR}/package.cflags/ltoworkarounds.conf" "${PORTAGE_CONFIGROOT%/}/etc/portage/package.cflags/ltoworkarounds.conf"
#Install patch framework
elog "Installing bashrc.d hook symlink to apply LTO patches directly from lto-overlay"
dosym "${LTO_PORTAGE_DIR}/bashrc.d/41-lto-patch.sh" "${PORTAGE_CONFIGROOT%/}/etc/portage/bashrc.d/41-lto-patch.sh"
#Optional: install flag-o-matic overrides
if use override-flagomatic; then
ewarn "Installing bashrc.d hook to override strip-flags and replace-flags functions in flag-o-matic. This is an experimental feature!"
dosym "${LTO_PORTAGE_DIR}/bashrc.d/42-lto-flag-o-matic.sh" "${PORTAGE_CONFIGROOT%/}/etc/portage/bashrc.d/42-lto-flag-o-matic.sh"
fi
}
pkg_postinst()
{
elog "If you have not done so, you will need to modify your make.conf settings to enable LTO building on your system."
elog "A symlink has been placed in ${PORTAGE_CONFIGROOT%/}/etc/portage/make.conf.lto that can be used as a basis for these modifications."
elog "See README.md for more details."
elog "lto-overlay and ltoize are part of a project to help find undefined behaviour in C and C++ programs through the use of aggressive compiler optimizations."
elog "One of the aims of this project is also to improve the performance of linux distributions through these mechanisms as well."
elog "Occasionally, you will experience breakage due to LTO problems. These are documented in the README.md of this repository."
elog "If you add an override for a particular package, please consider sending a pull request upstream so that other users of this repository can benefit."
ewarn "You will require a complete system rebuild in order to gain the benefits of LTO system-wide."
echo
elog "Please consider reading the README.md at the root of this repository before attempting to rebuild your system to familiarize yourself with the goals of this project and potential pitfalls you could run into."
echo
ewarn "This is an experimental project and should not be used on a stable system in its current state."
BINUTILS_VER=$(binutils-config ${CHOST} -c | sed -e "s/.*-//")
if ver_test "${BINUTILS_VER}" -lt 2.32; then
ewarn "Warning: active binutils version < 2.32, it is recommended that you use the newest binutils for LTO."
fi
LD_VER=$(${CHOST}-ld --version | grep gold)
if [[ -z "${LD_VER}" ]]; then
ewarn "Warning: active linker is not ld.gold, it is highly recommended to set ld.gold as your default system linker. You can do this using: binutils-config --linker ld.gold"
fi
}