]> git.mdlowis.com Git - proto/sclpl.git/commitdiff
re-added -explicit-use option to csc compiler
authorMichael D. Lowis <mike@mdlowis.com>
Wed, 9 Oct 2013 16:08:21 +0000 (12:08 -0400)
committerMichael D. Lowis <mike@mdlowis.com>
Wed, 9 Oct 2013 16:08:21 +0000 (12:08 -0400)
SConstruct

index eaeaedb7717834147c73185baa71bf958ba5def9..9e62a2f63a4c4cdccc5105ee184fd9e693b6dda7 100644 (file)
@@ -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,