Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
SCSLabs/RealTimeClockLab05/RealTimeClockLab05.runs/impl_1/runme.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
47 lines (37 sloc)
1.12 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # Vivado(TM) | |
| # runme.sh: a Vivado-generated Runs Script for UNIX | |
| # Copyright 1986-2014 Xilinx, Inc. All Rights Reserved. | |
| # | |
| echo "This script was generated under a different operating system." | |
| echo "Please update the PATH and LD_LIBRARY_PATH variables below, before executing this script" | |
| exit | |
| if [ -z "$PATH" ]; then | |
| PATH=C:/Xilinx2/Vivado/2014.4/ids_lite/ISE/bin/nt;C:/Xilinx2/Vivado/2014.4/ids_lite/ISE/lib/nt:C:/Xilinx2/Vivado/2014.4/bin | |
| else | |
| PATH=C:/Xilinx2/Vivado/2014.4/ids_lite/ISE/bin/nt;C:/Xilinx2/Vivado/2014.4/ids_lite/ISE/lib/nt:C:/Xilinx2/Vivado/2014.4/bin:$PATH | |
| fi | |
| export PATH | |
| if [ -z "$LD_LIBRARY_PATH" ]; then | |
| LD_LIBRARY_PATH= | |
| else | |
| LD_LIBRARY_PATH=:$LD_LIBRARY_PATH | |
| fi | |
| export LD_LIBRARY_PATH | |
| HD_PWD=`dirname "$0"` | |
| cd "$HD_PWD" | |
| HD_LOG=runme.log | |
| /bin/touch $HD_LOG | |
| ISEStep="./ISEWrap.sh" | |
| EAStep() | |
| { | |
| $ISEStep $HD_LOG "$@" >> $HD_LOG 2>&1 | |
| if [ $? -ne 0 ] | |
| then | |
| exit | |
| fi | |
| } | |
| # pre-commands: | |
| /bin/touch .write_bitstream.begin.rst | |
| EAStep vivado -log counter.vdi -applog -m32 -messageDb vivado.pb -mode batch -source counter.tcl -notrace | |