Raspberry Pi Bare Bones: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
No, you don't, because of -std=c99. Protip: test the code before deciding whether to edit the article.
→‎Makefile: Changed one "$(ARMGNU)-g++" to an "$(ARMGNU)-gcc"
Line 219: Line 219:
# AS.
# AS.
%.o: %.S Makefile
%.o: %.S Makefile
$(ARMGNU)-g++ $(ASFLAGS) -c $< -o $@
$(ARMGNU)-gcc $(ASFLAGS) -c $< -o $@
</source>
</source>