Re: [FWD] compiling emacs-bidi,
"Eli Zaretskii" <[email protected]>
| Newsgroups | gmane.emacs.bidi |
|---|---|
| Message-ID | <[email protected]> |
> Date: Wed, 17 Mar 2004 22:12:04 -0800 (PST) > From: rs6233 <[email protected]> > > (gdb) print (*(ElfW(Shdr) *) ((byte *) old_section_h + > old_file_h->e_shentsize * (n))).sh_addr > No symbol "ElfW" in current context. It sounds like there are too many variables in registers. Let's see what happens on the machine code level. The command (gdb) info line unexelf.c:925 should print the range of addresses for the code generated from line 925 of unexelf.c. After that, the command (gdb) disassemble n1 n2 where n1 and n2 are the two addresses printed by "info line", will display the machine code for line 925. Please post the results of these 2 commands.