diff options
author | Alexander Gabert <pappy@gentoo.org> | 2008-04-27 23:31:14 +0000 |
---|---|---|
committer | Alexander Gabert <pappy@gentoo.org> | 2008-04-27 23:31:14 +0000 |
commit | 334270641e472c83e6739a94462be77759489dae (patch) | |
tree | 8c01df44a445688f49eebc58f2d63f78d0f825ba /sys-libs/hardened-glibc/hardened-glibc-2.6.1-r1.ebuild | |
parent | adding changelog (diff) | |
download | historical-334270641e472c83e6739a94462be77759489dae.tar.gz historical-334270641e472c83e6739a94462be77759489dae.tar.bz2 historical-334270641e472c83e6739a94462be77759489dae.zip |
fixed undefined reference to __sync_bool_compare_and_swap_4 by adding -march to CFLAGS
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'sys-libs/hardened-glibc/hardened-glibc-2.6.1-r1.ebuild')
-rw-r--r-- | sys-libs/hardened-glibc/hardened-glibc-2.6.1-r1.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys-libs/hardened-glibc/hardened-glibc-2.6.1-r1.ebuild b/sys-libs/hardened-glibc/hardened-glibc-2.6.1-r1.ebuild index 078e9024e8fa..29450c309bfc 100644 --- a/sys-libs/hardened-glibc/hardened-glibc-2.6.1-r1.ebuild +++ b/sys-libs/hardened-glibc/hardened-glibc-2.6.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/hardened-glibc/hardened-glibc-2.6.1-r1.ebuild,v 1.1 2008/04/27 23:17:42 pappy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/hardened-glibc/hardened-glibc-2.6.1-r1.ebuild,v 1.2 2008/04/27 23:31:14 pappy Exp $ inherit eutils @@ -46,7 +46,10 @@ RDEPEND="sys-devel/gettext" pkg_setup() { # hardcoding the CHOST in this ebuild (for x86 stages) export CHOST="i486-pc-linux-gnu" - export CFLAGS="-O2 -pipe" + + # CFLAGS+="-march=i686" for undefined reference to + # `__sync_bool_compare_and_swap_4' + export CFLAGS="-O2 -pipe -march=i686" export CXXFLAGS="${CFLAGS}" export CPPFLAGS="" |