octave-maintainers
[Top][All Lists]
Advanced

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

Re: mkoctfile urgently needs attention before Octave 3.6.0


From: c.
Subject: Re: mkoctfile urgently needs attention before Octave 3.6.0
Date: Thu, 29 Dec 2011 23:18:10 +0100

On 29 Dec 2011, at 22:57, Lukas Reichlin wrote:

> OK, I tested all developer makefiles with
> 
>         "$(mkoctfile -p LAPACK_LIBS)" \
>         "$(mkoctfile -p BLAS_LIBS)"
> 
> and it worked for both the +accelerate and the +atlas option of the Portfile. 
> They are in the all the "devel" folder [1].
> 
> Then I restored the package makefile [2] to Marco Atzeris original patch, 
> which should do the same as my developer makefiles.

It doesn't do the same on my system, for me the commands:

LAPACK_LIBS != mkoctfile -p LAPACK_LIBS
BLAS_LIBS != mkoctfile -p BLAS_LIBS

do not set any value for LAPACK_LIBS and BLAS_LIBS.
I did not know the syntax "!=" maybe this only works with newer versions of 
gmake[1]?

try this instead:

LAPACK_LIBS = $$(mkoctfile -p LAPACK_LIBS)
BLAS_LIBS = $$(mkoctfile -p BLAS_LIBS)
FLIBS = $$(mkoctfile -p FLIBS)

c.


[1] I have installed this one:

make --version
GNU Make 3.81
Copyright (C) 2006  Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

This program built for i386-apple-darwin10.8.0

reply via email to

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