source: ssp_aarch64/trunk/install.sh@ 407

Last change on this file since 407 was 407, checked in by nmir-saito, 4 years ago

delete ssp_aarch64.patch and remove unused line

  • Property svn:mime-type set to text/plain; charset=utf-8
File size: 263 bytes
Line 
1#!/usr/bin/env bash
2set -eu
3
4SCRIPT_DIR=$(cd $(dirname $0);pwd)
5
6if [ $# -lt 1 ]; then
7 echo "usage: install.sh dest_ssp_dir"
8 exit 1
9else
10 SSPDIR=$1
11fi
12
13cp -a ${SCRIPT_DIR}/arm64_gcc ${SSPDIR}/arch/
14cp -a ${SCRIPT_DIR}/qemu_virt_gcc ${SSPDIR}/target/
15
16exit 0
Note: See TracBrowser for help on using the repository browser.