48 lines
1.4 KiB
Bash
48 lines
1.4 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
#
|
||
|
# Vivado(TM)
|
||
|
# runme.sh: a Vivado-generated Runs Script for UNIX
|
||
|
# Copyright 1986-2018 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=T:/AdvanceSoftwares/Xilinx2018/SDK/2018.3/bin;T:/AdvanceSoftwares/Xilinx2018/Vivado/2018.3/ids_lite/ISE/bin/nt64;T:/AdvanceSoftwares/Xilinx2018/Vivado/2018.3/ids_lite/ISE/lib/nt64:T:/AdvanceSoftwares/Xilinx2018/Vivado/2018.3/bin
|
||
|
else
|
||
|
PATH=T:/AdvanceSoftwares/Xilinx2018/SDK/2018.3/bin;T:/AdvanceSoftwares/Xilinx2018/Vivado/2018.3/ids_lite/ISE/bin/nt64;T:/AdvanceSoftwares/Xilinx2018/Vivado/2018.3/ids_lite/ISE/lib/nt64:T:/AdvanceSoftwares/Xilinx2018/Vivado/2018.3/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='L:/PersonalProjects/Xilinx/SpectrumAnalyzer_FFT_windows/SpectrumAnalyzer_FFT_windows.runs/impl_1'
|
||
|
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 design_1_wrapper.vdi -applog -m64 -product Vivado -messageDb vivado.pb -mode batch -source design_1_wrapper.tcl -notrace
|
||
|
|
||
|
|