octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #54235] problems building Octave on Solaris


From: Rik
Subject: [Octave-bug-tracker] [bug #54235] problems building Octave on Solaris
Date: Fri, 6 Jul 2018 14:56:17 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:55.0) Gecko/20100101 Firefox/55.0

Follow-up Comment #27, bug #54235 (project octave):

@Michele: Thanks for trying all these test cases.  Could you run the minimal
configure again in this fashion


./configure --without-opengl --disable-qt --without-fltk --disable-java | tee
config.summary


This will capture just what is printed to screen which is only a few pages
worth of material to review.  The config.log produced by configure is 5.1MB
and includes every single test run, the results, etc., and is too difficult
too parse.

Second, can you try compiling this simple program with g++?


#include <iostream>     // std::cout
#include <complex>      // std::complex

int main ()
{
  std::complex<double> first (2.0,2.0);
  std::complex<float>  second (first);

  std::cout << second << '\n';

  return 0;
}


I can compile and run this with


g++ complex.cc
./a.out 
(2,2)





    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?54235>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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