search for: extra_ldflags

Displaying 20 results from an estimated 23 matches for "extra_ldflags".

2005 Mar 28
4
Problem with bindings and MinGW
...for xapian import os, sys from distutils.core import setup, Extension XAPIAN_BASE = "" try: XAPIAN_BASE = os.environ['XAPIAN_BASE'] except KeyError: print "warning: XAPIAN_BASE not set, use xapian-config to determine it" # please do not change the lines below EXTRA_LDFLAGS = ( "-v -Wl,--enable-runtime-pseudo-reloc " "-L%(xapianbase)s/lib -lstdc++ " "-lxapianqueryparser -lxapian " % {'xapianbase': XAPIAN_BASE}).split() EXTRA_CFLAGS = ( "-I%(xapianbase)s/include " % {'xapianbase': XAPIAN_BA...
2005 Mar 28
4
Problem with bindings and MinGW
...for xapian import os, sys from distutils.core import setup, Extension XAPIAN_BASE = "" try: XAPIAN_BASE = os.environ['XAPIAN_BASE'] except KeyError: print "warning: XAPIAN_BASE not set, use xapian-config to determine it" # please do not change the lines below EXTRA_LDFLAGS = ( "-v -Wl,--enable-runtime-pseudo-reloc " "-L%(xapianbase)s/lib -lstdc++ " "-lxapianqueryparser -lxapian " % {'xapianbase': XAPIAN_BASE}).split() EXTRA_CFLAGS = ( "-I%(xapianbase)s/include " % {'xapianbase': XAPIAN_BA...
2007 Nov 01
6
Universal Binary on OS X
...PPC build machine is getting a little old I thought I would try making a universal version of the Mac OS X gem. After a little investigation it turned out to be surprisingly easy to do, just pass --enable-universal_binary when building wxWidgets and add -arch ppc -arch i386 to $extra_cppflags and $extra_ldflags in rakemacosx.rb. Now the problem, the resulting GEM is 9.6MB. How does everyone feel about downloading a file that size and not using half of what is inclosed in it? I had a feeling that people would not like that big of a build so I built a gem task that uses lipo and generates a i386 and ppc GE...
2007 Mar 17
0
[885] branches/wxruby2/wxwidgets_282/rake/rakemacosx.rb: Compile flag fixes for OS X/Wx 2.8
...</del><ins>+$wx_libs << '' -framework Foundation -framework Appkit'' </ins><span class="cx"> </span><span class="cx"> $extra_cppflags = ''-x objective-c++'' </span><span class="cx"> $extra_ldflags = "-dynamic -bundle -flat_namespace -undefined suppress" </span></span></pre> </div> </div> </body> </html>
2006 Nov 01
0
[719] trunk/wxruby2: Hide unsupported PrinterDC class on GTK (Alex Fenton)
...kelinux.rb&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp2006-11-01 01:37:15 UTC (rev 719) </span><span class="lines">@@ -13,6 +13,8 @@ </span><span class="cx"> # create a .so binary </span><span class="cx"> $extra_ldflags = ''-shared'' </span><span class="cx"> </span><ins>+# This class is not available on WXGTK +$excluded_classes << ''PrinterDC'' </ins><span class="cx"> </span><span class="cx"> # Thi...
2007 Mar 17
0
[884] branches/wxruby2/wxwidgets_282/rake/rakemswin.rb: Compile flag fixes for Windows/Wx 2.8 (Artur Kuptel)
...><span class="cx"> $ruby_cppflags.gsub!(/-O[A-Za-z0-9-]*/, "/Od") </span><del>- $ruby_cppflags += " -D_DEBUG -D__WXDEBUG__ -DWXDEBUG=1 " </del><ins>+ $ruby_cppflags += " -Zi -D_DEBUG -D__WXDEBUG__ -DWXDEBUG=1 " + $extra_ldflags += "/DEBUG" </ins><span class="cx"> else </span><span class="cx"> $ruby_cppflags += " -DNDEBUG " </span><span class="cx"> end </span></span></pre> </div> </div> </body> &lt...
2013 Apr 24
12
[PATCH 00/12] Various patches for fixing separated builds.
This just fixes 'make'. 'make check' is still broken. Further patches for that to follow tomorrow. Rich.
2007 Dec 31
4
1.1b13 build in FreeBSD fails using 'make'; 'gmake' apparently required
hi, i'm doing a 1st build of dovecot in a freebsd 62R jail. following instructions at http://wiki.dovecot.org/CompilingSource ./configure make sudo make install after an OK 'configure', @ 'make', i get make make all-recursive Making all in src Making all in lib make: don't know how to make unicodemap.c. Stop *** Error code 1 Stop in
2007 Feb 09
20
Hello Everyone
I have a bit of a problem with installation. I installed wxX11 in my linux box. I compiled the demos and all the demos, save dbbrowse, work. I think I have a functional wx. Now I''m trying to install wxRuby from source, since I have a 64 bit machine. I only have permission to my home directory so my installation is : /usr/people/stevenq/Applications/wxX11/
2007 Jul 23
0
[1142] trunk/wxruby2/README: Updated README with latest version info and Kevin credit
...editing a platform-dependent rakefile, you might </span><span class="cx"> merely need to set one or more of the following variables: </span><ins>+ </ins><span class="cx"> $extra_cppflags </span><span class="cx"> $extra_ldflags </span><span class="cx"> $extra_objs </span><span class="cx"> $extra_libs </span><span class="cx"> </span><span class="cx"> </span><ins>+CREDITS + +Kevin Smith set up the wxruby2 project us...
2004 Apr 29
10
wxruby-swig 0.0.12 is up
This one includes the latest App.cpp which includes the Mac fix from Nick. I thought it was in 0.0.11, but it wasn''t. It also adds support for "stock objects", like colours, pens, and fonts. This turned out to be quite challenging, but I''m happy with the solution. It only took a few days :-/ Kevin
2013 Jan 30
1
[PATCH] Make internal-only functions and structures private
.... ' -DGUESTFS_PRIVATE=1 @CFLAGS@', ); diff --git a/php/Makefile.am b/php/Makefile.am index 220f13a..a369060 100644 --- a/php/Makefile.am +++ b/php/Makefile.am @@ -43,6 +43,7 @@ all: extension/config.h $(MAKE) -C extension \ EXTRA_INCLUDES="-I$(abs_srcdir)/../src" \ EXTRA_LDFLAGS="-L$(abs_srcdir)/../src/.libs -lguestfs" \ + EXTRA_CFLAGS="-DGUESTFS_PRIVATE=1" \ all extension/config.h: extension/config.m4 ../config.status diff --git a/python/Makefile.am b/python/Makefile.am index d03bfcf..209f9ca 100644 --- a/python/Makefile.am +++ b/python/Makefi...
2017 Jan 25
0
[PATCH v2 2/7] lib: Move utilities to new directory common/utils.
...$(top_builddir)/common/utils/libutils.la \ $(PCRE_LIBS) \ $(LIBXML2_LIBS) \ $(GTK_LIBS) \ diff --git a/php/Makefile.am b/php/Makefile.am index 4db7d84..4dda499 100644 --- a/php/Makefile.am +++ b/php/Makefile.am @@ -38,7 +38,7 @@ php_DATA = guestfs_php.ini # and we need to add the library to EXTRA_LDFLAGS. all: check-builddir-equals-srcdir extension/config.h $(MAKE) -C extension \ - EXTRA_INCLUDES="-I$(abs_srcdir)/../src" \ + EXTRA_INCLUDES="-I$(abs_srcdir)/../common/utils -I$(abs_srcdir)/../src" \ EXTRA_LDFLAGS="-L$(abs_srcdir)/../src/.libs -lguestfs" \...
2017 Jun 15
0
[PATCH v6 05/41] utils: Split out cleanups into common/cleanups.
...$(top_builddir)/common/miniexpect/libminiexpect.la \ $(PCRE_LIBS) \ $(LIBXML2_LIBS) \ diff --git a/php/Makefile.am b/php/Makefile.am index a974cdf21..74921d388 100644 --- a/php/Makefile.am +++ b/php/Makefile.am @@ -38,7 +38,7 @@ php_DATA = guestfs_php.ini # and we need to add the library to EXTRA_LDFLAGS. all: check-builddir-equals-srcdir extension/config.h $(MAKE) -C extension \ - EXTRA_INCLUDES="-I$(abs_srcdir)/../common/utils -I$(abs_srcdir)/../lib" \ + EXTRA_INCLUDES="-I$(abs_srcdir)/../common/cleanups -I$(abs_srcdir)/../common/utils -I$(abs_srcdir)/../lib" \ EXTR...
2017 Jan 20
5
[PATCH 0/5] Rename src/ to lib/ and move common code to common/
This patch series moves some files and directories around but is only code motion (or supposed to be). A new directory, common/, is created for all of the common code which is currently shared in random ways between parts of the project. And src/ becomes lib/ (the largest change, but mostly mechanical). In full this series makes the following changes: src/libprotocol -> common/protocol
2017 Jan 25
10
[PATCH v2 0/7] Rename src/ to lib/ and move common code to common/
Previous patch series was posted here: https://www.redhat.com/archives/libguestfs/2017-January/msg00059.html v2 simply extends this patch series to cover the extra directories common/edit, common/progress, common/windows and common/parallel. The only remaining item is to consider whether we should rename mllib to something else, mlcommon was my suggestion. Rich.
2017 Jun 09
12
[PATCH 00/12] Refactor utility functions.
This turned out to be rather more involved than I thought. We have lots of utility functions, spread all over the repository, with not a lot of structure. This moves many of them under common/ and structures them so there are clear dependencies. This doesn't complete the job by any means. Other items I had on my to-do list for this change were: - Split up mllib/common_utils into: -
2017 Jun 12
32
[PATCH v5 00/32] Refactor utilities, implement some APIs in OCaml.
This is a combination of: https://www.redhat.com/archives/libguestfs/2017-June/msg00046.html [PATCH 00/12] Refactor utility functions. plus: https://www.redhat.com/archives/libguestfs/2017-June/msg00023.html [PATCH v3 00/19] Allow APIs to be implemented in OCaml. with the second patches rebased on top of the utility refactoring, and some other adjustments and extensions. This passes
2017 Jul 07
2
[PATCH v2] v2v: docs: VDSM location of virt-v2v log file.
See this bug for background information: https://bugzilla.redhat.com/show_bug.cgi?id=1350465 Thanks: Tomáš Golembiovský --- v2v/virt-v2v.pod | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/v2v/virt-v2v.pod b/v2v/virt-v2v.pod index e68d75cf8..0943bf305 100644 --- a/v2v/virt-v2v.pod +++ b/v2v/virt-v2v.pod @@ -1909,18 +1909,32 @@ that
2017 Jul 07
3
[PATCH] v2v: docs: VDSM location of virt-v2v log file.
See this bug for background information: https://bugzilla.redhat.com/show_bug.cgi?id=1350465 --- v2v/virt-v2v.pod | 39 +++++++++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 12 deletions(-) diff --git a/v2v/virt-v2v.pod b/v2v/virt-v2v.pod index e68d75cf8..93d1a9ecd 100644 --- a/v2v/virt-v2v.pod +++ b/v2v/virt-v2v.pod @@ -1909,18 +1909,33 @@ that guest through the RHV-M UI,