Skip to content

Commit

Permalink
remove -nobuilder option
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Marchetto committed Jan 26, 2015
1 parent 4c66489 commit 0544765
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
5 changes: 0 additions & 5 deletions Doc/Manual/Scilab.html
Expand Up @@ -274,11 +274,6 @@ <H3><a name="Scilab_running_swig_options"></a>37.2.5 Scilab command line options
<td>Use the Scilab script &lt;file&gt; to configure the compiler and linker flags</td>
</tr>

<tr>
<td><tt>-nobuilder</tt></td>
<td>Do not generate the Scilab builder script (default)</td>
</tr>

<tr>
<td><tt>-gatewayxml &lt;gateway_id&gt;</tt></td>
<td>Generate the gateway XML with the given &lt;gateway_id&gt;</td>
Expand Down
4 changes: 2 additions & 2 deletions Examples/Makefile.in
Expand Up @@ -1710,7 +1710,7 @@ SCILAB_LIBPREFIX = lib
# ----------------------------------------------------------------

scilab:
$(SWIG) -scilab -nobuilder $(SWIGOPT) -o $(ISRCS) $(INTERFACEPATH)
$(SWIG) -scilab $(SWIGOPT) -o $(ISRCS) $(INTERFACEPATH)
$(CC) -c $(CCSHARED) $(CPPFLAGS) $(CFLAGS) $(SCILAB_INC) $(INCLUDES) $(ISRCS) $(SRCDIR_SRCS) $(SRCDIR_CSRCS)
$(LDSHARED) $(CFLAGS) $(LDFLAGS) $(IOBJS) $(OBJS) $(LIBS) -o $(SCILAB_LIBPREFIX)$(TARGET)$(SO)

Expand All @@ -1719,7 +1719,7 @@ scilab:
# ----------------------------------------------------------------

scilab_cpp:
$(SWIG) -c++ -scilab -nobuilder $(SWIGOPT) -o $(ICXXSRCS) $(INTERFACEPATH)
$(SWIG) -c++ -scilab $(SWIGOPT) -o $(ICXXSRCS) $(INTERFACEPATH)
$(CXX) -c $(CCSHARED) $(CPPFLAGS) $(CXXFLAGS) $(SCILAB_INC) $(INCLUDES) $(ICXXSRCS) $(SRCDIR_SRCS) $(SRCDIR_CXXSRCS)
$(CXXSHARED) $(CXXFLAGS) $(LDFLAGS) $(IOBJS) $(OBJS) $(LIBS) $(CPP_DLLIBS) -o $(SCILAB_LIBPREFIX)$(TARGET)$(SO)

Expand Down
5 changes: 0 additions & 5 deletions Source/Modules/scilab.cxx
Expand Up @@ -25,7 +25,6 @@ Scilab options (available with -scilab)\n \
-buildersources <files> - Add the (comma separated) files <files> to the builder sources\n \
-builderverbositylevel <level> - Set the builder verbosity level to <level> (default 0: off, 2: high)\n \
-gatewayxml <gateway_id> - Generate gateway xml with the given <gateway_id>\n \
-nobuilder - Do not generate the Scilab builder script (default)\n \
\n";


Expand Down Expand Up @@ -132,10 +131,6 @@ class SCILAB:public Language {
Swig_mark_arg(argIndex);
buildFlagsScript = NewString(argv[argIndex + 1]);
Swig_mark_arg(argIndex + 1);
} else if (strcmp(argv[argIndex], "-nobuilder") == 0) {
Swig_mark_arg(argIndex);
generateBuilder = false;
createLoader = true;
} else if (strcmp(argv[argIndex], "-gatewayxml") == 0) {
Swig_mark_arg(argIndex);
createGatewayXML = true;
Expand Down

0 comments on commit 0544765

Please sign in to comment.