Forum Discussion
Altera_Forum
Honored Contributor
11 years agoCompile a makefile using arm-linux-gnueabihf compiler
I have downloaded SoC EDS tool which includes DS-5 as well. However, I have been trying to compile the simple "Hello world" but it does not compile and make it. I want to put this into my DE1 SoC FPG...
Altera_Forum
Honored Contributor
8 years agoHi! I know this is an old post, but I had the same issue some weeks ago so I think it may be useful for someone to have here the solution.
The problem here is this line: build:$(TARGET) As far as I know, when you run the command "make" in DS-5, what it really does is to run the command "make all", so the compiler looks for the label "all" into the Makefile. In this Makefile, this label does not exist, and that's because you ended up with that error. So, to fix this problem you only have to change the label "build" by the label "all" and it should work fine.