diff options
author | Tim Lunn <tim@feathertop.org> | 2013-02-24 17:34:56 +1100 |
---|---|---|
committer | Tim Lunn <tim@feathertop.org> | 2013-03-06 08:19:04 +1100 |
commit | 95b03cf87efbd4fea4b7d55601c9752cefd29bfc (patch) | |
tree | ccb47a22b628973575044505b238db29fe7dd107 /giscanner/scannermain.py | |
parent | 8f7acc600b45ea5bf8ea1d6ce1fbedb5c6f9cfd5 (diff) | |
download | gobject-introspection-95b03cf87efbd4fea4b7d55601c9752cefd29bfc.tar.gz |
gi-r-scanner: add support for raw CFLAGS flags option
gi-r-scanner chokes when gir_CFLAGS have an '-include <header>' since
this is not a recognised option. This commit adds a new --cflags option
that passes cflags directly to the spawned gcc.
https://bugzilla.gnome.org/show_bug.cgi?id=695182
Diffstat (limited to 'giscanner/scannermain.py')
-rwxr-xr-x | giscanner/scannermain.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/giscanner/scannermain.py b/giscanner/scannermain.py index 5fa370ce..8b4363bf 100755 --- a/giscanner/scannermain.py +++ b/giscanner/scannermain.py @@ -44,6 +44,9 @@ from . import utils def get_preprocessor_option_group(parser): group = optparse.OptionGroup(parser, "Preprocessor options") + group.add_option("--cflags", help="Pre-processor cflags", + action="store", dest="cpp_cflags", + default="") group.add_option("-I", help="Pre-processor include file", action="append", dest="cpp_includes", default=[]) @@ -351,7 +354,8 @@ def create_source_scanner(options, args): # Run the preprocessor, tokenize and construct simple # objects representing the raw C symbols ss = SourceScanner() - ss.set_cpp_options(options.cpp_includes, + ss.set_cpp_options(options.cpp_cflags, + options.cpp_includes, options.cpp_defines, options.cpp_undefines) ss.parse_files(filenames) |