Replies: 1 comment 2 replies
-
|
It's not that simple, but there is a solution. You should have a look at the
circle-stdlib project by @smuehlst, which provides C and C++ standard lib
support for Circle, including support for C++ exceptions:
https://github.com/smuehlst/circle-stdlib
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
JoeStrout
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to incorporate a library that makes use of throw and catch. They're not heavily used, but it would require pretty major architecture changes to get rid of them.
I added
CFLAGS += "-fexceptions"to my makefile, and it compiles now, but fails at the linker stage.Any idea how I could make this work? (Apologies if this seems obvious, my C++ is rusty and my
makeskills were never very good to begin with!)Beta Was this translation helpful? Give feedback.
All reactions