diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2014-08-22 16:44:01 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2014-08-25 13:35:39 -0400 |
commit | 1243bf4edfa8c3b184b8fca1b7feb863c45e96dd (patch) | |
tree | 4d672e382f007582c4549b223d5e6519bca20400 /SConstruct | |
parent | 735b528437eb4042dcc92f2d8f2a55c30176b5d0 (diff) | |
download | mongo-1243bf4edfa8c3b184b8fca1b7feb863c45e96dd.tar.gz |
SERVER-15009: Solaris - check if numa is enabled
Check if there is more than one locality group on the machine.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index e364ecf16a5..1690ccecf53 100644 --- a/SConstruct +++ b/SConstruct @@ -729,7 +729,7 @@ elif linux: elif solaris: env.Append( CPPDEFINES=[ "__sunos__" ] ) - env.Append( LIBS=["socket","resolv"] ) + env.Append( LIBS=["socket","resolv","lgrp"] ) elif freebsd: env.Append( LIBS=[ "kvm" ] ) |