From: Michael D. Lowis Date: Wed, 9 Oct 2013 16:08:21 +0000 (-0400) Subject: re-added -explicit-use option to csc compiler X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=31db20ecc3ba39e2e7eae62551a35f8f939adced;p=proto%2Fsclpl.git re-added -explicit-use option to csc compiler --- diff --git a/SConstruct b/SConstruct index eaeaedb..9e62a2f 100644 --- a/SConstruct +++ b/SConstruct @@ -52,7 +52,7 @@ scheme_tester = Builder( # Create the Environment for this project scheme = Environment( ENV = os.environ, - CCFLAGS = [ '-I', 'inc'], + CCFLAGS = [ '-explicit-use', '-I', 'inc'], LDFLAGS = [], BUILDERS = { 'Program': scheme_linker,