From e9a9b18b1492525d2fba91d3fc34e9d287a16699 Mon Sep 17 00:00:00 2001 From: Philipp Spilger <philipp.spilger@kip.uni-heidelberg.de> Date: Wed, 3 Aug 2022 11:43:10 +0200 Subject: [PATCH] Fix missing dependency on nux_vx_vY for neuron reset vector test * required because sleep_cycles() is used Change-Id: Ice5f757b9c37da64e52a4a9abca7c701b84ccd05 --- tests/hw/libnux/with_hostcode/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hw/libnux/with_hostcode/wscript b/tests/hw/libnux/with_hostcode/wscript index 0a29f00..75a625d 100644 --- a/tests/hw/libnux/with_hostcode/wscript +++ b/tests/hw/libnux/with_hostcode/wscript @@ -169,7 +169,7 @@ def build_ppu_cpp(bld, chip_version: Integral): features="cxx", target=f"neuron_reset_vector-ppu_vx_v{chip_version}.bin", source="vx/neuron_reset_vector-ppu.cpp", - use=[f"nux_runtime_vx_v{chip_version}"], + use=[f"nux_vx_v{chip_version}", f"nux_runtime_vx_v{chip_version}"], env=env) bld.program( -- GitLab