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

Subversion Repositories zipcpu

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

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

Rev 111 Rev 200
Line 1... Line 1...
#!/bin/bash
#!/bin/bash
 
################################################################################
 
##
 
## Filename:    gas-script.sh
 
##
 
## Project:     Zip CPU -- a small, lightweight, RISC CPU soft core
 
##
 
## Purpose:     To configure binutils to properly build the binutils portion of
 
##              the ZipCPU toolchain.
 
##
 
## Creator:     Dan Gisselquist, Ph.D.
 
##              Gisselquist Technology, LLC
 
##
 
################################################################################
 
##
 
## Copyright (C) 2016, Gisselquist Technology, LLC
 
##
 
## This program is free software (firmware): 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 3 of the License, or (at
 
## your option) any later version.
 
##
 
## This program is distributed in the hope that it will be useful, but WITHOUT
 
## ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
 
## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
## for more details.
 
##
 
## License:     GPL, v3, as defined and found on www.gnu.org,
 
##              http://www.gnu.org/licenses/gpl.html
 
##
 
##
 
################################################################################
 
##
 
##
if [[ ! -d binutils-2.25 ]]
if [[ ! -d binutils-2.25 ]]
then
then
  tar -xjf ./binutils-2.25.tar.bz2
  tar -xjf ./binutils-2.25.tar.bz2
  cd binutils-2.25
  cd binutils-2.25
  patch -p1 <../binutils-2.25.patch
  patch -p1 <../binutils-2.25.patch
  cd ..
  cd ..
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
 
 
set +h
set +h
set -e
set -e
CLFS_HOST="x86_64-cross-linux-gnu"
CLFS_HOST="x86_64-cross-linux-gnu"
 
# 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 ${INSTALL_BASE}/tools/lib
 
mkdir -p build-gas
mkdir -p build-gas
cd build-gas
cd build-gas
AR=ar AS=as     \
AR=ar AS=as     \
../binutils-2.25/configure --with-gas --prefix=${INSTALL_BASE}/cross-tools \
../binutils-2.25/configure --with-gas                           \
 
        --prefix=${INSTALL_BASE}/cross-tools                    \
        --host=${CLFS_HOST}     --target=${CLFS_TARGET}         \
        --host=${CLFS_HOST}     --target=${CLFS_TARGET}         \
        --with-sysroot=${INSTALL_BASE}                          \
        --disable-nls           --disable-multilib              \
        --with-lib-path=${INSTALL_BASE}/tools/lib               \
        --enable-plugins        --enable-threads                \
        --disable-nls --disable-static --disable-multilib       \
 
        --enable-gold=yes --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.