6 config.pir - Print a Parrot configuration item
14 ./parrot parrot-config.pir VERSION
15 ./parrot parrot-config.pir ccflags
16 ./parrot parrot-config.pir --dump
20 Print out configuration items.
24 Leopold Toetsch E<lt>lt@toetsch.atE<gt>.
28 Copyright (C) 2004-2006, The Perl Foundation.
36 if argc < 2 goto usage
37 .local pmc interp, conf_hash
39 .include "iglobals.pasm"
41 conf_hash = interp[.IGLOBALS_CONFIG_HASH]
46 if key == '--dump' goto dump
47 $I0 = defined conf_hash[key]
49 print " no such key: '"
62 .include "iterator.pasm"
63 new iter, .Iterator, conf_hash
64 iter = .ITERATE_FROM_START
66 unless iter goto iter_end
79 printerr ": config-key\n"