diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/fun.cpp | 2 | ||||
-rw-r--r-- | src/fun.o | bin | 4447864 -> 4565488 bytes | |||
-rwxr-xr-x | src/libfun.so | bin | 2829760 -> 2855912 bytes | |||
-rw-r--r-- | src/make.sh | 12 | ||||
-rwxr-xr-x | src/testfun | bin | 41456 -> 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;
Binary files differdiff --git a/src/libfun.so b/src/libfun.so Binary files differindex 777cb3f..6c97c22 100755 --- a/src/libfun.so +++ b/src/libfun.so 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 Binary files differindex 5e607f7..500b639 100755 --- a/src/testfun +++ b/src/testfun |