Revision: 1436
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1436&view=rev
Author: roman_yakovenko
Date: 2008-10-18 08:52:18 +0000 (Sat, 18 Oct 2008)
Log Message:
-----------
add compiler argument to module builder
Modified Paths:
--------------
pyplusplus_dev/pyplusplus/module_builder/builder.py
Modified: pyplusplus_dev/pyplusplus/module_builder/builder.py
===================================================================
--- pyplusplus_dev/pyplusplus/module_builder/builder.py 2008-10-14 18:32:18 UTC (rev 1435)
+++ pyplusplus_dev/pyplusplus/module_builder/builder.py 2008-10-18 08:52:18 UTC (rev 1436)
@@ -40,7 +40,8 @@
, ignore_gccxml_output=False
, indexing_suite_version=1
, cflags=""
- , encoding='ascii'):
+ , encoding='ascii'
+ , compiler=None):
"""
@param files: list of files, declarations from them you want to export
@type files: list of strings or L{file_configuration_t} instances
@@ -72,7 +73,8 @@
, undefine_symbols=undefine_symbols
, start_with_declarations=start_with_declarations
, ignore_gccxml_output=ignore_gccxml_output
- , cflags=cflags)
+ , cflags=cflags
+ , compiler=compiler)
#may be in future I will add those directories to user_defined_directories
#to self.__code_creator.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|