[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: installing nan packge
From: |
Clemens Buchacher |
Subject: |
Re: installing nan packge |
Date: |
Tue, 21 May 2013 22:57:09 +0200 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
On Tue, May 21, 2013 at 07:00:45AM -0700, ander wrote:
>
> I am trying to install nan package using "pkg install -forge nan", but I
> receive the following error
>
> make: *** [histo_mex.mex] Error 1
> 'make' returned the following error: mkoctfile --mex histo_mex.cpp -lgomp
Is that the only output? Nothing between "> pkg install -forge nan" and
"make: *** [histo_mex.mex] Error 1"?
Note this known issue with g++ 4.8:
http://savannah.gnu.org/bugs/?38746
Please run the following commands in a temporary directory:
wget http://downloads.sourceforge.net/octave/nan-2.5.5.tar.gz
tar xzf nan-2.5.5.tar.gz
cd NaN/src
mkoctfile -v --mex histo_mex.cpp -lgomp
What is the output of the last command? Does it create a file
histo_mex.mex?
Clemens