Clone of official tools
Diff: get_config.py
- Revision:
- 13:ab47a20b66f0
- Parent:
- 9:2d27d77ada5c
- Child:
- 22:9e85236d8716
--- a/get_config.py Tue Jun 14 11:33:06 2016 +0100 +++ b/get_config.py Thu Jul 14 20:21:19 2016 +0100 @@ -62,7 +62,7 @@ options.prefix = options.prefix or [""] try: - params, macros = get_config(options.source_dir, target, toolchain) + params, macros, features = get_config(options.source_dir, target, toolchain) if not params and not macros: print "No configuration data available." _exit(0) @@ -79,7 +79,7 @@ print "Macros" print "------" if macros: - print 'Defined with "macros":', macros + print 'Defined with "macros":', Config.config_macros_to_macros(macros) print "Generated from configuration parameters:", Config.parameters_to_macros(params) except KeyboardInterrupt, e: