Re: Building gdb-9.1 on OSX: gdb's exceptions are not getting caught
krokus via Gdb <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <CAMCMYR4kH3eQMW9TBjCFLxhX-mmPXe2e88NiZEQ9r0oLC=oS3Q@mail.gmail.com> |
Thanks for the quick reply. I'll try building using your config.
What compile/link flags did you use?
I assume it's clang too. If you didn't set or pass any additional
C/CXXFLAGS to configure, it would probably use the defaults. In such case
the deffault flags will likely show up with this command:
```
echo "int main() {return 0;}" > /tmp/x.cc && clang++ -v -Wl,-v /tmp/x.cc
-o /dev/null && rm /tmp/x.cc
```