Forum Discussion
Altera_Forum
Honored Contributor
8 years agoHi cdj971!
I ran into this issue as well on both Ubuntu 16.04 and CentOS 7. To resolve the issue I added the directory to the queue and dequeue to the include path ex: i++ small.c -v -I/usr/include/x86_64-linux-gnu/c++/5.4.0 -o small -march=x86-64 If that doesn't work I also made these changes on the Ubuntu machine (related to you trying to get the libraries to see queue and dequeue): cd <quartus_install>/<ver>/hls/linux64/lib/dspba/linux64 sudo mv libstdc++.so libstdc++.so.bak sudo mv libstdc++.so.6 libstdc++.so.6.bak sudo ln –s /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21 libstdc++.so.6 sudo ln –s /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21 libstdc++.so Hopefully this information was helpful!