Forum Discussion
Hi,
May I know how do you performed the installation? Have you check your system environment? You could check the environment by running the command "env" in the terminal.
One additional clue (perhaps) from today. My colleague sent me the following:
In Makefile.fpga I replaced the following line:
CXX := dpcpp
with:
CXX := dpcpp --gcc-toolchain=/.alpha/public/opt/gcc-8.3.0
That got rid of the include file complaints, but added the new complaint
"Error: No recognized input file format on the command line".
Not sure whether it actually fixed the original problem and allowed the process to hit the next problem, or just caused a new problem to occur before the old problem could actually be encountered.
The only reason I have for thinking it's the first rather than the second is that while the commands
clang -x c -v -E /dev/null
and
dpcpp -x c -v -E /dev/null
both produce output that includes
"Selected GCC installation: /.alpha/lib/gcc/x86_64-redhat-linux/4.8.5",
the command
dpcpp --gcc-toolchain=/.alpha/public/opt/gcc-8.3.0 -x c -v -E /dev/null
produces output that includes:
"Selected GCC installation: /.alpha/public/opt/gcc-8.3.0/lib/gcc/x86_64-pc-linux-gnu/8.3.0".
Not really sure where to go from here.