changeset 33386:625f40a7dca9 bytecode-interpreter

maint: Merge default to bytecode-interpreter
author Arun Giridhar <arungiridhar@gmail.com>
date Fri, 12 Apr 2024 16:24:25 -0400
parents e6806f30226a (current diff) e28b0e670d18 (diff)
children 40ce340349e0
files configure.ac
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Fri Apr 12 12:07:28 2024 -0400
+++ b/configure.ac	Fri Apr 12 16:24:25 2024 -0400
@@ -1011,8 +1011,8 @@
 if test "$cross_compiling" = yes; then
   BUILD_CC="gcc"
   BUILD_CFLAGS="-O2 -g"
-  BUILD_CXX="g++"
-  BUILD_CXXFLAGS="-O2 -g -std=c++11"
+  BUILD_CXX="g++ -std=gnu++17"
+  BUILD_CXXFLAGS="-O2 -g"
   BUILD_LDFLAGS=""
   BUILD_EXEEXT=""
 else
--- a/libinterp/corefcn/__eigs__.cc	Fri Apr 12 12:07:28 2024 -0400
+++ b/libinterp/corefcn/__eigs__.cc	Fri Apr 12 16:24:25 2024 -0400
@@ -393,7 +393,7 @@
           if (tmp.numel () != 1)
             error ("eigs: OPTS.cholB must be a scalar value");
 
-          cholB = tmp.xbool_value ("eigs: OPTS.cholB must be a logical value");
+          cholB = tmp.ybool_value ("eigs: OPTS.cholB must be a logical value");
         }
 
       tmp = map.getfield ("permB");