Displaying 6 results from an estimated 6 matches for "extra_compile_arg".
Did you mean:
extra_compile_args
2005 Oct 21
1
Re: [Xen-changelog] Tweak to pygrub build config detection.
On Fri, 2005-10-21 at 18:54 +0000, Xen patchbot -unstable wrote:
> # HG changeset patch
> # User kaf24@firebug.cl.cam.ac.uk
> # Node ID 8eaaa622db81393ef0eae497090c34c04adf4212
> # Parent 3eee5653f08b01a310e0a9172a6c0149f16217df
> Tweak to pygrub build config detection.
> Signed-off-by: Jeremy Katz <katzj@redhat.com>
Applying both patches for this is overkill.... ;)
2012 Feb 08
0
[PATCH] remove references to removed libflask from setup.py
...python] Error 2
Signed-off-by: Olaf Hering <olaf@aepfle.de>
diff -r 3574f4d67843 -r b730f1f980bd tools/python/setup.py
--- a/tools/python/setup.py
+++ b/tools/python/setup.py
@@ -45,12 +45,10 @@ process = Extension("process",
flask = Extension("flask",
extra_compile_args = extra_compile_args,
- include_dirs = [ PATH_XEN, PATH_LIBXC, "xen/lowlevel/flask",
- "../flask/libflask/include" ],
- library_dirs = [ PATH_LIBXC, "../flask/libflask" ],
+ inc...
2006 Oct 17
4
[PATCH] Fix tools build on Solaris
...CC)" CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)" --force
endif
.PHONY: test
diff --git a/tools/python/setup.py b/tools/python/setup.py
--- a/tools/python/setup.py
+++ b/tools/python/setup.py
@@ -4,7 +4,7 @@ import os
XEN_ROOT = "../.."
-extra_compile_args = [ "-fno-strict-aliasing", "-Wall", "-Werror" ]
+extra_compile_args = [ "-static-libgcc", "-fno-strict-aliasing", "-Wall", "-Werror" ]
include_dirs = [ XEN_ROOT + "/tools/libxc",
diff --git a/tools/xenmon/Makef...
2010 Sep 09
2
[PATCH]: add libxl python binding
...f.write(py_attrib_set(ty,a))
+ f.write(py_object_def(ty))
+ f.write(py_initfuncs(types))
+ f.close()
diff -r b19856f6dd76 tools/python/setup.py
--- a/tools/python/setup.py Thu Sep 09 09:24:24 2010 +0100
+++ b/tools/python/setup.py Thu Sep 09 12:06:50 2010 +0100
@@ -9,14 +9,23 @@ extra_compile_args = [ "-fno-strict-ali
include_dirs = [ XEN_ROOT + "/tools/libxc",
XEN_ROOT + "/tools/xenstore",
XEN_ROOT + "/tools/include",
+ XEN_ROOT + "/tools/libxl",
]
library_dirs = [ XEN_RO...
2005 Mar 28
4
Problem with bindings and MinGW
...author_email="xapian@users.sourceforge.net",
url="http://xapian.org/",
py_modules=["xapian"],
data_files=DATA_FILES,
ext_modules=[
Extension("_xapian",
["xapian_wrap.cc"],
extra_compile_args=EXTRA_CFLAGS,
extra_link_args=EXTRA_LDFLAGS,
)]
)
# end.
...if a user wants to build it using the standard Python build
system, he just has to patch the .cc file, copy this script in
the python/modern directory, set the XAPIAN_BASE
directory to wh...
2005 Mar 28
4
Problem with bindings and MinGW
...author_email="xapian@users.sourceforge.net",
url="http://xapian.org/",
py_modules=["xapian"],
data_files=DATA_FILES,
ext_modules=[
Extension("_xapian",
["xapian_wrap.cc"],
extra_compile_args=EXTRA_CFLAGS,
extra_link_args=EXTRA_LDFLAGS,
)]
)
# end.
...if a user wants to build it using the standard Python build
system, he just has to patch the .cc file, copy this script in
the python/modern directory, set the XAPIAN_BASE
directory to wh...