OpenCores
URL https://opencores.org/ocsvn/zipcpu/zipcpu/trunk

Subversion Repositories zipcpu

[/] [zipcpu/] [trunk/] [sw/] [gas-script.sh] - Diff between revs 200 and 202

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 200 Rev 202
Line 30... Line 30...
##
##
##
##
################################################################################
################################################################################
##
##
##
##
if [[ ! -d binutils-2.25 ]]
VERSION=binutils-2.27
 
if [[ ! -d $VERSION-zip/ ]]
then
then
  tar -xjf ./binutils-2.25.tar.bz2
  tar -xjf ./$VERSION.tar.bz2 --transform s,$VERSION,$VERSION-zip,
  cd binutils-2.25
  if [[ -e gas-zippatch.patch ]]
  patch -p1 <../binutils-2.25.patch
  then
 
    patch -p1 <../gas-zippatch.patch
  cd ..
  cd ..
 
  else
 
    echo "ZipCPU binutils patch not found"
fi
fi
 
 
uname -a | grep x86 > /dev/null
 
if [[ $? != 0 ]]; then
 
  echo "This build script only works for x86_64 machines"
 
  echo "You will need to change the CLFS_HOST line if you wish to build"
 
  echo "on any other type of host."
 
  exit 1
 
fi
fi
 
 
set +h
set +h
set -e
set -e
CLFS_HOST="x86_64-cross-linux-gnu"
CLFS_HOST=$MACHTYPE
# CLFS_HOST="arm-unknown-linux-gnueabihf" # For a Raspberry Pi
 
CLFS_TARGET="zip"
CLFS_TARGET="zip"
INSTALL_BASE=`pwd`/install
INSTALL_BASE=`pwd`/install
mkdir -p ${INSTALL_BASE}/cross-tools
mkdir -p ${INSTALL_BASE}/cross-tools
mkdir -p build-gas
mkdir -p build-gas
 
echo ../$VERSION-zip/configure
cd build-gas
cd build-gas
AR=ar AS=as     \
AR=ar AS=as     \
../binutils-2.25/configure --with-gas                           \
../$VERSION-zip/configure --with-gas                            \
        --prefix=${INSTALL_BASE}/cross-tools                    \
        --prefix=${INSTALL_BASE}/cross-tools                    \
        --host=${CLFS_HOST}     --target=${CLFS_TARGET}         \
        --target=${CLFS_TARGET}                                 \
        --disable-nls           --disable-multilib              \
        --disable-nls           --disable-multilib              \
        --enable-plugins        --enable-threads                \
        --enable-plugins        --enable-threads                \
        --disable-werror
        --disable-werror
 
 
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.