diff options
author | Brian Paul <brianp@vmware.com> | 2011-08-25 15:14:37 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2011-08-26 08:05:35 -0600 |
commit | 3d1af78fdc4319b04f9cf324106f127b498b962d (patch) | |
tree | e478a26eac5313e2d38d9bee9ec35dad859ab3ad /scons | |
parent | 9765dede7556f7ccfef1d90bab14a2bfa03384e5 (diff) |
scons: add more LIBS for compiling with LLVM 2.9 on Windows
These extra libs shouldn't hurt with LLVM 2.8 or older.
Diffstat (limited to 'scons')
-rw-r--r-- | scons/llvm.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scons/llvm.py b/scons/llvm.py index c8d2d372e4..57fe922d0a 100644 --- a/scons/llvm.py +++ b/scons/llvm.py @@ -135,6 +135,8 @@ def generate(env): env.Append(LIBS = [ 'imagehlp', 'psapi', + 'shell32', + 'advapi32' ]) if env['msvc']: # Some of the LLVM C headers use the inline keyword without |