octave-maintainers
[Top][All Lists]
Advanced

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

Re: linking liboctave fails (lapack missing?)


From: Benjamin Lindner
Subject: Re: linking liboctave fails (lapack missing?)
Date: Wed, 19 Aug 2009 10:30:50 +0200
User-agent: Thunderbird 2.0.0.22 (Windows/20090605)

John W. Eaton wrote:
On 18-Aug-2009, Benjamin Lindner wrote:

| John W. Eaton wrote:
| > On 15-Aug-2009, Benjamin Lindner wrote:
| > | > | Now for the undefined reference linker errors: | > | > I checked in some additional changes. I will deal with the mkoctfile
| > and octave-bug scripts/programs later, but is there anything that I
| > missed for building libcruft, liboctave, liboctinterp, and the .oct
| > files?
| > | | Aside from the pending octave-bug.cc and mkoctfile.cc changes,
| building and linking completes successfully for mingw32/gcc.

I checked in changes for octave-bug.cc.in and mkoctfile.cc.in so they
should build now.  Are there still problems?  BTW, this is why I think
we should eliminate the script versions of these files.  It would be
easier to ensure consistency if we didn't have both shell script and
C++ versions...

jwe


building from the following tip

changeset:   9545:8670e55078fd
tag:         tip
user:        Jaroslav Hajek <address@hidden>
date:        Mon Aug 17 14:46:18 2009 +0200
summary:     allow constructing octave_value_list from size

build fails at build-octave.cc with the attached errors.
I guess all substitution variables should be prefixed with 'OCTAVE_CONF_' as in the attached changeset.

Furthermore, there is a '|' character where it should be a '+' character in line 254 in mkoctfile.cc.in -> see changeset.


However, linking liboctinterp.dll now again fails with the following error
Creating library file: liboctinterp.dll.a../libcruft/blas-xtra/xerbla.o:xerbla.f:(.text+0x50): undefined reference to `_gfortran_st_write' ../libcruft/blas-xtra/xerbla.o:xerbla.f:(.text+0x67): undefined reference to `_gfortran_transfer_character' ../libcruft/blas-xtra/xerbla.o:xerbla.f:(.text+0x7e): undefined reference to `_gfortran_transfer_integer' ../libcruft/blas-xtra/xerbla.o:xerbla.f:(.text+0x86): undefined reference to `_gfortran_st_write_done'

Since xerbla.o is linked directly into liboctinterp.dll, $(FLIBS) is required in the link dependencies as

diff -r 87d36823eb0d src/Makefile.in
--- a/src/Makefile.in   Wed Aug 19 10:09:44 2009 +0200
+++ b/src/Makefile.in   Wed Aug 19 10:27:04 2009 +0200
@@ -331,7 +331,7 @@
   $(HDF5_LDFLAGS) $(HDF5_LIBS) $(Z_LDFLAGS) $(Z_LIBS) \
   $(OPENGL_LIBS) $(X11_LIBS) $(CARBON_LIBS) \
   $(READLINE_LIBS) \
-  $(LIBS)
+  $(FLIBS) $(LIBS)

 OCT_LINK_DEPS = $(RLD_FLAG) -L. $(LIBOCTINTERP) \
   -L../liboctave $(LIBOCTAVE) \


The rest builds & links fine.

benjamin






# HG changeset patch
# User Benjamin Lindner <address@hidden>
# Date 1250669384 -7200
# Node ID 87d36823eb0dcc7190be684d0b46851d1dcc2caa
# Parent  d3666a31de6495570670e3c10c7d73239088fa26
adapt octave-bug.cc.in and mkoctfile.cc.in to recent configure changes

diff -r d3666a31de64 -r 87d36823eb0d mkoctfile.cc.in
--- a/mkoctfile.cc.in   Wed Aug 19 09:55:43 2009 +0200
+++ b/mkoctfile.cc.in   Wed Aug 19 10:09:44 2009 +0200
@@ -251,7 +251,7 @@
     + " " + vars["SPECIAL_MATH_LIB"] + " " + vars["LIBCRUFT"];
 
   vars["FFTW_LIBS"] = vars["FFTW3_LDFLAGS"] + " " + vars["FFTW3_LIBS"]
-    + " " | vars["FFTW3F_LDFLAGS"] + " " + vars["FFTW3F_LIBS"];
+    + " " + vars["FFTW3F_LDFLAGS"] + " " + vars["FFTW3F_LIBS"];
 }
 
 static string usage_msg = "usage: mkoctfile [options] file ...";
diff -r d3666a31de64 -r 87d36823eb0d octave-bug.cc.in
--- a/octave-bug.cc.in  Wed Aug 19 09:55:43 2009 +0200
+++ b/octave-bug.cc.in  Wed Aug 19 10:09:44 2009 +0200
@@ -101,60 +101,60 @@
   vars["LEXLIB"] = %OCTAVE_CONF_LEXLIB%;
   vars["LIBGLOB"] = %OCTAVE_CONF_LIBGLOB%;
 
-  vars["AMD_CPPFLAGS"] = %AMD_CPPFLAGS%;
-  vars["AMD_LDFLAGS"] = %AMD_LDFLAGS%;
-  vars["AMD_LIBS"] = %AMD_LIBS%;
-  vars["ARPACK_LIBS"] = %ARPACK_LIBS%;
-  vars["BLAS_LIBS"] = %BLAS_LIBS%;
-  vars["CAMD_CPPFLAGS"] = %CAMD_CPPFLAGS%;
-  vars["CAMD_LDFLAGS"] = %CAMD_LDFLAGS%;
-  vars["CAMD_LIBS"] = %CAMD_LIBS%;
-  vars["CARBON_LIBS"] = %CARBON_LIBS%;
-  vars["CCOLAMD_CPPFLAGS"] = %CCOLAMD_CPPFLAGS%;
-  vars["CCOLAMD_LDFLAGS"] = %CCOLAMD_LDFLAGS%;
-  vars["CCOLAMD_LIBS"] = %CCOLAMD_LIBS%;
-  vars["CHOLMOD_CPPFLAGS"] = %CHOLMOD_CPPFLAGS%;
-  vars["CHOLMOD_LDFLAGS"] = %CHOLMOD_LDFLAGS%;
-  vars["CHOLMOD_LIBS"] = %CHOLMOD_LIBS%;
-  vars["COLAMD_CPPFLAGS"] = %COLAMD_CPPFLAGS%;
-  vars["COLAMD_LDFLAGS"] = %COLAMD_LDFLAGS%;
-  vars["COLAMD_LIBS"] = %COLAMD_LIBS%;
-  vars["CURL_CPPFLAGS"] = %CURL_CPPFLAGS%;
-  vars["CURL_LDFLAGS"] = %CURL_LDFLAGS%;
-  vars["CURL_LIBS"] = %CURL_LIBS%;
-  vars["CXSPARSE_CPPFLAGS"] = %CXSPARSE_CPPFLAGS%;
-  vars["CXSPARSE_LDFLAGS"] = %CXSPARSE_LDFLAGS%;
-  vars["CXSPARSE_LIBS"] = %CXSPARSE_LIBS%;
-  vars["DL_LIBS"] = %DL_LIBS%;
-  vars["FFTW3_CPPFLAGS"] = %FFTW3_CPPFLAGS%;
-  vars["FFTW3_LDFLAGS"] = %FFTW3_LDFLAGS%;
-  vars["FFTW3_LIBS"] = %FFTW3_LIBS%;
-  vars["FFTW3F_CPPFLAGS"] = %FFTW3F_CPPFLAGS%;
-  vars["FFTW3F_LDFLAGS"] = %FFTW3F_LDFLAGS%;
-  vars["FFTW3F_LIBS"] = %FFTW3F_LIBS%;
-  vars["GRAPHICS_LIBS"] = %GRAPHICS_LIBS%;
-  vars["GLPK_CPPFLAGS"] = %GLPK_CPPFLAGS%;
-  vars["GLPK_LDFLAGS"] = %GLPK_LDFLAGS%;
-  vars["GLPK_LIBS"] = %GLPK_LIBS%;
-  vars["HDF5_CPPFLAGS"] = %HDF5_CPPFLAGS%;
-  vars["HDF5_LDFLAGS"] = %HDF5_LDFLAGS%;
-  vars["HDF5_LIBS"] = %HDF5_LIBS%;
-  vars["OPENGL_LIBS"] = %OPENGL_LIBS%;
-  vars["PTHREAD_CFLAGS"] = %PTHREAD_CFLAGS%;
-  vars["PTHREAD_LIBS"] = %PTHREAD_LIBS%;
-  vars["QHULL_CPPFLAGS"] = %QHULL_CPPFLAGS%;
-  vars["QHULL_LDFLAGS"] = %QHULL_LDFLAGS%;
-  vars["QHULL_LIBS"] = %QHULL_LIBS%;
-  vars["QRUPDATE_LIBS"] = %QRUPDATE_LIBS%;
-  vars["READLINE_LIBS"] = %READLINE_LIBS%;
-  vars["REGEX_LIBS"] = %REGEX_LIBS%;
-  vars["TERM_LIBS"] = %TERM_LIBS%;
-  vars["UMFPACK_LIBS"] = %UMFPACK_LIBS%;
-  vars["X11_INCFLAGS"] = %X11_INCFLAGS%;
-  vars["X11_LIBS"] = %X11_LIBS%;
-  vars["Z_CPPFLAGS"] = %Z_CPPFLAGS%;
-  vars["Z_LDFLAGS"] = %Z_LDFLAGS%;
-  vars["Z_LIBS"] = %Z_LIBS%;
+  vars["AMD_CPPFLAGS"] = %OCTAVE_CONF_AMD_CPPFLAGS%;
+  vars["AMD_LDFLAGS"] = %OCTAVE_CONF_AMD_LDFLAGS%;
+  vars["AMD_LIBS"] = %OCTAVE_CONF_AMD_LIBS%;
+  vars["ARPACK_LIBS"] = %OCTAVE_CONF_ARPACK_LIBS%;
+  vars["BLAS_LIBS"] = %OCTAVE_CONF_BLAS_LIBS%;
+  vars["CAMD_CPPFLAGS"] = %OCTAVE_CONF_CAMD_CPPFLAGS%;
+  vars["CAMD_LDFLAGS"] = %OCTAVE_CONF_CAMD_LDFLAGS%;
+  vars["CAMD_LIBS"] = %OCTAVE_CONF_CAMD_LIBS%;
+  vars["CARBON_LIBS"] = %OCTAVE_CONF_CARBON_LIBS%;
+  vars["CCOLAMD_CPPFLAGS"] = %OCTAVE_CONF_CCOLAMD_CPPFLAGS%;
+  vars["CCOLAMD_LDFLAGS"] = %OCTAVE_CONF_CCOLAMD_LDFLAGS%;
+  vars["CCOLAMD_LIBS"] = %OCTAVE_CONF_CCOLAMD_LIBS%;
+  vars["CHOLMOD_CPPFLAGS"] = %OCTAVE_CONF_CHOLMOD_CPPFLAGS%;
+  vars["CHOLMOD_LDFLAGS"] = %OCTAVE_CONF_CHOLMOD_LDFLAGS%;
+  vars["CHOLMOD_LIBS"] = %OCTAVE_CONF_CHOLMOD_LIBS%;
+  vars["COLAMD_CPPFLAGS"] = %OCTAVE_CONF_COLAMD_CPPFLAGS%;
+  vars["COLAMD_LDFLAGS"] = %OCTAVE_CONF_COLAMD_LDFLAGS%;
+  vars["COLAMD_LIBS"] = %OCTAVE_CONF_COLAMD_LIBS%;
+  vars["CURL_CPPFLAGS"] = %OCTAVE_CONF_CURL_CPPFLAGS%;
+  vars["CURL_LDFLAGS"] = %OCTAVE_CONF_CURL_LDFLAGS%;
+  vars["CURL_LIBS"] = %OCTAVE_CONF_CURL_LIBS%;
+  vars["CXSPARSE_CPPFLAGS"] = %OCTAVE_CONF_CXSPARSE_CPPFLAGS%;
+  vars["CXSPARSE_LDFLAGS"] = %OCTAVE_CONF_CXSPARSE_LDFLAGS%;
+  vars["CXSPARSE_LIBS"] = %OCTAVE_CONF_CXSPARSE_LIBS%;
+  vars["DL_LIBS"] = %OCTAVE_CONF_DL_LIBS%;
+  vars["FFTW3_CPPFLAGS"] = %OCTAVE_CONF_FFTW3_CPPFLAGS%;
+  vars["FFTW3_LDFLAGS"] = %OCTAVE_CONF_FFTW3_LDFLAGS%;
+  vars["FFTW3_LIBS"] = %OCTAVE_CONF_FFTW3_LIBS%;
+  vars["FFTW3F_CPPFLAGS"] = %OCTAVE_CONF_FFTW3F_CPPFLAGS%;
+  vars["FFTW3F_LDFLAGS"] = %OCTAVE_CONF_FFTW3F_LDFLAGS%;
+  vars["FFTW3F_LIBS"] = %OCTAVE_CONF_FFTW3F_LIBS%;
+  vars["GRAPHICS_LIBS"] = %OCTAVE_CONF_GRAPHICS_LIBS%;
+  vars["GLPK_CPPFLAGS"] = %OCTAVE_CONF_GLPK_CPPFLAGS%;
+  vars["GLPK_LDFLAGS"] = %OCTAVE_CONF_GLPK_LDFLAGS%;
+  vars["GLPK_LIBS"] = %OCTAVE_CONF_GLPK_LIBS%;
+  vars["HDF5_CPPFLAGS"] = %OCTAVE_CONF_HDF5_CPPFLAGS%;
+  vars["HDF5_LDFLAGS"] = %OCTAVE_CONF_HDF5_LDFLAGS%;
+  vars["HDF5_LIBS"] = %OCTAVE_CONF_HDF5_LIBS%;
+  vars["OPENGL_LIBS"] = %OCTAVE_CONF_OPENGL_LIBS%;
+  vars["PTHREAD_CFLAGS"] = %OCTAVE_CONF_PTHREAD_CFLAGS%;
+  vars["PTHREAD_LIBS"] = %OCTAVE_CONF_PTHREAD_LIBS%;
+  vars["QHULL_CPPFLAGS"] = %OCTAVE_CONF_QHULL_CPPFLAGS%;
+  vars["QHULL_LDFLAGS"] = %OCTAVE_CONF_QHULL_LDFLAGS%;
+  vars["QHULL_LIBS"] = %OCTAVE_CONF_QHULL_LIBS%;
+  vars["QRUPDATE_LIBS"] = %OCTAVE_CONF_QRUPDATE_LIBS%;
+  vars["READLINE_LIBS"] = %OCTAVE_CONF_READLINE_LIBS%;
+  vars["REGEX_LIBS"] = %OCTAVE_CONF_REGEX_LIBS%;
+  vars["TERM_LIBS"] = %OCTAVE_CONF_TERM_LIBS%;
+  vars["UMFPACK_LIBS"] = %OCTAVE_CONF_UMFPACK_LIBS%;
+  vars["X11_INCFLAGS"] = %OCTAVE_CONF_X11_INCFLAGS%;
+  vars["X11_LIBS"] = %OCTAVE_CONF_X11_LIBS%;
+  vars["Z_CPPFLAGS"] = %OCTAVE_CONF_Z_CPPFLAGS%;
+  vars["Z_LDFLAGS"] = %OCTAVE_CONF_Z_LDFLAGS%;
+  vars["Z_LIBS"] = %OCTAVE_CONF_Z_LIBS%;
 
   vars["DEFS"] = %OCTAVE_CONF_DEFS%;
 
octave-bug.cc: In function 'int main(int, char**)':
octave-bug.cc:104: error: expected primary-expression before '%' token
octave-bug.cc:104: error: 'AMD_CPPFLAGS' was not declared in this scope
octave-bug.cc:104: error: expected primary-expression before ';' token
octave-bug.cc:105: error: expected primary-expression before '%' token
octave-bug.cc:105: error: 'AMD_LDFLAGS' was not declared in this scope
octave-bug.cc:105: error: expected primary-expression before ';' token
octave-bug.cc:106: error: expected primary-expression before '%' token
octave-bug.cc:106: error: 'AMD_LIBS' was not declared in this scope
octave-bug.cc:106: error: expected primary-expression before ';' token
octave-bug.cc:107: error: expected primary-expression before '%' token
octave-bug.cc:107: error: 'ARPACK_LIBS' was not declared in this scope
octave-bug.cc:107: error: expected primary-expression before ';' token
octave-bug.cc:108: error: expected primary-expression before '%' token
octave-bug.cc:108: error: 'BLAS_LIBS' was not declared in this scope
octave-bug.cc:108: error: expected primary-expression before ';' token
octave-bug.cc:109: error: expected primary-expression before '%' token
octave-bug.cc:109: error: 'CAMD_CPPFLAGS' was not declared in this scope
octave-bug.cc:109: error: expected primary-expression before ';' token
octave-bug.cc:110: error: expected primary-expression before '%' token
octave-bug.cc:110: error: 'CAMD_LDFLAGS' was not declared in this scope
octave-bug.cc:110: error: expected primary-expression before ';' token
octave-bug.cc:111: error: expected primary-expression before '%' token
octave-bug.cc:111: error: 'CAMD_LIBS' was not declared in this scope
octave-bug.cc:111: error: expected primary-expression before ';' token
octave-bug.cc:112: error: expected primary-expression before '%' token
octave-bug.cc:112: error: 'CARBON_LIBS' was not declared in this scope
octave-bug.cc:112: error: expected primary-expression before ';' token
octave-bug.cc:113: error: expected primary-expression before '%' token
octave-bug.cc:113: error: 'CCOLAMD_CPPFLAGS' was not declared in this scope
octave-bug.cc:113: error: expected primary-expression before ';' token
octave-bug.cc:114: error: expected primary-expression before '%' token
octave-bug.cc:114: error: 'CCOLAMD_LDFLAGS' was not declared in this scope
octave-bug.cc:114: error: expected primary-expression before ';' token
octave-bug.cc:115: error: expected primary-expression before '%' token
octave-bug.cc:115: error: 'CCOLAMD_LIBS' was not declared in this scope
octave-bug.cc:115: error: expected primary-expression before ';' token
octave-bug.cc:116: error: expected primary-expression before '%' token
octave-bug.cc:116: error: 'CHOLMOD_CPPFLAGS' was not declared in this scope
octave-bug.cc:116: error: expected primary-expression before ';' token
octave-bug.cc:117: error: expected primary-expression before '%' token
octave-bug.cc:117: error: 'CHOLMOD_LDFLAGS' was not declared in this scope
octave-bug.cc:117: error: expected primary-expression before ';' token
octave-bug.cc:118: error: expected primary-expression before '%' token
octave-bug.cc:118: error: 'CHOLMOD_LIBS' was not declared in this scope
octave-bug.cc:118: error: expected primary-expression before ';' token
octave-bug.cc:119: error: expected primary-expression before '%' token
octave-bug.cc:119: error: 'COLAMD_CPPFLAGS' was not declared in this scope
octave-bug.cc:119: error: expected primary-expression before ';' token
octave-bug.cc:120: error: expected primary-expression before '%' token
octave-bug.cc:120: error: 'COLAMD_LDFLAGS' was not declared in this scope
octave-bug.cc:120: error: expected primary-expression before ';' token
octave-bug.cc:121: error: expected primary-expression before '%' token
octave-bug.cc:121: error: 'COLAMD_LIBS' was not declared in this scope
octave-bug.cc:121: error: expected primary-expression before ';' token
octave-bug.cc:122: error: expected primary-expression before '%' token
octave-bug.cc:122: error: 'CURL_CPPFLAGS' was not declared in this scope
octave-bug.cc:122: error: expected primary-expression before ';' token
octave-bug.cc:123: error: expected primary-expression before '%' token
octave-bug.cc:123: error: 'CURL_LDFLAGS' was not declared in this scope
octave-bug.cc:123: error: expected primary-expression before ';' token
octave-bug.cc:124: error: expected primary-expression before '%' token
octave-bug.cc:124: error: 'CURL_LIBS' was not declared in this scope
octave-bug.cc:124: error: expected primary-expression before ';' token
octave-bug.cc:125: error: expected primary-expression before '%' token
octave-bug.cc:125: error: 'CXSPARSE_CPPFLAGS' was not declared in this scope
octave-bug.cc:125: error: expected primary-expression before ';' token
octave-bug.cc:126: error: expected primary-expression before '%' token
octave-bug.cc:126: error: 'CXSPARSE_LDFLAGS' was not declared in this scope
octave-bug.cc:126: error: expected primary-expression before ';' token
octave-bug.cc:127: error: expected primary-expression before '%' token
octave-bug.cc:127: error: 'CXSPARSE_LIBS' was not declared in this scope
octave-bug.cc:127: error: expected primary-expression before ';' token
octave-bug.cc:128: error: expected primary-expression before '%' token
octave-bug.cc:128: error: 'DL_LIBS' was not declared in this scope
octave-bug.cc:128: error: expected primary-expression before ';' token
octave-bug.cc:129: error: expected primary-expression before '%' token
octave-bug.cc:129: error: 'FFTW3_CPPFLAGS' was not declared in this scope
octave-bug.cc:129: error: expected primary-expression before ';' token
octave-bug.cc:130: error: expected primary-expression before '%' token
octave-bug.cc:130: error: 'FFTW3_LDFLAGS' was not declared in this scope
octave-bug.cc:130: error: expected primary-expression before ';' token
octave-bug.cc:131: error: expected primary-expression before '%' token
octave-bug.cc:131: error: 'FFTW3_LIBS' was not declared in this scope
octave-bug.cc:131: error: expected primary-expression before ';' token
octave-bug.cc:132: error: expected primary-expression before '%' token
octave-bug.cc:132: error: 'FFTW3F_CPPFLAGS' was not declared in this scope
octave-bug.cc:132: error: expected primary-expression before ';' token
octave-bug.cc:133: error: expected primary-expression before '%' token
octave-bug.cc:133: error: 'FFTW3F_LDFLAGS' was not declared in this scope
octave-bug.cc:133: error: expected primary-expression before ';' token
octave-bug.cc:134: error: expected primary-expression before '%' token
octave-bug.cc:134: error: 'FFTW3F_LIBS' was not declared in this scope
octave-bug.cc:134: error: expected primary-expression before ';' token
octave-bug.cc:135: error: expected primary-expression before '%' token
octave-bug.cc:135: error: 'GRAPHICS_LIBS' was not declared in this scope
octave-bug.cc:135: error: expected primary-expression before ';' token
octave-bug.cc:136: error: expected primary-expression before '%' token
octave-bug.cc:136: error: 'GLPK_CPPFLAGS' was not declared in this scope
octave-bug.cc:136: error: expected primary-expression before ';' token
octave-bug.cc:137: error: expected primary-expression before '%' token
octave-bug.cc:137: error: 'GLPK_LDFLAGS' was not declared in this scope
octave-bug.cc:137: error: expected primary-expression before ';' token
octave-bug.cc:138: error: expected primary-expression before '%' token
octave-bug.cc:138: error: 'GLPK_LIBS' was not declared in this scope
octave-bug.cc:138: error: expected primary-expression before ';' token
octave-bug.cc:139: error: expected primary-expression before '%' token
octave-bug.cc:139: error: 'HDF5_CPPFLAGS' was not declared in this scope
octave-bug.cc:139: error: expected primary-expression before ';' token
octave-bug.cc:140: error: expected primary-expression before '%' token
octave-bug.cc:140: error: 'HDF5_LDFLAGS' was not declared in this scope
octave-bug.cc:140: error: expected primary-expression before ';' token
octave-bug.cc:141: error: expected primary-expression before '%' token
octave-bug.cc:141: error: 'HDF5_LIBS' was not declared in this scope
octave-bug.cc:141: error: expected primary-expression before ';' token
octave-bug.cc:142: error: expected primary-expression before '%' token
octave-bug.cc:142: error: 'OPENGL_LIBS' was not declared in this scope
octave-bug.cc:142: error: expected primary-expression before ';' token
octave-bug.cc:143: error: expected primary-expression before '%' token
octave-bug.cc:143: error: 'PTHREAD_CFLAGS' was not declared in this scope
octave-bug.cc:143: error: expected primary-expression before ';' token
octave-bug.cc:144: error: expected primary-expression before '%' token
octave-bug.cc:144: error: 'PTHREAD_LIBS' was not declared in this scope
octave-bug.cc:144: error: expected primary-expression before ';' token
octave-bug.cc:145: error: expected primary-expression before '%' token
octave-bug.cc:145: error: 'QHULL_CPPFLAGS' was not declared in this scope
octave-bug.cc:145: error: expected primary-expression before ';' token
octave-bug.cc:146: error: expected primary-expression before '%' token
octave-bug.cc:146: error: 'QHULL_LDFLAGS' was not declared in this scope
octave-bug.cc:146: error: expected primary-expression before ';' token
octave-bug.cc:147: error: expected primary-expression before '%' token
octave-bug.cc:147: error: 'QHULL_LIBS' was not declared in this scope
octave-bug.cc:147: error: expected primary-expression before ';' token
octave-bug.cc:148: error: expected primary-expression before '%' token
octave-bug.cc:148: error: 'QRUPDATE_LIBS' was not declared in this scope
octave-bug.cc:148: error: expected primary-expression before ';' token
octave-bug.cc:149: error: expected primary-expression before '%' token
octave-bug.cc:149: error: 'READLINE_LIBS' was not declared in this scope
octave-bug.cc:149: error: expected primary-expression before ';' token
octave-bug.cc:150: error: expected primary-expression before '%' token
octave-bug.cc:150: error: 'REGEX_LIBS' was not declared in this scope
octave-bug.cc:150: error: expected primary-expression before ';' token
octave-bug.cc:151: error: expected primary-expression before '%' token
octave-bug.cc:151: error: 'TERM_LIBS' was not declared in this scope
octave-bug.cc:151: error: expected primary-expression before ';' token
octave-bug.cc:152: error: expected primary-expression before '%' token
octave-bug.cc:152: error: 'UMFPACK_LIBS' was not declared in this scope
octave-bug.cc:152: error: expected primary-expression before ';' token
octave-bug.cc:153: error: expected primary-expression before '%' token
octave-bug.cc:153: error: 'X11_INCFLAGS' was not declared in this scope
octave-bug.cc:153: error: expected primary-expression before ';' token
octave-bug.cc:154: error: expected primary-expression before '%' token
octave-bug.cc:154: error: 'X11_LIBS' was not declared in this scope
octave-bug.cc:154: error: expected primary-expression before ';' token
octave-bug.cc:155: error: expected primary-expression before '%' token
octave-bug.cc:155: error: 'Z_CPPFLAGS' was not declared in this scope
octave-bug.cc:155: error: expected primary-expression before ';' token
octave-bug.cc:156: error: expected primary-expression before '%' token
octave-bug.cc:156: error: 'Z_LDFLAGS' was not declared in this scope
octave-bug.cc:156: error: expected primary-expression before ';' token
octave-bug.cc:157: error: expected primary-expression before '%' token
octave-bug.cc:157: error: 'Z_LIBS' was not declared in this scope
octave-bug.cc:157: error: expected primary-expression before ';' token
octave-bug.cc:339: warning: use of old-style cast
octave-bug.cc:340: warning: use of old-style cast
octave-bug.cc:341: warning: use of old-style cast
octave-bug.cc:348: warning: deprecated conversion from string constant to 
'CHAR*'
octave-bug.cc:348: warning: deprecated conversion from string constant to 
'CHAR*'
octave-bug.cc:362: warning: deprecated conversion from string constant to 
'CHAR*'
make[1]: *** [octave-bug.o] Error 1

reply via email to

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