Displaying 6 results from an estimated 6 matches for "swig_opt".
2006 Apr 25
1
Re: -fvirtual and compactdefaultargs (was StaticBoxSizer bug?)
...ittle-used Patch
> category in the issue tracker.
>
We''ve been using the mailing list. We were working on getting a darcs
repository going but I really don''t recall now whether that''s up and
running (anyone?).
> How do people feel about adding -fvirtual to swig_options in
> rake/rakewx.rb to eliminate redundant wrapper generation? I
> raise this question because prior to declaring RecalcSize() in the
> wxStaticBoxSizer.h, the wrapper generated for it in StaticBoxSizer.cpp
> was a redundant version of what was generated for BoxSizer. Also, how
&g...
2007 May 21
0
[1021] trunk/wxruby2/rake/rakewx.rb: Memory mgmt: don''t run fixdeleting anymore
...1020)
+++ trunk/wxruby2/rake/rakewx.rb        2007-05-21 18:35:15 UTC (rev 1021)
</span><span class="lines">@@ -247,7 +247,6 @@
</span><span class="cx"> do_swig(swig_file, cpp_file, $swig_options)
</span><span class="cx"> post_process(cpp_file, "fixplatform.rb")
</span><span class="cx"> post_process(cpp_file, "fixmodule.rb")
</span><del>-      &...
2006 Oct 13
2
rakewx
With the recent check-in I accidentally committed my change to rakewx to
remove the -fvirtual swig option. -fvirtual is incompatible with SWIG
1.3.30. It''s not necessary (as I recall) for 1.3.29 but only reduces
the size of the wrapper code slightly. If anyone feels strongly about
this I can make it conditional on the SWIG version but simply removing
it seems the safest and
2007 Jul 21
0
[1127] trunk/wxruby2: Move shared C++ GC functions into separate file included into wx.i
...h_dir = File.join($optional_dir, ''include'')
</span><span class="cx">
</span><del>-$swig_cmd = "swig"
</del><ins>+$swig_cmd = ENV[''SWIGCMD''] || "swig"
</ins><span class="cx"> $swig_options = ''''
</span><span class="cx"> $swig_minimum_version = ''1.3.29''
</span><span class="cx">
</span><span class="lines">@@ -224,8 +224,7 @@
</span><span class="cx"> def create...
2004 Sep 18
4
wxruby-swig problem: MDIChildFrame::Maximize
I just grabbed the latest wxruby-swig from cvs and tried to compile it
(without enabling the SWIG step) on my gentoo Linux box. I get:
g++ -c -I/usr/lib/wx/include/gtk2-2.4 -DGTK_NO_CHECK_CASTS -D__WXGTK__
-D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -O2 -march=athlon-xp -fPIC -I
/usr/lib/ruby/gems/1.8/gems/rake-0.4.8/bin -I
/usr/lib/ruby/gems/1.8/gems/rake-0.4.8/lib -I
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...ase_name)
- swig_file = special_swig_file(base_name)
- events_src = File.join %w|swig classes include events.rb|
- fixevents = File.join($swig_dir, "fixevents.rb")
-
-
- file( cpp_file => [ swig_file, events_src, fixevents ] ) do | t |
- do_swig(swig_file, cpp_file, $swig_options)
- post_process(cpp_file, "fixmodule.rb")
- post_process(cpp_file, "fixevents.rb")
- end
- return cpp_file
-end
-
</del><span class="cx"> def create_swig_main_task(base_name)
</span><span class="cx"> cpp_fil...