Skip to content

Commit

Permalink
Fix the bug with the REAL_TOP calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangziqing committed Aug 24, 2024
1 parent 0aa8f62 commit e79841e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TOP = TopMain
SIM_TOP = SimTop
FPGATOP = Top
REAL_TOP = $(if $(subst "sim","",$(BOARD)),$(FPGATOP), $(SIM_TOP) )
REAL_TOP = $(if $(strip $(subst sim,,$(BOARD))),$(FPGATOP),$(SIM_TOP))

BUILD_DIR = $(abspath ./build)

Expand Down

0 comments on commit e79841e

Please sign in to comment.