scilab: remove debug stuff
This commit is contained in:
parent
090a2e0371
commit
386d9f2a54
2 changed files with 4 additions and 6 deletions
|
|
@ -1740,7 +1740,7 @@ scilab: $(SRCDIR_SRCS)
|
|||
fi \
|
||||
fi \
|
||||
fi
|
||||
env LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH MAKEFLAGS="-j1" $(RUNTOOL) $(SCILAB) $(SCILAB_OPT) -e "ierr = exec('builder.sce', 'errcatch', 3); if ierr <> 0 then disp(lasterror()); end; exit(ierr);"; \
|
||||
env LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH MAKEFLAGS="-j1" $(RUNTOOL) $(SCILAB) $(SCILAB_OPT) -e "ierr = exec('builder.sce', 'errcatch', -1); if ierr <> 0 then disp(lasterror()); end; exit(ierr);"; \
|
||||
test "x$(SRCS)" = "x$(SRCDIR_SRCS)" || rm $(SRCS)
|
||||
|
||||
# ----------------------------------------------------------------
|
||||
|
|
@ -1778,7 +1778,7 @@ scilab_cpp: $(SRCDIR_SRCS)
|
|||
fi \
|
||||
fi \
|
||||
fi
|
||||
env LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH MAKEFLAGS="-j1" $(RUNTOOL) $(SCILAB) $(SCILAB_OPT) -e "ierr = exec('builder.sce', 'errcatch', 3); if ierr <> 0 then disp(lasterror()); end; exit(ierr);"; \
|
||||
env LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH MAKEFLAGS="-j1" $(RUNTOOL) $(SCILAB) $(SCILAB_OPT) -e "ierr = exec('builder.sce', 'errcatch', -1); if ierr <> 0 then disp(lasterror()); end; exit(ierr);"; \
|
||||
test "x$(SRCS)" = "x$(SRCDIR_SRCS)" || rm $(SRCS)
|
||||
|
||||
# -----------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -774,8 +774,7 @@ public:
|
|||
void startBuilderCode(String *outputFilename) {
|
||||
builderFunctionCount = 0;
|
||||
builderCode = NewString("");
|
||||
//Printf(builderCode, "mode(-1);\n");
|
||||
Printf(builderCode, "mode(3);\n");
|
||||
Printf(builderCode, "mode(-1);\n");
|
||||
Printf(builderCode, "lines(0);\n"); /* Useful for automatic tests */
|
||||
|
||||
// Scilab needs to be in the build directory
|
||||
|
|
@ -783,8 +782,7 @@ public:
|
|||
Printf(builderCode, "builddir = get_absolute_file_path('builder.sce');\n");
|
||||
Printf(builderCode, "cd(builddir);\n");
|
||||
|
||||
//Printf(builderCode, "ilib_verbose(%s);\n", verboseBuildLevel);
|
||||
Printf(builderCode, "ilib_verbose(2);\n", verboseBuildLevel);
|
||||
Printf(builderCode, "ilib_verbose(%s);\n", verboseBuildLevel);
|
||||
|
||||
Printf(builderCode, "lib_name = \"%s\";\n", libraryName);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue