summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fun.cpp2
-rw-r--r--src/fun.obin4447864 -> 4565488 bytes
-rwxr-xr-xsrc/libfun.sobin2829760 -> 2855912 bytes
-rw-r--r--src/make.sh12
-rwxr-xr-xsrc/testfunbin41456 -> 40960 bytes
5 files changed, 13 insertions, 1 deletions
diff --git a/src/fun.cpp b/src/fun.cpp
index 7e30688..4eeb24c 100644
--- a/src/fun.cpp
+++ b/src/fun.cpp
@@ -183,7 +183,7 @@ extern "C"
}
catch (const octave::execution_exception&)
{
- std::cerr << "error encountered in Octave evaluator!" << std::endl;
+ //std::cerr << "error encountered in Octave evaluator!" << std::endl;
return 1;
}
return 0;
diff --git a/src/fun.o b/src/fun.o
index a7d57d3..03270cf 100644
--- a/src/fun.o
+++ b/src/fun.o
Binary files differ
diff --git a/src/libfun.so b/src/libfun.so
index 777cb3f..6c97c22 100755
--- a/src/libfun.so
+++ b/src/libfun.so
Binary files differ
diff --git a/src/make.sh b/src/make.sh
new file mode 100644
index 0000000..096275d
--- /dev/null
+++ b/src/make.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+# build and test the fun library using the makefile at /src
+make clean
+make
+make install
+./testfun
+# test.sce runs in cli mode, no gui prompts allowed while using builder.sce
+# removed the tbx_builder_gateway(toolbox_dir) and tbx_build_localization(toolbox_dir) funciton calls from buider.sce
+
+cd ..
+sed -i '37d' ./builder.sce
+sed -i '40,41d' ./builder.sce
diff --git a/src/testfun b/src/testfun
index 5e607f7..500b639 100755
--- a/src/testfun
+++ b/src/testfun
Binary files differ