Altera_Forum
Honored Contributor
7 years agomake <e=2> the system cannot find the file specified
Itry to run the project in DEmonstrations SOC-fpga-my first _hps_fpga flowing the same steps like this project :https://www.youtube.com/watch?v=2wuket4-q7q
My operationg system is windows8.1 I used shell commend nios II LIKE IN THE TUTORIAL BUT: when I launch make arm-linux-gnueabihf-gcc-static-g-wall -I/ip/altera/hps/altera_hps/hwlib/include -c main.c -o-main.o process began :create Process<NULL, arm-linux-gnueabihf-gcc-static-g-wall -I/ip/altera/hps/altera_hps/hwlib/include -c main.c -o-main.o ---> failed the error was : make <e=2> the system cannot find the file specified . MY MAKEFILE IS : TARGET = my_first_hps CROSS_COMPILE = arm-linux-gnueabihf- CFLAGS= -g -Wall -l ${SOCEDS_DEST_ROOT}/ip/altera/hps/altera_hps/hwlib/include LDFLAGS= -g -Wall CC=$(CROSS_COMPILE)gcc ARCH=arm all:$(TARGET) $(TARGET):main.o $(CC)$(LDFLAGS) $^ -o $@ %.o: %.c $(CC)$(CFLAGS) -c $< -o $@ .PHONY:clean clean: rm -f $(TARGET)*.a.*o*~ thank u help me please