Forum Discussion
ASobc
New Contributor
7 years agomake (e=2): the system cannot find the file specified how to fix this
I am running this in the SoC command shell, on windows 10.
#
TARGET = de1_soc_hps_binary
#
CROSS_COMPILE = arm-linux-gnueabihf-
CFLAGS = -static -g -Wall -I${SOCEDS_DEST_ROOT}/ip/altera_hps/hwlib/include
LDFLAGS = -g -Wall
CC = $(CROSS_COMPILE)gcc
ARCH = arm
build: $(TARGET)
$(TARGET) : main.o
$(CC) $(LDFLAGS) $^ -o $@
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
.PHONY: clean
clean:
rm -f $(TARGET) *.a *.o *~
3 Replies
- FawazJ_Altera
Frequent Contributor
Hello, May I know what are you looking for? I cannot find any error or issue. Is this a build for a preloader? or uboot? Thanks - ASobc
New Contributor
This build was for a preloader. I solved it though I had an error elsewhere.
Thanks
- FawazJ_Altera
Frequent Contributor
So is there any other error you are seeing? thanks