|
# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
|
|
#
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
# Please add additional copyright information _after_ the line containing
|
|
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
|
|
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
|
|
#
|
|
# ROCK Linux: rock-src/package/base/binutils/binutils.conf
|
|
# ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version. A copy of the GNU General Public
|
|
# License can be found at Documentation/COPYING.
|
|
#
|
|
# Many people helped and are helping developing ROCK Linux. Please
|
|
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM
|
|
# file for details.
|
|
#
|
|
# --- ROCK-COPYRIGHT-NOTE-END ---
|
|
|
|
pkg_binutils_cross=""
|
|
|
|
#this fixes a problem with flex
|
|
var_append confopt " " "--disable-werror"
|
|
|
|
case "$xpkg" in
|
|
$pkg-cross-*)
|
|
pkg_binutils_cross="${xpkg#**-cross-}"
|
|
var_append confopt " " "--target=$pkg_binutils_cross-unknown-linux-gnu"
|
|
echo_status "Preparing to build a cross-binutils package for $pkg_binutils_cross."
|
|
var_append INSTALL_WRAPPER_FILTER "|" 'sed -r "\,/share/(info|locale)/|/lib.*/libiberty.a, d"'
|
|
;;
|
|
$pkg)
|
|
;;
|
|
*)
|
|
echo_error "Not supported $pkg package name: $xpkg"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
binutils_stage0() {
|
|
bindir="$root/$prefix/crosscc"; mkdir -p $root/$prefix/crosscc
|
|
eval ./configure --program-prefix=${arch_target}- $confopt
|
|
make all install
|
|
}
|
|
|
|
if [ $stagelevel -eq 0 ]; then
|
|
custmain="binutils_stage0"
|
|
else
|
|
preconf="mkdir -p objdir ; cd objdir" ; configscript="../configure"
|
|
if [ $stagelevel -gt 2 ] ; then
|
|
var_remove confopt " " "--disable-static"
|
|
hook_add postmake 3 "eval $MAKE info install-info"
|
|
hook_add postmake 3 "eval $MAKE -C gas/doc install-man"
|
|
fi
|
|
fi
|
|
|