From 6ebfd4afe79cb4dd109eed97c63ddba004d0ace5 Mon Sep 17 00:00:00 2001 From: umarcor Date: Fri, 27 Nov 2020 03:24:41 +0100 Subject: [PATCH] aes: fix build arg order --- aes/sim/vhdl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aes/sim/vhdl/Makefile b/aes/sim/vhdl/Makefile index 99d93b7..b75a86e 100644 --- a/aes/sim/vhdl/Makefile +++ b/aes/sim/vhdl/Makefile @@ -73,7 +73,7 @@ tb_aes: ${RTL_SRC} ${SIM_SRC} ${C_SRC} osvvm/OsvvmContext.o | work @echo "Analyze testbench & design ..." ghdl -a --std=$(VHD_STD) -fpsl --workdir=work -P=osvvm ${RTL_SRC} ${SIM_SRC} @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