dsk,
I followed your instructions of replacing the installed "cl.hpp" file with the one you posted here. I was able to compile, link, and run the sample code I have in this post successfully on the FPGA development board.
Thank you.
Here is the modified makefile for those interested.
all: main.exe
main.exe: main.o
arm-linux-gnueabihf-g++ -LC:\altera\14.0\hld\board\c5soc\arm32\lib -LC:/altera/14.0/hld/host/arm32/lib -lalteracl -lalterahalmmd -lalterammdpcie -lelf -lrt -lstdc++ -o main.exe main.o
main.o: main.cpp
arm-linux-gnueabihf-g++ -IC:/altera/14.0/hld/host/include -c main.cpp
clean:
rm main.o main.exe