diff options
author | Benda XU <heroxbd@gentoo.org> | 2012-05-15 02:57:30 +0000 |
---|---|---|
committer | Benda XU <heroxbd@gentoo.org> | 2012-05-15 02:57:30 +0000 |
commit | 359cd6b55e5479acb58f31fda04daca437546593 (patch) | |
tree | f06b8a263d61b170517c2950debc93e28896d4ba /dev-lang/ocaml | |
parent | Remove old version (diff) | |
download | gentoo-2-359cd6b55e5479acb58f31fda04daca437546593.tar.gz gentoo-2-359cd6b55e5479acb58f31fda04daca437546593.tar.bz2 gentoo-2-359cd6b55e5479acb58f31fda04daca437546593.zip |
on arm, use user -O flags instead of hard coding -O0, as per bug 340607. Thanks to Josh Parsons for investigating the issue.
(Portage version: 2.1.10.57/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/ocaml')
-rw-r--r-- | dev-lang/ocaml/ChangeLog | 8 | ||||
-rw-r--r-- | dev-lang/ocaml/ocaml-3.12.1.ebuild | 6 |
2 files changed, 8 insertions, 6 deletions
diff --git a/dev-lang/ocaml/ChangeLog b/dev-lang/ocaml/ChangeLog index 8b2fa86b1bd0..01df643688e4 100644 --- a/dev-lang/ocaml/ChangeLog +++ b/dev-lang/ocaml/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/ocaml -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.201 2011/11/06 13:41:53 ranger Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.202 2012/05/15 02:57:30 heroxbd Exp $ + + 15 May 2012; Benda Xu <heroxbd@gentoo.org> ocaml-3.12.1.ebuild: + on arm, use user -O flags instead of hard coding -O0, as per bug 340607. + Thanks to Josh Parsons for investigating the issue. 06 Nov 2011; Brent Baude <ranger@gentoo.org> ocaml-3.12.1.ebuild: Marking ocaml-3.12.1 ppc for bug 361767 diff --git a/dev-lang/ocaml/ocaml-3.12.1.ebuild b/dev-lang/ocaml/ocaml-3.12.1.ebuild index c845fe4c3179..73f7addf494a 100644 --- a/dev-lang/ocaml/ocaml-3.12.1.ebuild +++ b/dev-lang/ocaml/ocaml-3.12.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.9 2011/11/06 13:41:53 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.12.1.ebuild,v 1.10 2012/05/15 02:57:30 heroxbd Exp $ EAPI="1" @@ -57,8 +57,6 @@ src_compile() { # It doesn't compile on alpha without this LDFLAGS use alpha && append-ldflags "-Wl,--no-relax" - # Fails to build on arm if >O0 is used - use arm && replace-flags "-O?" -O0 use tk || myconf="${myconf} -no-tk" use ncurses || myconf="${myconf} -no-curses" |