From a0907cbbfef74a27e6649c068839715a1691d2bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A0rius=20Mont=C3=B3n?= Date: Fri, 13 Sep 2019 14:28:43 +0200 Subject: [PATCH] fixed wrong objdump filename --- tests/C/long_test1/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/C/long_test1/Makefile b/tests/C/long_test1/Makefile index 837ff9b..fc446be 100644 --- a/tests/C/long_test1/Makefile +++ b/tests/C/long_test1/Makefile @@ -31,7 +31,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 riscv32-unknown-elf-objcopy -Oihex $< $(TARGET).hex # @echo "Linking complete!"