File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ $(BUILD)/%.o: %.s
53
53
54
54
define compile_c
55
55
$(ECHO ) "CC $< "
56
- $(Q )$(CC ) $(CFLAGS ) -c -MD -o $@ $<
56
+ $(Q )$(CC ) $(CFLAGS ) -c -MD -o $@ $< || echo -e "See \033[1;31mhttps://github.com/micropython/micropython/wiki/Build-Troubleshooting\033[0m" && false
57
57
@# The following fixes the dependency file.
58
58
@# See http://make.paulandlesley.org/autodep.html for details.
59
59
@# Regex adjusted from the above to play better with Windows paths, etc.
65
65
66
66
define compile_cxx
67
67
$(ECHO ) "CXX $< "
68
- $(Q )$(CXX ) $(CXXFLAGS ) -c -MD -o $@ $<
68
+ $(Q )$(CXX ) $(CXXFLAGS ) -c -MD -o $@ $< || echo "See https://github.com/micropython/micropython/wiki/Build-Troubleshooting" && false
69
69
@# The following fixes the dependency file.
70
70
@# See http://make.paulandlesley.org/autodep.html for details.
71
71
@# Regex adjusted from the above to play better with Windows paths, etc.
You can’t perform that action at this time.
0 commit comments