From 37891e28a006f00652125a0faa8ee38d4472dd2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A0rius=20Mont=C3=B3n?= Date: Mon, 9 Sep 2019 14:09:16 +0200 Subject: [PATCH] fixed wrong binary name --- tests/C/func4/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/C/func4/Makefile b/tests/C/func4/Makefile index eaaa711..8ee871f 100644 --- a/tests/C/func4/Makefile +++ b/tests/C/func4/Makefile @@ -29,7 +29,7 @@ rm = rm -f $(BINDIR)/$(TARGET): $(OBJECTS) # $(LINKER) $(OBJECTS) $(LDFLAGS) $(LIBS) $(LIBDIR) -o $@ - riscv32-unknown-linux-gnu-objdump -d $< > dump + riscv32-unknown-elf-objdump -d $< > dump objcopy -Oihex $< $(TARGET).hex # @echo "Linking complete!"