[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: octave-4.0.1-installer-w64-3
From: |
Martin Kunz |
Subject: |
Re: octave-4.0.1-installer-w64-3 |
Date: |
Fri, 15 Apr 2016 14:18:35 +0200 |
User-agent: |
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.7.2 |
Am 15.04.2016 um 03:41 schrieb Tatsuro MATSUOKA:
> I have upload 64 bit binaries of octave-4.0.1 for windows (release 3).
> http://www.tatsuromatsuoka.com/octave/Eng/Win/
Apparently there is something wrong with this build:
>> help nchoosek
syntax error at C:\Octave\Octave-4.0.1\bin\makeinfo line 54, near "my "
Global symbol "$package" requires explicit package name at
C:\Octave\Octave-4.0.1\bin\makeinfo line 54.
Global symbol "$package" requires explicit package name at
C:\Octave\Octave-4.0.1\bin\makeinfo line 70.
Global symbol "$package" requires explicit package name at
C:\Octave\Octave-4.0.1\bin\makeinfo line 72.
BEGIN not safe after errors--compilation aborted at
C:\Octave\Octave-4.0.1\bin\makeinfo line 104.
warning: help: Texinfo formatting filter exited abnormally; raw Texinfo
source of help text follows...
'nchoosek' is a function from the file
C:\Octave\Octave-4.0.1\share\octave\4.0.1\m\specfun\nchoosek.m
Additional help for built-in functions and operators is
available in the online version of the manual. Use the command
'doc <topic>' to search the manual index.
Help and information about Octave is also available on the WWW
at http://www.octave.org and via the address@hidden
mailing list.
A similar error occurs when I try to run the build_packages script:
>> build_packages
## cd to script directory as the packages files are in the same place
packagedir = fileparts (mfilename ("fullpathext"));
if length (packagedir) > 0
cd (packagedir);
endif;
cd (packagedir);
## helper function to try install a package, and recover
function try_install (pkgname)
currdir = pwd ();
try
pkg ('install', pkgname, '-noauto')
catch err
warning (err.identifier, err.message);
end_try_catch;
cd (currdir);
endfunction;
;
## install the packages
try_install ('general-2.0.0.tar.gz')
syntax error at C:\Octave\Octave-4.0.1\bin\makeinfo line 54, near "my "
Global symbol "$package" requires explicit package name at
C:\Octave\Octave-4.0.1\bin\makeinfo line 54.
Global symbol "$package" requires explicit package name at
C:\Octave\Octave-4.0.1\bin\makeinfo line 70.
Global symbol "$package" requires explicit package name at
C:\Octave\Octave-4.0.1\bin\makeinfo line 72.
BEGIN not safe after errors--compilation aborted at
C:\Octave\Octave-4.0.1\bin\makeinfo line 104.
warning: doc_cache_create: unusable help text found in file 'adresamp2'
syntax error at C:\Octave\Octave-4.0.1\bin\makeinfo line 54, near "my "
Global symbol "$package" requires explicit package name at
C:\Octave\Octave-4.0.1\bin\makeinfo line 54.
Global symbol "$package" requires explicit package name at
C:\Octave\Octave-4.0.1\bin\makeinfo line 70.
Global symbol "$package" requires explicit package name at
C:\Octave\Octave-4.0.1\bin\makeinfo line 72.
[and so on]
Do you have any idea how to fix this?