Skip to content
Snippets Groups Projects
Commit d051c892 authored by Daniel van der Schuur's avatar Daniel van der Schuur
Browse files

-Added IF statement to disable library subdir creation in case of 'unb2'.

parent 60a58c37
Branches
No related tags found
No related merge requests found
...@@ -123,8 +123,10 @@ mv ../${FAMILY}_vhdl.log . ...@@ -123,8 +123,10 @@ mv ../${FAMILY}_vhdl.log .
# #
# file.txt = the file name # file.txt = the file name
sed -i 's/vlib/vlib -type directory/g' ${FAMILY}_verilog.do if [ "${TARGET}" = "unb2" ]; then
sed -i 's/vlib/vlib -type directory/g' ${FAMILY}_vhdl.do sed -i 's/vlib/vlib -type directory/g' ${FAMILY}_verilog.do
sed -i 's/vlib/vlib -type directory/g' ${FAMILY}_vhdl.do
fi
# 4) Compile the Altera libraries with Modelsim # 4) Compile the Altera libraries with Modelsim
$VSIM_DIR/vsim -c -do ${FAMILY}_verilog.do $VSIM_DIR/vsim -c -do ${FAMILY}_verilog.do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment