Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 159084 - sys-devel/binutils cross development patch
Summary: sys-devel/binutils cross development patch
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: All Linux
: High enhancement
Assignee: Gentoo Toolchain Maintainers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-12-25 09:38 UTC by Stefan de Konink
Modified: 2006-12-25 10:03 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
cflags_for_build.patch (cflags_for_build.patch,939 bytes, patch)
2006-12-25 09:44 UTC, Stefan de Konink
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Stefan de Konink 2006-12-25 09:38:55 UTC
Problem description:

Binutils cannot be cross compiled because the bfd/doc dir has a program called 'chew' which does something with the documentation files on the HOST machine.

It fails because the compilation of this program gets the CFLAGS of the TARGET platform. The attached patch removes this assignment from the configure script. It is tested with an epatch in the ebuild, and compiles cleanly.

The variable involved: CFLAGS_FOR_BUILD gets assigned with CFLAGS. Which isn't going to work between different platforms.
Comment 1 Stefan de Konink 2006-12-25 09:44:46 UTC
Created attachment 104714 [details, diff]
cflags_for_build.patch

# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.17.ebuild,v 1.17 2006/12/18 20:01:56 tgall Exp $

PATCHVER="1.1"
UCLIBC_PATCHVER="1.0"
ELF2FLT_VER=""
inherit toolchain-binutils

# ARCH - packages to test before marking
KEYWORDS="-* ~alpha ~amd64 arm ~hppa ia64 ~mips ppc ppc64 sh sparc ~sparc-fbsd ~x86 ~x86-fbsd"

src_unpack() {
        tc-binutils_unpack

        cd "${WORKDIR}"/patch
        tc-binutils_apply_patches

        cd "${WORKDIR}"/binutils-2.17
        epatch "${FILESDIR}"/cflags_for_build.patch
}
Comment 2 SpanKY gentoo-dev 2006-12-25 10:03:02 UTC
so set CFLAGS_FOR_BUILD to the host values