help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: parcellfun test issue on Mac OS 10.8, was Re: problems installing op


From: c.
Subject: Re: parcellfun test issue on Mac OS 10.8, was Re: problems installing openmpi_ext
Date: Mon, 9 Sep 2013 17:23:50 +0200

On 9 Sep 2013, at 15:59, Alexander Hansen <address@hidden> wrote:

> I've got similar, but slightly more verbose output (with -g, -O0, and using 
> gcc-4.8 to build Octave):

This confirms the problem occurs in "fload.cc", even if reading from a real 
file and not from a pipe.
this is very surprising as "fload" is essentially the same as the built in load 
command except it uses 
an already open file stream ...

Does the following also give you problems?

x = pi;
name = tmpnam;
save ("-binary", name, "x");
y = load ("-binary", name, "x");
assert (x, y.x)
z = load (name, "x");
assert (x, z.x)

c.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]