From f3f72f6c948837ac6a03e73832a4712d886dba09 Mon Sep 17 00:00:00 2001 From: Mathias Stearn Date: Tue, 1 Nov 2011 12:35:49 -0400 Subject: [PATCH] G++ PCH for shared client --- SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/SConstruct b/SConstruct index 1672133bfbcb2..993abf75ca78c 100644 --- a/SConstruct +++ b/SConstruct @@ -732,6 +732,7 @@ if nix: print( "ERROR: clang pch is broken for now" ) Exit(1) env['Gch'] = env.Gch( [ "pch.h" ] )[0] + env['GchSh'] = env.GchSh( [ "pch.h" ] )[0] elif os.path.exists('pch.h.gch'): print( "removing precompiled headers" ) os.unlink('pch.h.gch') # gcc uses the file if it exists