bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Allow Bison-generated C++ parsers to compile with -fno-exception


From: Brooks Moses
Subject: [PATCH] Allow Bison-generated C++ parsers to compile with -fno-exceptions.
Date: Fri, 16 Feb 2018 17:28:47 -0800

We do most of our builds with -fno-exceptions, and this causes errors
with the exception-handling code in Bison-generated parsers.  This
patch fixes that.

Bison doesn't actually ever throw exceptions itself (except in one
case where it re-throws an existing exception); this support is
intended for handling exceptions thrown in user code.  We can assume
that if the user is compiling with -fno-exceptions, they are not using
this functionality, so #ifdef'ing out the exception-handling code is
the correct thing to do here.

Thanks,
- Brooks


(Note: Google has a CLA on file with the FSF, and this patch is
included under that.)

Attachment: bison.diff
Description: Binary data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]