Just assumed it wasn't a developer issue but rather me doing something wrong. Moving discussion to developer list.
Some improvement!
Parse argument 3:"-m/sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike"...
[...]
Init master... There's no master to handle the error. Dumping it raw: Error.BadArgument("Subtract on different types.\n")
Ok, seems the change had the intended effect. Now try updating interpret.c.
Now we are getting somewhere :)
... Init master... There's no master to handle the error. Dumping it raw: Error.BadArgument("Subtract on different types.\n") Attempting to extract the backtrace. ({ /* 3 elements */ backtrace_frame(Unknown file, create(), No args), backtrace_frame(Unknown file, add_include_path(), Args: 1), ({ /* 5 elements */ 0, 0, "`-", 200, ({ /* 1 element */ "/sw/pkg/pike/src/Pike-v7.7.21-snapshot/lib/include" }) }) }) ...
What are the values in the array?
Now we are getting somewhere :)
Indeed.
Init master... There's no master to handle the error. Dumping it raw: Error.BadArgument("Subtract on different types.\n") Attempting to extract the backtrace. ({ /* 3 elements */ backtrace_frame(Unknown file, create(), No args), backtrace_frame(Unknown file, add_include_path(), Args: 1), ({ /* 5 elements */ 0, 0, "`-", 200, ({ /* 1 element */ "/sw/pkg/pike/src/Pike-v7.7.21-snapshot/lib/include" }) }) }) ...
What are the values in the array?
Ok, so the actual backtrace is:
operators.c:1994: `-(200, ({ "/sw/pkg/pike/src/Pike-v7.7.21-snapshot/lib/include" })) master.pike:1977: add_include_path("/sw/pkg/pike/src/Pike-v7.7.21-snapshot/lib/include") master.pike:1147: create()
It looks like master()->pike_include_path has been initialized to 200 for some reason. Are your dependencies up to date?
Recompiling everything does not help. The same backtrace is given. :( Do you want me to send you the broken binary so that you can dig into it with GDB?
What happens if you start the pike as:
PIKE_BACKTRACE_LEN=200 pike -DBT_MAX_STRING_LEN='({})'
?
$ PIKE_BACKTRACE_LEN=200 bin/pike -DBT_MAX_STRING_LEN='({})' Init master... find_lib_dir... Default master at "/sw/pkg/pike/sparc-sol10/7.7.21/pike/7.7.21/lib/master.pike"... Parse argument 1:"-DPRECOMPILED_SEARCH_MORE"... Parse argument 2:"-m/sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike"... Parse argument 3:"-DBT_MAX_STRING_LEN=({})"... init_pike() Init CPU lib... Main init... Init shared nodes... Parse argument 1:"-DPRECOMPILED_SEARCH_MORE"... Parse argument 2:"-m/sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike"... Parse argument 3:"-DBT_MAX_STRING_LEN=({})"... Init C stack... Init time... Init threads... Init strings... Init interpreter... Init types... Init opcodes... Init programs... Init objects... Init modules... Initializing static module #0: "Builtin"... Initializing static module #1: "_math"... Initializing static module #2: "files"... Initializing static module #3: "sprintf"... Initializing static module #4: "_system"... Init master... /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:37: Syntax error in #if bad character { (123). /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:37: Missing ')' /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:37: Missing ')' There's no master to handle the error. Dumping it raw: Error.Cpp("Cpp() failed\n") Attempting to extract the backtrace. ({ }) Exit 10... Exiting static module #4: "_system"... Exiting static module #3: "sprintf"... Exiting static module #2: "files"... Exiting static module #1: "_math"... Exiting static module #0: "Builtin"...
What would the purpose of defining BT_MAX_STRING_LEN as an array?
$ PIKE_BACKTRACE_LEN=200 bin/pike -DBT_MAX_STRING_LEN='({})' Init master...
[...]
Init master... /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:37: Syntax error in #if bad character { (123).
[...]
Too bad; cpp didn't like it.
What would the purpose of defining BT_MAX_STRING_LEN as an array?
I wanted to know if the problem is due to a broken identifier_references table. Try editing master.pike instead, and change the #define of BT_MAX_STRING_LEN from 200 to ({}).
Ok. Got something else when doing that:
Init master... There's no master to handle the error. Dumping it raw: ({ /* 2 elements */ "Cannot assign functions or constants.\n", ({ /* 2 elements */ backtrace_frame(Unknown file, create(), No args), backtrace_frame(Unknown file, add_include_path(), Args: 1) }) })
Ok. Got something else when doing that:
Init master... There's no master to handle the error. Dumping it raw: ({ /* 2 elements */ "Cannot assign functions or constants.\n", ({ /* 2 elements */ backtrace_frame(Unknown file, create(), No args), backtrace_frame(Unknown file, add_include_path(), Args: 1) }) })
As I suspected, it seems bt_max_string_len and pike_include_path conflict in the symbol table. Try starting your pike with -a3, and you should get a dump of the tables.
Here is the complete printout. I can't really make out how they conflict, but I'm confident you know your stuff on that point..
Identifer = 164 Program flags: 0x000f
Reference table: ####: Flags Inherit Identifier 0: 0 0 0 bt_max_string_len 1: 0 0 1 out_of_date_warning 2: 0 0 2 want_warnings 3: 0 0 3 compat_major 4: 0 0 4 compat_minor 5: 0 0 5 show_if_constant_errors 6: 3 0 6 Builtin 7: 3 0 7 Files 8: 3 0 8 write 9: 3 0 9 werror 10: 0 0 10 error /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:136 11: 0 0 11 is_absolute_path /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:209 12: 0 0 12 explode_path /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:241 13: 0 0 13 dirname /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:272 14: 0 0 14 basename /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:293 15: 0 0 15 autoreload_on 16: 0 0 16 newest 17: 0 0 17 load_time 18: 0 0 18 compile_string /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:350 19: 0 0 19 master_read_file /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:365 20: 1 0 20 current_path 21: 0 0 21 cd /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:375 22: 0 0 22 getcwd /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:381 23: 0 0 23 combine_path_with_cwd /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:387 24: 0 0 24 invalidate_time 25: 0 0 25 dir_cache 26: 0 0 26 master_get_dir /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:400 27: 0 0 27 master_file_stat /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:405 28: 0 0 28 environment 29: 0 0 29 getenv /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:482 30: 0 0 30 compile_file /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:505 31: 0 0 31 putenv /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:560 32: 0 0 32 normalize_path /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:578 33: 0 0 33 programs 34: 0 0 34 objects 35: 0 0 35 fc 36: 0 0 36 no_value 37: 0 0 37 NoValue 38: 1 0 38 rev_programs 39: 1 0 39 rev_objects 40: 1 0 40 rev_fc 41: 0 0 41 programs_reverse_lookup /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:622 42: 0 0 42 objects_reverse_lookup /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:638 43: 0 0 43 fc_reverse_lookup /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:651 44: 0 0 44 query_precompiled_names /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:663 45: 1 0 45 CompileCallbackError 46: 1 0 46 compile_cb_error /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:689 47: 1 0 47 compile_cb_rethrow /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:698 48: 1 0 48 call_compile_warning /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:707 49: 0 0 49 compilation_mutex 50: 1 0 50 low_findprog /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:725 51: 0 0 51 unregister /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:910 52: 1 0 52 findprog /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:945 53: 0 0 53 low_cast_to_program /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:965 54: 0 0 54 cast_to_program /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1017 55: 0 0 55 handle_error /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1033 56: 0 0 56 master_efuns 57: 20 0 57 false 58: 20 0 58 true 59: 20 0 59 bool 60: 0 0 60 include_prefix 61: 1 0 61 create /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1122 62: 23 0 62 __lambda_65600_0_line_1136 /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1136 63: 0 0 63 handle_inherit /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1177 64: 0 0 64 low_cast_to_object /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1188 65: 0 0 65 cast_to_object /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1204 66: 1 0 66 ZERO_TYPE 67: 0 0 67 dirnode 68: 0 0 68 joinnode 69: 0 0 69 handle_import /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1762 70: 0 0 70 findmodule /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1808 71: 0 0 71 no_resolv 72: 0 0 72 CompatResolver 73: 80 1 0 root_module 74: 80 1 1 handler_root_modules 75: 80 1 2 system_module_path 76: 80 1 3 pike_module_path 77: 80 1 4 pike_include_path 78: 80 1 5 pike_program_path 79: 80 1 6 predefines 80: 80 1 7 ver 81: 80 1 8 fallback_resolver 82: 1 0 61 create /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1122 83: 80 1 10 add_include_path /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1975 84: 80 1 11 remove_include_path /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1989 85: 80 1 12 add_module_path /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2002 86: 80 1 13 remove_module_path /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2016 87: 80 1 14 add_program_path /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2030 88: 80 1 15 remove_program_path /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2044 89: 80 1 16 add_predefine /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2052 90: 80 1 17 remove_predefine /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2059 91: 80 1 18 get_predefines /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2065 92: 81 1 19 instantiate_static_modules /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2072 93: e3 1 20 __lambda_65606_0_line_2089 /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2089 94: 80 1 21 get_default_module /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2109 95: 80 1 22 get_root_module /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2139 96: e3 1 23 __lambda_65606_1_line_2161 /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2161 97: 80 1 24 resolv_base /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2177 98: 80 1 25 resolv_or_error /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2186 99: 80 1 26 resolv /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2195 100: 80 1 27 handle_include /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2237 101: 80 1 28 read_include /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2262 102: 0 0 116 _sprintf /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4512 103: 1 0 117 __INIT /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4518 104: 0 0 73 Pike06Resolver 105: 0 0 74 _pike_file_name 106: 0 0 75 _master_file_name 107: 3 0 76 _async 108: 0 0 77 asyncp /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2306 109: 1 0 78 _backend_thread 110: 0 0 79 backend_thread /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2318 111: 0 0 80 initial_predefines 112: 0 0 81 _main /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2332 113: 23 0 82 __lambda_65600_1_line_2375 /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2375 114: 23 0 83 __lambda_65600_2_line_2385 /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2385 115: 0 0 84 inhibit_compile_errors 116: 0 0 85 set_inhibit_compile_errors /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2779 117: 0 0 86 get_inhibit_compile_errors /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2784 118: 3 0 87 _trim_file_name_cb 119: 0 0 88 trim_file_name /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2803 120: 0 0 89 set_trim_file_name_callback /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2826 121: 0 0 90 compile_error /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2837 122: 0 0 91 compile_warning /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2861 123: 0 0 92 compile_exception /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2881 124: 0 0 93 runtime_warning /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2910 125: 1 0 94 _charset_mod 126: 0 0 95 decode_charset /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2936 127: 0 0 96 Describer 128: 0 0 97 program_path_to_name /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3178 129: 23 0 98 __lambda_65600_3_line_3179 /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3179 130: 23 0 99 __lambda_65600_4_line_3188 /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3188 131: 0 0 100 describe_module /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3242 132: 0 0 101 describe_object /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3319 133: 0 0 102 describe_program /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3360 134: 0 0 103 describe_function /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3387 135: 0 0 104 describe_backtrace /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3430 136: 0 0 105 describe_error /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3659 137: 0 0 106 get_backtrace /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3706 138: 0 0 107 Encoder 139: 0 0 108 Decoder 140: 1 0 109 codecs 141: 0 0 110 get_codec /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4305 142: 0 0 111 Codec 143: 80 3 0 encoded 144: 81 3 1 rev_constants 145: 81 3 2 rev_static_modules 146: 81 3 3 find_index /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3803 147: 81 3 4 compare_resolved /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3844 148: 80 3 5 nameof /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:3919 149: 80 3 6 encode_object /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4105 150: 1 0 61 create /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1122 151: e3 3 8 __lambda_65609_0_line_4125 /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4125 152: 1 0 117 __INIT /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4518 153: 80 4 0 fname 154: 80 4 1 mkobj 155: 80 4 2 handler 156: 1 0 61 create /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:1122 157: 81 4 4 unregistered 158: 80 4 5 __register_new_program /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4152 159: 81 4 6 thingof /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4166 160: 80 4 7 objectof /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4258 161: 80 4 8 functionof /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4278 162: 80 4 9 programof /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4284 163: 80 4 10 decode_object /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4290 164: 1 0 117 __INIT /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4518 165: e1 3 7 create /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4116 166: e1 4 11 __INIT /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4297 167: e1 3 9 __INIT /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4141 168: 0 0 112 Version 169: 0 0 113 currentversion 170: 0 0 114 compat_handler_cache 171: 0 0 115 get_compilation_handler /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4390 172: 61 2 1 __INIT /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:4333 173: 61 1 30 __INIT /sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike:2274
Identifier index table: ####: Index 0: 99 1: 101 2: 63 3: 100 4: 69 5: 55 6: 126 7: 122 8: 121 9: 54 10: 65 11: 112 12: 102 13: 81 14: 135 15: 49 16: 23 17: 77 18: 53 19: 27 20: 76 21: 19 22: 74 23: 75 24: 11 25: 41 26: 78 27: 106 28: 115 29: 0 30: 44 31: 64 32: 42 33: 5 34: 111 35: 94 36: 90 37: 1 38: 43 39: 123 40: 128 41: 133 42: 134 43: 158 44: 170 45: 116 46: 84 47: 86 48: 22 49: 21 50: 87 51: 88 52: 83 53: 117 54: 120 55: 171 56: 119 57: 127 58: 163 59: 124 60: 141 61: 142 62: 168 63: 148 64: 131 65: 160 66: 149 67: 139 68: 161 69: 153 70: 143 71: 138 72: 169 73: 162 74: 132 75: 155 76: 154 77: 95 78: 110 79: 98 80: 108 81: 97 82: 105 83: 89 84: 91 85: 73 86: 72 87: 79 88: 80 89: 71 90: 104 91: 68 92: 137 93: 60 94: 85 95: 57 96: 67 97: 58 98: 70 99: 56 100: 136 101: 51 102: 59 103: 36 104: 35 105: 34 106: 37 107: 33 108: 32 109: 31 110: 29 111: 28 112: 24 113: 26 114: 25 115: 18 116: 17 117: 16 118: 15 119: 14 120: 30 121: 12 122: 2 123: 13 124: 10 125: 3 126: 4
Inherit table: ####: Level prog_id id_level storage_offs par_id par_offs par_obj_id id_ref_offs 0: 0 65600 0 0 -1 -18 -1 0 1: 1 65606 73 256 72 0 -1 73 2: 1 65611 143 456 142 0 -1 143 3: 2 65609 143 456 138 1 -1 0 4: 2 65610 153 488 139 1 -1 10
Identifier table: ####: Flags Offset Type Name 0: 4 0 8 "bt_max_string_len" 1: 4 1 8 "out_of_date_warning" 2: 8 0 251 "want_warnings" 3: 8 16 251 "compat_major" 4: 8 32 251 "compat_minor" 5: 8 48 251 "show_if_constant_errors" 6: 4 2 5 "Builtin" 7: 4 3 5 "Files" 8: 8 64 251 "write" 9: 8 80 251 "werror" 10: 19 1 4 "error" 11: 11 264 4 "is_absolute_path" 12: 11 313 4 "explode_path" 13: 11 577 4 "dirname" 14: 11 1059 4 "basename" 15: 8 96 251 "autoreload_on" 16: 8 112 251 "newest" 17: 8 128 1 "load_time" 18: 11 1165 4 "compile_string" 19: 11 1584 4 "master_read_file" 20: 8 136 6 "current_path" 21: 11 1866 4 "cd" 22: 11 1956 4 "getcwd" 23: 19 2041 4 "combine_path_with_cwd" 24: 8 144 251 "invalidate_time" 25: 8 160 1 "dir_cache" 26: 11 2271 4 "master_get_dir" 27: 11 2320 4 "master_file_stat" 28: 8 168 1 "environment" 29: 11 3256 4 "getenv" 30: 11 3486 4 "compile_file" 31: 11 4003 4 "putenv" 32: 11 4264 4 "normalize_path" 33: 8 176 1 "programs" 34: 8 184 1 "objects" 35: 8 192 1 "fc" 36: 4 4 2 "no_value" 37: 4 5 7 "NoValue" 38: 8 200 1 "rev_programs" 39: 8 208 1 "rev_objects" 40: 8 216 1 "rev_fc" 41: 11 4277 4 "programs_reverse_lookup" 42: 11 4866 4 "objects_reverse_lookup" 43: 11 5369 4 "fc_reverse_lookup" 44: 11 5907 4 "query_precompiled_names" 45: 4 6 5 "CompileCallbackError" 46: 19 6346 4 "compile_cb_error" 47: 11 6609 4 "compile_cb_rethrow" 48: 19 6874 4 "call_compile_warning" 49: 8 224 251 "compilation_mutex" 50: 11 7392 4 "low_findprog" 51: 11 12761 4 "unregister" 52: 11 14339 4 "findprog" 53: 11 14806 4 "low_cast_to_program" 54: 11 16226 4 "cast_to_program" 55: 11 16617 4 "handle_error" 56: 4 7 0 "master_efuns" 57: 4 8 8 "false" 58: 4 1 8 "true" 59: 4 9 7 "bool" 60: 8 240 6 "include_prefix" 61: 11 17454 4 "create" 62: 11 17405 4 "__lambda_65600_0_line_1136" 63: 11 18944 4 "handle_inherit" 64: 11 19012 4 "low_cast_to_object" 65: 11 19359 4 "cast_to_object" 66: 4 10 5 "ZERO_TYPE" 67: 4 11 5 "dirnode" 68: 4 12 5 "joinnode" 69: 11 19750 4 "handle_import" 70: 11 20137 4 "findmodule" 71: 8 248 2 "no_resolv" 72: 4 13 5 "CompatResolver" 73: 4 14 5 "Pike06Resolver" 74: 8 344 6 "_pike_file_name" 75: 8 352 6 "_master_file_name" 76: 8 360 251 "_async" 77: 11 21759 4 "asyncp" 78: 8 376 251 "_backend_thread" 79: 11 21790 4 "backend_thread" 80: 8 392 1 "initial_predefines" 81: 11 22369 4 "_main" 82: 11 21821 4 "__lambda_65600_1_line_2375" 83: 11 22155 4 "__lambda_65600_2_line_2385" 84: 8 400 251 "inhibit_compile_errors" 85: 11 41240 4 "set_inhibit_compile_errors" 86: 11 41308 4 "get_inhibit_compile_errors" 87: 8 416 251 "_trim_file_name_cb" 88: 11 41339 4 "trim_file_name" 89: 11 42117 4 "set_trim_file_name_callback" 90: 11 42170 4 "compile_error" 91: 11 42886 4 "compile_warning" 92: 11 43380 4 "compile_exception" 93: 19 43925 4 "runtime_warning" 94: 8 432 251 "_charset_mod" 95: 11 44313 4 "decode_charset" 96: 4 15 5 "Describer" 97: 11 45223 4 "program_path_to_name" 98: 11 44888 4 "__lambda_65600_3_line_3179" 99: 11 45050 4 "__lambda_65600_4_line_3188" 100: 11 47431 4 "describe_module" 101: 11 54045 4 "describe_object" 102: 11 55411 4 "describe_program" 103: 11 56362 4 "describe_function" 104: 11 57305 4 "describe_backtrace" 105: 11 65700 4 "describe_error" 106: 11 68075 4 "get_backtrace" 107: 4 16 5 "Encoder" 108: 4 17 5 "Decoder" 109: 8 448 1 "codecs" 110: 11 68928 4 "get_codec" 111: 4 18 5 "Codec" 112: 4 19 5 "Version" 113: 8 552 251 "currentversion" 114: 8 568 1 "compat_handler_cache" 115: 11 69341 4 "get_compilation_handler" 116: 11 72825 4 "_sprintf" 117: 19 72959 4 "__INIT"
Variable table: ####: Index 0: 2 1: 3 2: 4 3: 5 4: 8 5: 9 6: 15 7: 16 8: 17 9: 20 10: 24 11: 25 12: 28 13: 33 14: 34 15: 35 16: 38 17: 39 18: 40 19: 49 20: 60 21: 71 22: 74 23: 75 24: 76 25: 78 26: 80 27: 84 28: 87 29: 94 30: 109 31: 113 32: 114
Constant table: ####: Type Name 0: int -1 1: int -1 2: program -1 3: program -1 4: multiset -1 5: type -1 6: program -1 7: array -1 8: int -1 9: type -1 10: program -1 11: program -1 12: program -1 13: program -1 14: program -1 15: program -1 16: program -1 17: program -1 18: program -1 19: program -1 20: function -1 21: function -1 22: function -1 23: function -1 24: function -1 25: function -1 26: function -1 27: function -1 28: function -1 29: function -1 30: function -1 31: function -1 32: function -1 33: function -1 34: function -1 35: function -1 36: function -1 37: function -1 38: function -1 39: function -1 40: function -1 41: program -1 42: function -1 43: function -1 44: array -1 45: function -1 46: function -1 47: array -1 48: function -1 49: function -1 50: function -1 51: function -1 52: object -1 53: function -1 54: function -1 55: function -1 56: function -1 57: array -1 58: array -1 59: array -1 60: array -1 61: array -1 62: array -1 63: array -1 64: array -1 65: array -1 66: array -1 67: array -1 68: array -1 69: function -1 70: function -1 71: function -1 72: array -1 73: function -1 74: function -1 75: function -1 76: function -1 77: function -1 78: function -1 79: function -1 80: array -1 81: array -1 82: function -1 83: function -1 84: function -1 85: type -1 86: function -1 87: function -1 88: float -1 89: function -1 90: function -1 91: array -1 92: function -1 93: function -1 94: function -1 95: function -1 96: function -1 97: object -1 98: function -1 99: function -1 100: array -1 101: function -1 102: function -1
Linenumber table: Filename: "/sw/pkg/pike/src/Pike-v7.7.21-snapshot/build/sunos-5.10-sun4u/master.pike" 0: 0 1: 136 4: 137 13: 138 33: 137 124: 138 244: 139 264: 209 267: 222 313: 241 316: 249 379: 250 454: 252 474: 251 551: 252 577: 272 580: 273 663: 281 742: 282 881: 283 901: 282 938: 283 1059: 293 1062: 298 1125: 299 1165: 350 1168: 351 1284: 352 1321: 353 1378: 354 1397: 353 1423: 355 1442: 353 1448: 351 1467: 356 1487: 357 1506: 358 1525: 359 1545: 351 1564: 360 1584: 365 1587: 366 1672: 367 1747: 369 1768: 368 1841: 369 1866: 375 1869: 376 1900: 377 1956: 381 1959: 382 2041: 387 2044: 388 2271: 400 2274: 401 2320: 405 2323: 406 2368: 407 2444: 408 2499: 410 2555: 416 2576: 412 2613: 413 2669: 416 2713: 417 2731: 434 2751: 419 2806: 428 2827: 425 2972: 428 3093: 434 3156: 436 3176: 434 3194: 436 3256: 482 3259: 483 3378: 487 3486: 505 3489: 506 3709: 507 3767: 508 3787: 509 3809: 510 3829: 511 3848: 512 3867: 507 3886: 513 3906: 514 3925: 515 3944: 516 3964: 507 3983: 517 4003: 560 4006: 561 4016: 567 4037: 568 4164: 572 4183: 571 4189: 570 4244: 572 4264: 578 4267: 580 4277: 622 4280: 625 4289: 626 4309: 625 4350: 626 4447: 633 4467: 627 4576: 628 4633: 629 4688: 628 4715: 631 4771: 628 4777: 627 4821: 633 4866: 638 4869: 639 4950: 646 4970: 640 5079: 641 5136: 642 5191: 641 5218: 644 5274: 641 5280: 640 5324: 646 5369: 651 5372: 652 5453: 659 5473: 653 5582: 654 5639: 655 5694: 654 5721: 657 5812: 654 5818: 653 5862: 659 5907: 663 5910: 672 5989: 673 6064: 674 6210: 673 6210: 672 6254: 676 6346: 689 6349: 690 6358: 691 6378: 690 6469: 691 6589: 692 6609: 698 6612: 700 6716: 701 6736: 702 6854: 703 6874: 707 6877: 708 6886: 709 6906: 708 6997: 709 7097: 710 7155: 713 7175: 711 7270: 714 7289: 713 7372: 714 7392: 725 7395: 728 7441: 734 7460: 740 7481: 739 7549: 740 7603: 752 7623: 742 7642: 743 7679: 742 7699: 752 7724: 776 7744: 752 7800: 776 7827: 755 7883: 776 7903: 755 7960: 757 7979: 776 8078: 900 8099: 778 8159: 781 8216: 788 8236: 782 8292: 788 8312: 782 8369: 784 8388: 788 8428: 790 8428: 791 8434: 792 8542: 793 8617: 795 8637: 826 8657: 795 8714: 826 8734: 815 8755: 798 8975: 801 9033: 803 9053: 802 9118: 803 9144: 802 9151: 803 9207: 801 9227: 803 9267: 806 9286: 814 9306: 809 9419: 814 9425: 813 9534: 815 9559: 818 9650: 819 9687: 820 9760: 819 9780: 826 9807: 821 9826: 826 9846: 822 9883: 823 9902: 822 9921: 826 9921: 792 9965: 830 10118: 831 10349: 832 10368: 833 10443: 840 10463: 836 10536: 837 10649: 838 10686: 840 10692: 844 10713: 841 10741: 842 10761: 843 10907: 841 10926: 843 10946: 844 10999: 852 11019: 848 11092: 849 11205: 850 11242: 854 11263: 857 11269: 858 11326: 859 11345: 860 11422: 859 11442: 863 11523: 884 11543: 866 11616: 867 11729: 868 11766: 881 11787: 868 11809: 878 11846: 879 11884: 878 11903: 881 11966: 884 11966: 788 11972: 888 12431: 890 12488: 897 12508: 892 12621: 897 12627: 896 12736: 900 12742: 901 12761: 910 12764: 911 12872: 925 12892: 913 12947: 916 12968: 914 13023: 916 13146: 918 13201: 919 13221: 920 13333: 923 13354: 921 13374: 923 13394: 921 13416: 923 13422: 922 13477: 923 13477: 925 13521: 926 13540: 933 13561: 927 13616: 933 13637: 928 13692: 933 13719: 930 13792: 933 13907: 934 14038: 935 14094: 934 14115: 936 14170: 934 14197: 938 14288: 934 14294: 933 14339: 945 14342: 946 14362: 948 14362: 949 14368: 950 14460: 952 14466: 953 14527: 955 14601: 957 14620: 956 14695: 957 14806: 965 14809: 972 14975: 979 14995: 974 15086: 975 15184: 979 15210: 978 15247: 979 15253: 981 15308: 1006 15329: 983 15367: 984 15386: 985 15407: 984 15426: 985 15524: 986 15600: 1006 15606: 989 15625: 990 15683: 992 15721: 996 15748: 995 15785: 996 15791: 998 15941: 1001 16031: 1002 16181: 1001 16226: 1017 16229: 1020 16293: 1023 16313: 1024 16334: 1023 16353: 1024 16378: 1025 16398: 1026 16578: 1024 16597: 1027 16617: 1033 16620: 1038 16631: 1037 16697: 1038 16751: 1063 16771: 1042 16808: 1058 16830: 1055 16841: 1052 16852: 1048 16897: 1049 16952: 1050 17007: 1051 17063: 1052 17098: 1055 17118: 1053 17173: 1055 17231: 1056 17250: 1057 17269: 1056 17288: 1058 17323: 1061 17343: 1059 17380: 1061 17380: 1063 17405: 1136 17454: 1122 17457: 1123 17536: 1124 17611: 1127 17666: 1124 17693: 1125 17766: 1124 17766: 1123 17810: 1129 17865: 1130 17921: 1131 17977: 1135 18042: 1136 18107: 1139 18181: 1140 18255: 1141 18329: 1142 18403: 1143 18477: 1147 18515: 1148 18553: 1153 18591: 1154 18629: 1158 18667: 1160 18722: 1161 18741: 1165 18762: 1161 18819: 1163 18919: 1165 18944: 1177 18947: 1180 19012: 1188 19015: 1192 19102: 1195 19123: 1193 19141: 1195 19203: 1196 19224: 1195 19333: 1196 19359: 1204 19362: 1207 19426: 1210 19446: 1211 19467: 1210 19486: 1211 19511: 1212 19531: 1213 19711: 1211 19730: 1214 19750: 1762 19753: 1767 19764: 1769 19876: 1772 19903: 1771 19958: 1772 19964: 1790 20077: 1802 20116: 1803 20137: 1808 20140: 1812 20186: 1822 20206: 1812 20263: 1814 20300: 1818 20321: 1814 20358: 1818 20379: 1814 20440: 1818 20446: 1816 20465: 1818 20471: 1819 20512: 1822 20629: 1824 20649: 1831 20669: 1827 20850: 1831 20856: 1833 21001: 1840 21022: 1836 21131: 1840 21210: 1848 21231: 1841 21394: 1848 21509: 1854 21530: 1851 21639: 1854 21645: 1856 21759: 2306 21762: 2307 21790: 2318 21793: 2319 21821: 2375 21824: 2376 21895: 2377 21932: 2378 21969: 2379 22006: 2380 22043: 2381 22080: 2382 22135: 2376 22155: 2385 22158: 2386 22265: 2390 22286: 2388 22305: 2389 22324: 2388 22343: 2390 22369: 2332 22372: 2333 22417: 2334 22437: 2336 22456: 2339 22550: 2340 22606: 2342 22643: 2345 22733: 2346 22877: 2353 22932: 2346 22959: 2356 23014: 2346 23014: 2345 23058: 2360 23274: 2361 23311: 2362 23435: 2364 23651: 2365 23688: 2366 23812: 2368 24028: 2369 24065: 2370 24189: 2393 24249: 2630 24269: 2393 24324: 2630 24344: 2393 24442: 2395 24461: 2396 24516: 2398 24554: 2399 24592: 2400 24630: 2402 24687: 2403 24821: 2404 24955: 2405 25116: 2406 25250: 2407 25411: 2408 25572: 2409 25706: 2410 25867: 2411 26001: 2412 26135: 2413 26269: 2414 26403: 2415 26564: 2416 26698: 2417 26832: 2418 26993: 2419 27154: 2420 27315: 2421 27476: 2422 27637: 2423 27799: 2424 27961: 2425 28123: 2426 28284: 2427 28445: 2428 28579: 2402 28599: 2429 28621: 2402 28642: 2429 28662: 2432 28734: 2532 28756: 2432 28778: 2532 28805: 2434 28927: 2436 28933: 2437 29061: 2438 29081: 2441 29087: 2442 29124: 2443 29144: 2446 29150: 2448 29294: 2450 29332: 2452 29338: 2453 29416: 2454 29436: 2455 29442: 2456 29520: 2457 29540: 2458 29546: 2459 29624: 2460 29702: 2461 29722: 2462 29728: 2464 29806: 2465 29843: 2466 29864: 2467 29870: 2468 29966: 2469 29966: 2448 30010: 2472 30030: 2474 30036: 2475 30134: 2476 30154: 2479 30160: 2480 30202: 2481 30223: 2485 30229: 2486 30303: 2487 30324: 2491 30330: 2492 30404: 2493 30425: 2496 30431: 2497 30529: 2498 30549: 2500 30555: 2501 30628: 2502 30649: 2504 30655: 2505 30728: 2506 30749: 2508 30755: 2509 30828: 2510 30849: 2512 30855: 2513 30892: 2514 30912: 2516 30918: 2517 30955: 2518 30975: 2520 30981: 2521 31037: 2522 31057: 2524 31063: 2525 31105: 2526 31125: 2528 31131: 2529 31173: 2530 31193: 2434 31193: 2532 31237: 2534 31326: 2536 31415: 2538 31421: 2539 31523: 2540 31565: 2542 31571: 2543 31608: 2547 31650: 2549 31656: 2550 31786: 2551 31828: 2553 31834: 2554 31871: 2555 31891: 2557 31897: 2558 31934: 2559 31954: 2561 31960: 2562 32018: 2563 32060: 2565 32066: 2567 32103: 2570 32218: 2571 32315: 2573 32335: 2574 32488: 2589 32509: 2575 32528: 2577 32619: 2575 32638: 2577 32658: 2589 32684: 2578 32741: 2579 32796: 2589 32823: 2581 32878: 2582 33032: 2583 33147: 2582 33319: 2584 33339: 2587 33359: 2588 33414: 2584 33434: 2588 33454: 2589 33460: 2592 33517: 2594 33598: 2595 33623: 2605 33644: 2601 33787: 2604 33808: 2602 33882: 2604 34062: 2605 34115: 2606 34152: 2607 34211: 2608 34231: 2609 34274: 2607 34292: 2611 34337: 2612 34374: 2613 34493: 2614 34493: 2615 34596: 2616 34622: 2615 34641: 2616 34684: 2618 34690: 2620 34727: 2622 34876: 2623 34918: 2536 34918: 2534 34962: 2627 35058: 2630 35094: 2632 35100: 2633 35266: 2634 35308: 2636 35314: 2637 35334: 2641 35390: 2642 35409: 2643 35447: 2644 35578: 2645 35616: 2637 35635: 2646 35677: 2630 35683: 2650 35720: 2653 35835: 2655 35898: 2657 35919: 2658 35956: 2660 35994: 2661 36014: 2662 36033: 2663 36052: 2664 36071: 2663 36090: 2662 36110: 2664 36130: 2665 36220: 2666 36258: 2667 36277: 2673 36298: 2668 36353: 2669 36373: 2670 36511: 2671 36584: 2673 36584: 2665 36628: 2674 36754: 2675 36903: 2674 36947: 2676 36989: 2678 36995: 2680 37015: 2678 37035: 2679 37054: 2680 37073: 2679 37092: 2678 37112: 2680 37132: 2681 37174: 2684 37306: 2686 37325: 2688 37346: 2692 37367: 2690 37430: 2691 37485: 2690 37505: 2691 37525: 2692 37578: 2699 37598: 2695 37617: 2696 37654: 2697 37815: 2695 37834: 2699 38015: 2722 38041: 2701 38154: 2705 38176: 2704 38257: 2705 38310: 2721 38330: 2708 38385: 2710 38406: 2709 38542: 2710 38621: 2712 38642: 2711 38742: 2712 38803: 2714 38824: 2713 38960: 2714 38985: 2715 39146: 2714 39165: 2721 39280: 2722 39286: 2724 39359: 2726 39380: 2727 39453: 2730 39516: 2732 39597: 2733 39622: 2748 39643: 2738 39652: 2739 39805: 2744 39826: 2740 39881: 2744 39908: 2743 39981: 2744 39987: 2745 40007: 2747 40027: 2746 40100: 2747 40198: 2748 40252: 2750 40307: 2751 40366: 2752 40386: 2753 40429: 2751 40447: 2755 40490: 2759 40511: 2756 40566: 2757 40609: 2759 40674: 2760 40694: 2759 40731: 2760 40779: 2763 40834: 2770 40856: 2768 40862: 2769 40973: 2768 40994: 2770 41019: 2771 41095: 2770 41117: 2769 41218: 2768 41240: 2779 41243: 2780 41288: 2781 41308: 2784 41311: 2785 41339: 2803 41342: 2807 41369: 2808 41390: 2807 41409: 2808 41452: 2810 41473: 2808 41566: 2810 41591: 2815 41611: 2810 41648: 2815 41654: 2821 41675: 2816 41702: 2817 41721: 2820 41741: 2817 41823: 2818 41884: 2820 41945: 2821 41966: 2820 42039: 2821 42097: 2822 42117: 2826 42120: 2827 42130: 2828 42150: 2829 42170: 2837 42173: 2839 42220: 2844 42240: 2854 42261: 2845 42298: 2854 42319: 2846 42356: 2854 42383: 2848 42420: 2854 42441: 2848 42463: 2849 42537: 2854 42562: 2851 42636: 2854 42661: 2841 42716: 2842 42842: 2841 42861: 2854 42886: 2861 42889: 2864 42936: 2870 42956: 2874 42977: 2870 42999: 2872 43091: 2874 43116: 2866 43135: 2874 43155: 2867 43210: 2868 43336: 2867 43355: 2874 43380: 2881 43383: 2882 43410: 2888 43431: 2883 43451: 2888 43471: 2884 43493: 2888 43499: 2887 43517: 2888 43560: 2892 43581: 2888 43603: 2891 43621: 2892 43684: 2893 43704: 2900 43725: 2893 43747: 2895 43838: 2900 43844: 2898 43881: 2899 43900: 2900 43906: 2901 43925: 2910 43928: 2911 43937: 2928 43957: 2912 44054: 2928 44073: 2925 44079: 2926 44288: 2912 44288: 2928 44313: 2936 44316: 2937 44325: 2945 44345: 2938 44400: 2940 44481: 2943 44501: 2942 44538: 2943 44538: 2945 44544: 2949 44565: 2946 44646: 2948 44666: 2947 44688: 2948 44779: 2949 44843: 2950 44863: 2951 44888: 3179 44891: 3181 44993: 3182 45050: 3188 45053: 3189 45143: 3190 45223: 3178 45226: 3185 45389: 3187 45515: 3188 45542: 3187 45580: 3192 45604: 3187 45651: 3193 45706: 3197 45727: 3194 45824: 3195 45844: 3197 45844: 3187 45894: 3206 46004: 3207 46083: 3209 46104: 3207 46124: 3209 46185: 3212 46206: 3210 46444: 3212 46505: 3215 46526: 3213 46764: 3215 46825: 3218 46846: 3216 47084: 3218 47145: 3221 47166: 3219 47324: 3221 47431: 3242 47434: 3246 47479: 3257 47500: 3248 47597: 3257 47623: 3249 47660: 3257 47681: 3250 47701: 3253 47794: 3255 47815: 3253 47854: 3254 47913: 3257 47981: 3259 48002: 3265 48023: 3261 48086: 3262 48182: 3263 48314: 3264 48370: 3263 48396: 3264 48451: 3263 48457: 3264 48475: 3265 48533: 3267 48576: 3273 48597: 3269 48691: 3270 48784: 3273 48850: 3274 48888: 3276 48909: 3275 48946: 3276 49009: 3277 49028: 3274 49049: 3277 49069: 3280 49266: 3281 49323: 3293 49344: 3281 49365: 3293 49371: 3289 49392: 3285 49473: 3286 49514: 3289 49534: 3287 49661: 3289 49719: 3293 49780: 3299 49801: 3294 49892: 3299 49955: 3314 49976: 3299 49997: 3314 50003: 3310 50024: 3302 50033: 3303 50088: 3304 50144: 3305 50228: 3309 50255: 3306 50293: 3309 50314: 3306 50390: 3307 50483: 3309 50527: 3310 50579: 3314 50738: 3242 50741: 3246 50786: 3257 50807: 3248 50904: 3257 50930: 3249 50967: 3257 50988: 3250 51008: 3253 51101: 3255 51122: 3253 51161: 3254 51220: 3257 51288: 3259 51309: 3265 51330: 3261 51393: 3262 51489: 3263 51621: 3264 51677: 3263 51703: 3264 51758: 3263 51764: 3264 51782: 3265 51840: 3267 51883: 3273 51904: 3269 51998: 3270 52091: 3273 52157: 3274 52195: 3276 52216: 3275 52253: 3276 52316: 3277 52335: 3274 52355: 3277 52375: 3280 52572: 3281 52629: 3293 52650: 3281 52671: 3293 52677: 3289 52698: 3285 52779: 3286 52820: 3289 52840: 3287 52967: 3289 53025: 3293 53086: 3299 53107: 3294 53198: 3299 53261: 3314 53282: 3299 53303: 3314 53309: 3310 53330: 3302 53339: 3303 53394: 3304 53450: 3305 53534: 3309 53561: 3306 53599: 3309 53620: 3306 53696: 3307 53789: 3309 53833: 3310 53885: 3314 54045: 3319 54048: 3321 54075: 3323 54095: 3321 54113: 3323 54212: 3325 54273: 3344 54295: 3330 54402: 3332 54421: 3344 54442: 3332 54463: 3344 54469: 3334 54507: 3335 54526: 3338 54547: 3335 54567: 3338 54664: 3339 54705: 3343 54725: 3340 54798: 3341 54890: 3343 54890: 3344 54948: 3347 55023: 3352 55044: 3348 55138: 3349 55249: 3352 55330: 3353 55386: 3355 55411: 3360 55414: 3362 55443: 3364 55524: 3365 55562: 3367 55605: 3372 55626: 3368 55720: 3369 55837: 3372 55954: 3379 55974: 3373 56029: 3379 56050: 3375 56141: 3379 56261: 3380 56337: 3382 56362: 3387 56365: 3388 56394: 3390 56437: 3392 56513: 3394 56552: 3402 56573: 3395 56707: 3402 56733: 3397 56788: 3402 56815: 3400 56872: 3402 56892: 3400 56929: 3402 56990: 3403 57010: 3410 57031: 3406 57050: 3407 57111: 3409 57131: 3407 57188: 3408 57279: 3409 57279: 3410 57305: 3430 57308: 3433 57415: 3435 57436: 3437 57479: 3441 57500: 3440 57602: 3441 57655: 3442 57715: 3443 57735: 3442 57778: 3443 57778: 3447 57821: 3494 57842: 3447 57864: 3448 57884: 3475 57905: 3451 57933: 3457 57954: 3452 58009: 3457 58036: 3453 58092: 3457 58112: 3456 58167: 3457 58212: 3459 58231: 3463 58252: 3460 58271: 3461 58291: 3460 58310: 3461 58330: 3463 58356: 3458 58393: 3463 58437: 3469 58458: 3464 58513: 3469 58540: 3465 58596: 3469 58616: 3468 58671: 3469 58716: 3471 58735: 3475 58756: 3472 58775: 3473 58813: 3472 58832: 3473 58851: 3475 58857: 3470 58930: 3475 58989: 3478 59009: 3476 59028: 3477 59140: 3476 59160: 3477 59179: 3494 59185: 3480 59224: 3481 59360: 3482 59435: 3485 59454: 3488 59475: 3486 59494: 3487 59514: 3486 59533: 3487 59552: 3488 59558: 3484 59631: 3494 59637: 3490 59674: 3494 59778: 3497 59815: 3498 59836: 3500 59855: 3501 59915: 3507 59935: 3502 59992: 3503 60088: 3507 60108: 3504 60210: 3505 60252: 3507 60295: 3508 60333: 3509 60371: 3511 60462: 3626 60481: 3511 60504: 3626 60531: 3513 60550: 3589 60571: 3516 60599: 3517 60620: 3519 60640: 3588 60666: 3521 60705: 3523 60780: 3525 60837: 3528 60924: 3529 60944: 3530 60963: 3531 61023: 3552 61043: 3531 61100: 3532 61157: 3533 61341: 3552 61368: 3535 61387: 3536 61478: 3535 61498: 3536 61518: 3552 61544: 3539 61581: 3540 61641: 3551 61661: 3540 61716: 3551 61737: 3549 61758: 3545 61785: 3544 61804: 3545 61844: 3546 61920: 3547 61979: 3548 61999: 3549 62057: 3551 62083: 3552 62089: 3554 62108: 3556 62168: 3578 62188: 3558 62243: 3564 62264: 3559 62337: 3564 62364: 3561 62421: 3562 62476: 3564 62544: 3566 62567: 3568 62587: 3567 62701: 3568 62757: 3570 62867: 3575 62887: 3572 62961: 3575 62988: 3574 63151: 3578 63178: 3577 63198: 3588 63224: 3582 63245: 3583 63306: 3588 63326: 3584 63435: 3588 63462: 3586 63499: 3588 63505: 3589 63558: 3593 63578: 3590 63706: 3593 63731: 3594 63787: 3610 63807: 3595 63903: 3596 63924: 3602 63943: 3603 64024: 3604 64087: 3605 64148: 3606 64168: 3608 64174: 3597 64194: 3598 64249: 3599 64268: 3600 64288: 3608 64288: 3610 64368: 3612 64389: 3613 64408: 3614 64429: 3615 64485: 3616 64558: 3615 64577: 3616 64622: 3614 64677: 3616 64683: 3617 64704: 3618 64747: 3619 64802: 3618 64839: 3619 64858: 3620 64925: 3621 64962: 3622 64982: 3625 65103: 3626 65147: 3628 65168: 3631 65224: 3632 65297: 3631 65316: 3632 65335: 3633 65356: 3634 65399: 3635 65454: 3634 65491: 3635 65510: 3636 65577: 3639 65680: 3642 65700: 3659 65703: 3664 65730: 3693 65751: 3664 65773: 3665 65793: 3683 65814: 3668 65842: 3675 65863: 3669 65918: 3675 65945: 3670 66001: 3675 66021: 3673 66076: 3675 66121: 3676 66140: 3681 66146: 3677 66167: 3680 66186: 3681 66206: 3680 66225: 3681 66250: 3678 66287: 3683 66312: 3686 66332: 3684 66351: 3685 66465: 3684 66485: 3685 66504: 3693 66510: 3688 66610: 3689 66705: 3693 66711: 3690 66784: 3693 66869: 3694 66887: 3659 66890: 3664 66917: 3693 66938: 3664 66960: 3665 66980: 3683 67001: 3668 67029: 3675 67050: 3669 67105: 3675 67132: 3670 67188: 3675 67208: 3673 67263: 3675 67308: 3676 67327: 3681 67333: 3677 67354: 3680 67373: 3681 67393: 3680 67412: 3681 67437: 3678 67474: 3683 67499: 3686 67519: 3684 67538: 3685 67652: 3684 67672: 3685 67691: 3693 67697: 3688 67797: 3689 67892: 3693 67898: 3690 67971: 3693 68056: 3694 68075: 3706 68078: 3711 68105: 3732 68126: 3711 68148: 3712 68168: 3714 68206: 3721 68227: 3715 68282: 3721 68309: 3716 68365: 3721 68385: 3719 68440: 3721 68503: 3723 68524: 3722 68580: 3732 68606: 3725 68706: 3726 68799: 3732 68826: 3729 68847: 3730 68902: 3732 68928: 4305 68931: 4306 68942: 4311 69016: 4312 69131: 4313 69189: 4314 69341: 4390 69344: 4391 69407: 4393 69445: 4399 69465: 4396 69483: 4399 69508: 4401 69564: 4403 69584: 4401 69603: 4403 69628: 4404 69665: 4407 69721: 4412 69742: 4408 69761: 4409 69816: 4408 69836: 4410 69874: 4412 69969: 4414 70070: 4420 70090: 4416 70163: 4417 70201: 4419 70221: 4418 70336: 4419 70336: 4420 70336: 4412 70380: 4424 70435: 4429 70456: 4425 70475: 4426 70530: 4425 70550: 4427 70588: 4429 70683: 4431 70784: 4437 70804: 4433 70877: 4434 70915: 4436 70935: 4435 71050: 4436 71050: 4437 71050: 4429 71094: 4440 71131: 4450 71151: 4457 71171: 4452 71248: 4453 71266: 4457 71363: 4462 71383: 4458 71457: 4462 71500: 4464 71608: 4466 71646: 4503 71666: 4470 71768: 4474 71789: 4471 71862: 4474 71889: 4473 71962: 4474 71968: 4476 71987: 4478 72096: 4479 72188: 4480 72280: 4484 72390: 4485 72482: 4486 72574: 4497 72612: 4500 72687: 4467 72705: 4503 72705: 4464 72749: 4506 72805: 4508 72825: 4512 72828: 4513 72848: 4514 72891: 4515 72934: 4513 72940: 4517 72959: 4518 72989: 76 73032: 79 73074: 82 73116: 85 73157: 4518 73175: 97 73248: 98 73322: 327 73360: 396 73398: 464 73436: 598 73528: 600 73546: 601 73603: 602 73641: 603 73661: 600 73680: 603 73700: 605 73737: 616 73775: 617 73813: 618 73851: 718 73928: 1912 73966: 2302 74008: 2312 74045: 2324 74083: 2776 74121: 2801 74163: 4302 74262: 4385 74362: 4387 74462: 4518
There's no master to handle the error. Dumping it raw: Error.BadArgument("Subtract on different types.\n") Attempting to extract the backtrace. ({ /* 3 elements */ backtrace_frame(Unknown file, create(), No args), backtrace_frame(Unknown file, add_include_path(), Args: 1), ({ /* 5 elements */ 0, 0, "`-", 200, ({ /* 1 element */ "/sw/pkg/pike/src/Pike-v7.7.21-snapshot/lib/include" }) }) })
pike-devel@lists.lysator.liu.se