Archive for 'Uncategorized'

Chamilo. The new e-learning platform

Today is born the new e-learning platform. Chamilo!
Chamilo is a new project that opts for open source in a radical way. It aims at bringing you the best e-learning and collaboration platform in the open source world.

Compile Opencv with Mac os Snow Leopard 10.6

Today i try install OpenCv in my MacOs Snow Leopard 10.6 and have this error:
error: CPU you selected does not support x86-64 instruction set
The searching in google have the solution
go to opencv folder and edit configure file, searchi prescott and replace the line
DEFAULT_CXXFLAGS=”-g -march=prescott -ffast-math -fomit-frame-pointer $DEFAULT_CXXFLAGS”
with this:
DEFAULT_CXXFLAGS=”-g -march=i686 -m32 -ffast-math -fomit-frame-pointer $DEFAULT_CXXFLAGS”
But when [...]