From 4dc475b18c048c4f0679c3abe2f693ca5d6dd952 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 6 Feb 2019 16:19:08 -0800 Subject: [PATCH] cli: Compile C++ external scanners with exceptions disabled --- cli/src/loader.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/src/loader.rs b/cli/src/loader.rs index a534d6f2..678fbb1b 100644 --- a/cli/src/loader.rs +++ b/cli/src/loader.rs @@ -180,6 +180,7 @@ impl Loader { command .arg("-shared") .arg("-fPIC") + .arg("-fno-exceptions") .arg("-I") .arg(header_path) .arg("-o")