@echo off REM **************************************************************************** REM Vivado (TM) v2021.2 (64-bit) REM REM Filename : elaborate.bat REM Simulator : Xilinx Vivado Simulator REM Description : Script for elaborating the compiled design REM REM Generated by Vivado on Mon May 16 13:48:49 +0200 2022 REM SW Build 3367213 on Tue Oct 19 02:48:09 MDT 2021 REM REM IP Build 3369179 on Thu Oct 21 08:25:16 MDT 2021 REM REM usage: elaborate.bat REM REM **************************************************************************** REM elaborate design echo "xelab --incr --debug typical --relax --mt 2 -L xil_defaultlib -L ieee_proposed -L secureip --snapshot fixedPointTest_db_behav xil_defaultlib.fixedPointTest_db -log elaborate.log" call xelab --incr --debug typical --relax --mt 2 -L xil_defaultlib -L ieee_proposed -L secureip --snapshot fixedPointTest_db_behav xil_defaultlib.fixedPointTest_db -log elaborate.log if "%errorlevel%"=="0" goto SUCCESS if "%errorlevel%"=="1" goto END :END exit 1 :SUCCESS exit 0