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 | <CAMCMYR6EaY2JWR0bA5k7GMXYtoq28m02YeCvB4Wn1-wG4qxDKA@mail.gmail.com> |
Paul,
I tried to build with your configure flags; So far the same result, it does
not catch the exceptions. I'm puzzled.
Could you please run the test below to see which compiler and link flags
are being active during clang complie and link?
It should run clang in verbose mode and will show the flags and include/lib
paths
I will try to match your compile/link flags with my clang-8.0.
TEST:
```
echo "int main() {return 0;}" > /tmp/x.cc && clang++ -v -Wl,-v /tmp/x.cc
-o /dev/null && rm /tmp/x.cc
```
Thanks!