C++ in Makefile

Hi,

I am facing the following problem while trying to run a C++ code in Makefile. Please suggest a solution to rectify this:

$ make

ccache g++ -ggdb -fPIC -I/opt/Xilinx/Vivado_HLS/2013.2/Linux_x86_64/tools/systemc/include -I. -I/opt/Xilinx/Vivado_HLS/2013.2/include -mcmodel=medium -lm -llog4cxx -c quadratic_equation_test.cc
In file included from quadratic_equation_test.cc:7:0:
types.h:4:22: fatal error: ap_fixed.h: No such file or directory
compilation terminated.
closed account (S6k9GNh0)
Do not post in multiple sections of the forum.
ap_fixed.h: No such file or directory
It can't find that header file, you need to set the path somehow.

First you need to find if the file is installed, then add the path to the makefile somwhere.
closed account (S6k9GNh0)
(he's already been answered in two other threads)
Topic archived. No new replies allowed.