Browse Source

aes: fix build arg order

master
umarcor 3 years ago
parent
commit
6ebfd4afe7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      aes/sim/vhdl/Makefile

+ 1
- 1
aes/sim/vhdl/Makefile View File

@ -73,7 +73,7 @@ tb_aes: ${RTL_SRC} ${SIM_SRC} ${C_SRC} osvvm/OsvvmContext.o | work
@echo "Analyze testbench & design ..." @echo "Analyze testbench & design ..."
ghdl -a --std=$(VHD_STD) -fpsl --workdir=work -P=osvvm ${RTL_SRC} ${SIM_SRC} ghdl -a --std=$(VHD_STD) -fpsl --workdir=work -P=osvvm ${RTL_SRC} ${SIM_SRC}
@echo "Elaborate testbench & design ..." @echo "Elaborate testbench & design ..."
ghdl -e --std=$(VHD_STD) -fpsl --workdir=work -P=osvvm -Wl,-lcrypto -Wl,-lssl -Wl,$@.c $@
ghdl -e --std=$(VHD_STD) -fpsl --workdir=work -P=osvvm -Wl,$@.c -Wl,-lcrypto -Wl,-lssl $@
tb_aes.ghw: tb_aes tb_aes.ghw: tb_aes


Loading…
Cancel
Save