cyrus / high-dimensional-explorer

An implementation of a high-dimensional model of lexical co-occurrence.
http://www.psych.ualberta.ca/~westburylab/
GNU General Public License v3.0
9 stars 4 forks source link

I get this when I try to compile #1

Open lucasnoah opened 10 years ago

lucasnoah commented 10 years ago

g++ -g -O3 -ffast-math -fpeel-loops -ftracer -D NDEBUG -o utilities.o -c utilities.cpp utilities.cpp:54:20: fatal error: unistr.h: No such file or directory compilation terminated. make: *\ [utilities.o] Error 1

cyrus commented 10 years ago

Hi Lucas,

It looks like you haven't installed the GNU unicode string handling libraries.

The are available for all linux distributions and mac ports.

On Ubuntu or Mint, this command will install the software:

sudo apt-get install libunistring-dev

Let me know if that works for you!

cyrus commented 10 years ago

One more thing, Lucas,

I just added some new changes to the code and changed the version to 0.08, so please clone the repository again, or just use

git pull
lucasnoah commented 10 years ago

Thanks