We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From [email protected] on October 31, 2014 20:27:01
Problem: when i run $sudo ./build.py --install on ubuntu 14.04 i get:
undefined reference to setupterm' undefined reference totigetnum' undefined reference to set_curterm' undefined reference todel_curterm'
setupterm' undefined reference to
set_curterm' undefined reference to
Cause: -ltinfo needs to be included AFTER the LLVM dependencies
Solution/Workaround: on line 136 of SConscript replace: ocelot_libs = ocelot_libs + ocelot_dep_libs
with: ocelot_libs = ocelot_libs + ocelot_dep_libs + ['-ltinfo']
Original issue: http://code.google.com/p/gpuocelot/issues/detail?id=99
The text was updated successfully, but these errors were encountered:
hi, I have the similar problem. When I build gpuocelot, is shows problem like this:
/usr/local/lib/libocelot.so: undefined reference to `hydrazine::isinf(float)
Sorry, something went wrong.
No branches or pull requests
From [email protected] on October 31, 2014 20:27:01
Problem: when i run
$sudo ./build.py --install
on ubuntu 14.04 i get:
undefined reference to
setupterm' undefined reference to
tigetnum'undefined reference to
set_curterm' undefined reference to
del_curterm'Cause:
-ltinfo needs to be included AFTER the LLVM dependencies
Solution/Workaround:
on line 136 of SConscript replace:
ocelot_libs = ocelot_libs + ocelot_dep_libs
with:
ocelot_libs = ocelot_libs + ocelot_dep_libs + ['-ltinfo']
Original issue: http://code.google.com/p/gpuocelot/issues/detail?id=99
The text was updated successfully, but these errors were encountered: