Re: [Dwarf-discuss] Do Dwarf symbols only use ascii?

2023-11-03 Thread Florian Weimer via Dwarf-discuss
* Roger Phillips via Dwarf-discuss: > And this macro would also work for Utf8? Isn't this really a question for the Itanium C++ ABI? It currently says: | This ABI does not yet specify a mangling for identifiers containing | characters outside of _A-Za-z0-9.

Re: [Dwarf-discuss] Do Dwarf symbols only use ascii?

2023-11-02 Thread Roger Phillips via Dwarf-discuss
And this macro would also work for Utf8? From: Florian Weimer Sent: Thursday, November 2, 2023 4:54 PM To: Roger Phillips via Dwarf-discuss Cc: Roger Phillips Subject: Re: [Dwarf-discuss] Do Dwarf symbols only use ascii? * Roger Phillips via Dwarf-discuss

Re: [Dwarf-discuss] Do Dwarf symbols only use ascii?

2023-11-02 Thread David Anderson via Dwarf-discuss
On 11/2/23 03:29, Roger Phillips via Dwarf-discuss wrote: I'm currently trying to debug a problem in the dynamorio system where the isdigit function crashes in elftoolchain while trying to parse symbols from dwarf info: https://github.com/DynamoRIO/dynamorio/issues/6161

Re: [Dwarf-discuss] Do Dwarf symbols only use ascii?

2023-11-02 Thread Florian Weimer via Dwarf-discuss
* Roger Phillips via Dwarf-discuss: > My question is whether these symbols really need the locale > functionality of libc's isdigit function or if the symbols in Dwarf > are just standard ascii and could be parsed in a portable way with > the simple method mentioned there. I think the current

Re: [Dwarf-discuss] Do Dwarf symbols only use ascii?

2023-11-02 Thread Robinson, Paul via Dwarf-discuss
On Behalf Of Roger Phillips via Dwarf-discuss Sent: Thursday, November 2, 2023 6:30 AM To: dwarf-discuss@lists.dwarfstd.org Subject: [Dwarf-discuss] Do Dwarf symbols only use ascii? Greetings, I'm currently trying to debug a problem in the dynamorio system where the isdigit function crashes

[Dwarf-discuss] Do Dwarf symbols only use ascii?

2023-11-02 Thread Roger Phillips via Dwarf-discuss
Greetings, I'm currently trying to debug a problem in the dynamorio system where the isdigit function crashes in elftoolchain while trying to parse symbols from dwarf info: https://github.com/DynamoRIO/dynamorio/issues/6161 My question is whether these symbols really need the locale