-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Makefile Bugs (OpenGL/OpenCL Dependencies?) #2
Comments
On Ubuntu install the headers with: apt-get install opencl-headers I'm still unable to compile it on Ubuntu using clang++ but the above should solve that issue. |
More errors after installing the OpenCL header files...
|
Thibault says that he has some fixes to push for Ubuntu. Will be up Monday at the latest. |
Hello, make native I get error like --- Packing Resources ---
mkdir -p Pack
mkdir -p Pack/hud
xxd -i Resources/Hud/pointer.png > Pack/Hud/pointer.png
/bin/sh: 1: cannot create Pack/Hud/pointer.png: Directory nonexistent
make: *** [pack] Error 2 Script stops but file pointer.png exists in Pack/Hud directory... |
You have to change the line "mkdir -p Pack/hud" to "mkdir -p Pack/Hud"
|
That bug is actually already fixed in the latest version of graphiti, but the dataviz repository is referencing an old version. I recommend checking out the raindance/ graphiti repositories directly and not following the references from the dataviz repo. |
Thank you achillean. Sorry for replying to this so late. I've made a couple of fixes for Ubuntu, you should be able to compile just fine now. |
After running the following in the
dataviz/graphiti
directory:make native
The following output:
In file included from ../raindance/Raindance.hh:3:
../raindance/Core/Headers.hh:18:12: fatal error: 'CL/cl.h' file not found
# include <CL/cl.h>
A similar error was also part of the output before installing the freeglut3 package. I'm assuming the OpenGL and OpenCL frameworks need to be properly installed before using dataviz. Please reflect this in both the homepage and the git repo/README.
The text was updated successfully, but these errors were encountered: