autofdo: add 9999 for testing, cleanup

This commit is contained in:
blshkv 2018-01-28 17:01:25 +08:00
parent 11bfd26695
commit 42eae2f906
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
2 changed files with 27 additions and 5 deletions

View file

@ -1,4 +1,4 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -19,10 +19,6 @@ DEPEND=">=sys-devel/llvm-5.0.1:*
RDEPEND="${DEPEND}"
#PATCHES=( "${FILESDIR}/0.16_issue55.patch"
# "${FILESDIR}/72b7f86b920a35b02faed94afc685fd2d517fc78.patch"
# )
src_prepare(){
#has Google forgot got change it?
sed -i "s|\[0.14\]|\[${PV}\]|" configure.ac

View file

@ -0,0 +1,26 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit git-r3
DESCRIPTION="System to simplify real-world deployment of feedback-directed optimization"
HOMEPAGE="https://gcc.gnu.org/wiki/AutoFDO"
EGIT_REPO_URI="https://github.com/kim-phillips-arm/autofdo.git"
#EGIT_COMMIT=""
EGIT_BRANCH="fixissue55"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=">=sys-devel/llvm-5.0.1:*
sys-devel/gcc:*"
RDEPEND="${DEPEND}"
src_configure(){
econf --with-llvm
}