Forum Discussion
Altera_Forum
Honored Contributor
9 years agoHi Christnp
I checked out the linux-socfpga source code from git-hub, however when I try to compile on windows in complaints about some paths having spaces or semicolons... which is the case for windows paths :(. I have set-up the project in a linux machine now in order to try and avoid this problem (and also because I wanted to be on a linux environment anyway), however I got to another blocker because it looks like I have not configured the environment for the SDK to work correctly. I kick-off the embedded command shell:pedro@pedro-debian64:/opt/intelFPGA/16.1/embedded$ ./embedded_command_shell.sh
------------------------------------------------
Altera Embedded Command Shell
Version 16.1
------------------------------------------------ From there I attempt to compile, but it looks like make does not find the correct compiler, although it is on my environment: When trying to run make, I get the following: pedro@pedro-debian64:~/sandbox/opencl/arrow_c5sockit_bsp/arrow_c5sockit_bsp/driver$ make all
arm-linux-gnueabihf-gcc -g -DLINUX -Wall -Werror -o user user.c
make: arm-linux-gnueabihf-gcc: Command not found
Makefile:19: recipe for target 'all' failed
make: *** Error 127 However the compiler is on my path: pedro@pedro-debian64:~/sandbox/opencl/arrow_c5sockit_bsp/arrow_c5sockit_bsp/driver$ which arm-linux-gnueabihf-gcc
/opt/intelFPGA/16.1/embedded/ds-5/sw/gcc/bin/arm-linux-gnueabihf-gcc I am a bit stuck there because of this... any suggestions?