-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix tests #390
Fix tests #390
Conversation
JDLopes
commented
Apr 28, 2022
- Add dependency from firmware.bin when running console;
- Fix document targets;
- Cleanup root Makefile;
- Remove dummy trap on simulation build target;
- Simplify boot.hex and firmware.hex targets.
…ets; add general clean target
@@ -56,14 +56,14 @@ endif | |||
#RULES | |||
build: $(VSRC) $(VHDR) $(HEXPROGS) | |||
ifeq ($(SIM_SERVER),) | |||
bash -c "trap 'make kill-sim' INT TERM KILL EXIT; make comp" | |||
make comp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why delete this ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because here is running a build, not a simulation. So there is no simulation stuck to kill.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks
hardware/hardware.mk
Outdated
$(PYTHON_DIR)/hex_split.py firmware . | ||
cp $(FIRM_DIR)/firmware.bin . | ||
|
||
firmware.bin: $(FIRM_DIR)/firmware.bin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delete this target
@@ -56,14 +56,14 @@ endif | |||
#RULES | |||
build: $(VSRC) $(VHDR) $(HEXPROGS) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copy bin here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done!